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:
fedor 2001-10-26 02:16:26 +00:00
parent 6f0604c983
commit 5665f28fb9
7 changed files with 691 additions and 653 deletions

View file

@ -32,6 +32,13 @@
#include <math.h>
#include <ctype.h> /* FIXME: May go away once I figure out Unicode */
/* 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
#endif
@implementation NSScanner
@class GSCString;