_GNU_SOURCE is supposed to imply _LARGEFILE64_SOURCE

this is ugly and stupid, but now that the *64 symbol names exist, a
lot of broken GNU software detects them in configure, then either
breaks during build due to missing off64_t definition, or attempts to
compile without function declarations/prototypes. "fixing" it here is
easier than telling everyone to add yet another feature test macro to
their builds.
This commit is contained in:
Rich Felker
2012-06-04 08:03:56 -04:00
parent bd45dc9446
commit 3b94daba71
15 changed files with 15 additions and 15 deletions

View File

@ -176,7 +176,7 @@ int getresgid(gid_t *, gid_t *, gid_t *);
char *get_current_dir_name(void);
#endif
#ifdef _LARGEFILE64_SOURCE
#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
#define lseek64 lseek
#define pread64 pread
#define pwrite64 pwrite