*** empty log message ***
This commit is contained in:
parent
59c36def34
commit
1276dda28c
2 changed files with 15 additions and 2 deletions
|
|
@ -1,3 +1,4 @@
|
|||
#define IEEE_8087
|
||||
#define Arith_Kind_ASL 1
|
||||
#define IEEE_MC68k
|
||||
#define Arith_Kind_ASL 2
|
||||
#define Double_Align
|
||||
#define NANCHECK
|
||||
|
|
|
|||
|
|
@ -6,6 +6,14 @@
|
|||
#ifdef __sun__
|
||||
#define USE_LARGEFILE
|
||||
#define OFF_T off64_t
|
||||
// On some older solaris systems, it seems that OFF_T needed to
|
||||
// be set to an int sometimes. It didn't cause crashes if you
|
||||
// didn't. However, ld warnings would occur if the sys -lg2c
|
||||
// libs were loaded at the same time.
|
||||
// see man pages for fseek and fseeko.
|
||||
// Can be debugged by finding out what off_t is set to in the
|
||||
// the standard compiler headings.
|
||||
//#define OFF_T int
|
||||
#endif
|
||||
|
||||
#ifdef __linux__
|
||||
|
|
@ -39,8 +47,12 @@
|
|||
#ifndef OFF_T
|
||||
#define OFF_T off64_t
|
||||
#endif
|
||||
#ifndef _LARGEFILE_SOURCE
|
||||
#define _LARGEFILE_SOURCE
|
||||
#endif
|
||||
#ifndef _LARGEFILE64_SOURCE
|
||||
#define _LARGEFILE64_SOURCE
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#define FOPEN fopen64
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue