Check for LLONG_MAX. Check for -lcipher

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11249 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-10-26 02:16:26 +00:00
parent 36e6268f6c
commit 8016f866e8
7 changed files with 691 additions and 653 deletions

View file

@ -80,9 +80,16 @@ typedef gsu32 wint_t;
typedef unsigned long long uintmax_t;
#endif
/* Darwin 1.0 CPP can't handle this */
#ifndef HANDLE_LONG_LONG_MAX
#undef LONG_LONG_MAX
/* BSD and Solaris have this */
#ifdef HANDLE_LLONG_MAX
#define LONG_LONG_MAX LLONG_MAX
#define LONG_LONG_MIN LLONG_MIN
#define ULONG_LONG_MAX ULLONG_MAX
#else
/* Darwin 1.0 CPP can't handle this */
# ifndef HANDLE_LONG_LONG_MAX
# undef LONG_LONG_MAX
# endif
#endif
#include <base/behavior.h>