From a2bbbdb2c389ef6b51e37f55c202599a2d096df3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 2 Apr 2002 13:34:49 +0000 Subject: [PATCH] Disable readline support when building on MacOS Classic. --- test/test_physfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_physfs.c b/test/test_physfs.c index aa172c9d..07d0aff8 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -11,7 +11,7 @@ #include #include -#if (!defined WIN32) +#if ((!defined WIN32) && (!defined __MACOS__)) #define HAVE_READLINE #endif