소스 검색

Disable readline support when building on MacOS Classic.

Ryan C. Gordon 24 년 전
부모
커밋
a2bbbdb2c3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/test_physfs.c

+ 1 - 1
test/test_physfs.c

@@ -11,7 +11,7 @@
 #include <errno.h>
 #include <string.h>
 
-#if (!defined WIN32)
+#if ((!defined WIN32) && (!defined __MACOS__))
 #define HAVE_READLINE
 #endif