mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
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:
parent
36e6268f6c
commit
8016f866e8
7 changed files with 691 additions and 653 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue