Просмотр исходного кода

Disable readline support when building on MacOS Classic.

Ryan C. Gordon 24 лет назад
Родитель
Сommit
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