Changed checks for LINUX to linux as linux is defined by the compiler and fixes autoconf breakage under libc5.

This commit is contained in:
cls%seawood.org 1998-09-04 10:37:27 +00:00
Родитель 8d7b70572b
Коммит 0c23dc8d0e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -38,7 +38,7 @@
#define HAVE_LCHOWN
#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(LINUX) || defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY)
#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(linux) || defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY)
#undef HAVE_LCHOWN
#endif
@ -50,7 +50,7 @@
#define GETCWD_CAN_MALLOC
#endif
#ifdef LINUX
#ifdef linux
#include <getopt.h>
#endif