Procházet zdrojové kódy

Disable readline support when building on MacOS Classic.

Ryan C. Gordon před 24 roky
rodič
revize
a2bbbdb2c3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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