Disable readline support when building on MacOS Classic.

This commit is contained in:
Ryan C. Gordon 2002-04-02 13:34:49 +00:00
parent c6a778d977
commit a2bbbdb2c3
1 changed files with 1 additions and 1 deletions

View File

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