diff options
author | Stu Grossman <grossman@cygnus> | 1996-08-12 04:11:17 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1996-08-12 04:11:17 +0000 |
commit | 8633ce7a0203207a8b4f821f11db5d4db55364d1 (patch) | |
tree | d7467dd2db96b332e30bfd454e5cec2d9b9bf153 | |
parent | * main.c (main): Make sure command loop is used with cygwin32. (diff) | |
download | binutils-gdb-8633ce7a0203207a8b4f821f11db5d4db55364d1.tar.gz binutils-gdb-8633ce7a0203207a8b4f821f11db5d4db55364d1.tar.bz2 binutils-gdb-8633ce7a0203207a8b4f821f11db5d4db55364d1.zip |
* rldefs.c: Get rid of define of SIGALRM if _WIN32 or __MSDOS__.
* Don't define ScreenCols/ScreenRows/... if cygwin32.
* sysdep-norm.h: Don't include <malloc.h> if cygwin32.
-rw-r--r-- | readline/ChangeLog | 6 | ||||
-rw-r--r-- | readline/sysdep-norm.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/readline/ChangeLog b/readline/ChangeLog index e92f1cd4a07..772212d616c 100644 --- a/readline/ChangeLog +++ b/readline/ChangeLog @@ -1,3 +1,9 @@ +Sun Aug 11 21:06:26 1996 Stu Grossman (grossman@critters.cygnus.com) + + * rldefs.c: Get rid of define of SIGALRM if _WIN32 or __MSDOS__. + * Don't define ScreenCols/ScreenRows/... if cygwin32. + * sysdep-norm.h: Don't include <malloc.h> if cygwin32. + Sun Aug 11 14:59:09 1996 Fred Fish <fnf@cygnus.com> * rldefs.h: If __osf__is defined, include <termio.h> instead of diff --git a/readline/sysdep-norm.h b/readline/sysdep-norm.h index d074cff7614..6cf1f347add 100644 --- a/readline/sysdep-norm.h +++ b/readline/sysdep-norm.h @@ -37,6 +37,6 @@ typedef struct dirent dirent; #define _POSIX_VERSION #endif -#ifdef _WIN32 +#if defined _WIN32 && !defined __GNUC__ #include <malloc.h> #endif |