about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-06-04 08:03:56 -0400
committerRich Felker <dalias@aerifal.cx>2012-06-04 08:03:56 -0400
commit3b94daba711090f1936f59fae6f7cbcba963b29e (patch)
treef00ea56519214432ee3fd99a287272cf1a770233 /include
parentbd45dc9446166186cfdd5bc89ba719afa9ee7d4c (diff)
downloadmusl-3b94daba711090f1936f59fae6f7cbcba963b29e.tar.gz
musl-3b94daba711090f1936f59fae6f7cbcba963b29e.tar.xz
musl-3b94daba711090f1936f59fae6f7cbcba963b29e.zip
_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.
Diffstat (limited to 'include')
-rw-r--r--include/aio.h2
-rw-r--r--include/dirent.h2
-rw-r--r--include/fcntl.h2
-rw-r--r--include/ftw.h2
-rw-r--r--include/glob.h2
-rw-r--r--include/stdio.h2
-rw-r--r--include/stdlib.h2
-rw-r--r--include/sys/mman.h2
-rw-r--r--include/sys/resource.h2
-rw-r--r--include/sys/sendfile.h2
-rw-r--r--include/sys/stat.h2
-rw-r--r--include/sys/statfs.h2
-rw-r--r--include/sys/statvfs.h2
-rw-r--r--include/sys/types.h2
-rw-r--r--include/unistd.h2
15 files changed, 15 insertions, 15 deletions
diff --git a/include/aio.h b/include/aio.h
index ffb357c9..d97874e8 100644
--- a/include/aio.h
+++ b/include/aio.h
@@ -48,7 +48,7 @@ int aio_fsync(int, struct aiocb *);
 
 int lio_listio(int, struct aiocb *const [], int, struct sigevent *);
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define aiocb64 aiocb
 #define aio_read64 aio_read
 #define aio_write64 aio_write
diff --git a/include/dirent.h b/include/dirent.h
index 81623562..cb8cb248 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -50,7 +50,7 @@ int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int
 #define DTTOIF(x) ((x)<<12)
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define dirent64 dirent
 #define readdir64 readdir
 #define readdir64_r readdir_r
diff --git a/include/fcntl.h b/include/fcntl.h
index 85f867b3..36fb24bc 100644
--- a/include/fcntl.h
+++ b/include/fcntl.h
@@ -99,7 +99,7 @@ int posix_fallocate(int, off_t, off_t);
 int lockf(int, int, off_t);
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define open64 open
 #define openat64 openat
 #define creat64 creat
diff --git a/include/ftw.h b/include/ftw.h
index ffbddfa7..e7e8fdee 100644
--- a/include/ftw.h
+++ b/include/ftw.h
@@ -32,7 +32,7 @@ struct FTW
 int ftw(const char *, int (*)(const char *, const struct stat *, int), int);
 int nftw(const char *, int (*)(const char *, const struct stat *, int, struct FTW *), int, int);
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define ftw64 ftw
 #define nftw64 nftw
 #endif
diff --git a/include/glob.h b/include/glob.h
index 92ec7517..376baa71 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -34,7 +34,7 @@ void globfree(glob_t *);
 #define GLOB_NOMATCH 3
 #define GLOB_NOSYS   4
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define glob64 glob
 #define globfree64 globfree
 #endif
diff --git a/include/stdio.h b/include/stdio.h
index fa1b4e9b..edcf2e6c 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -177,7 +177,7 @@ char *fgets_unlocked(char *, int, FILE *);
 int fputs_unlocked(const char *, FILE *);
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define tmpfile64 tmpfile
 #define fopen64 fopen
 #define freopen64 freopen
diff --git a/include/stdlib.h b/include/stdlib.h
index 644325e6..0a8de866 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -147,7 +147,7 @@ char *fcvt(double, int, int *, int *);
 char *gcvt(double, int, char *);
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define mkstemp64 mkstemp
 #endif
 
diff --git a/include/sys/mman.h b/include/sys/mman.h
index a45f11d6..5cfafbed 100644
--- a/include/sys/mman.h
+++ b/include/sys/mman.h
@@ -36,7 +36,7 @@ int madvise (void *, size_t, int);
 int shm_open (const char *, int, mode_t);
 int shm_unlink (const char *);
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define mmap64 mmap
 #define off64_t off_t
 #endif
diff --git a/include/sys/resource.h b/include/sys/resource.h
index 4baceb3e..bf59d1c8 100644
--- a/include/sys/resource.h
+++ b/include/sys/resource.h
@@ -87,7 +87,7 @@ int prlimit(pid_t, int, const struct rlimit *, struct rlimit *);
 
 #define RLIM_NLIMITS RLIMIT_NLIMITS
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define getrlimit64 getrlimit
 #define setrlimit64 setrlimit
 #define rlimit64 rlimit
diff --git a/include/sys/sendfile.h b/include/sys/sendfile.h
index ba9aa548..4bd3ec6c 100644
--- a/include/sys/sendfile.h
+++ b/include/sys/sendfile.h
@@ -9,7 +9,7 @@ extern "C" {
 
 ssize_t sendfile(int, int, off_t *, size_t);
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define sendfile64 sendfile
 #define off64_t off_t
 #endif
diff --git a/include/sys/stat.h b/include/sys/stat.h
index 14a5424b..2a7ce233 100644
--- a/include/sys/stat.h
+++ b/include/sys/stat.h
@@ -96,7 +96,7 @@ int lchmod(const char *, mode_t);
 #define S_IEXEC S_IXUSR
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define stat64 stat
 #define fstat64 fstat
 #define lstat64 lstat
diff --git a/include/sys/statfs.h b/include/sys/statfs.h
index c1cbe9e0..a5a4db9c 100644
--- a/include/sys/statfs.h
+++ b/include/sys/statfs.h
@@ -16,7 +16,7 @@ typedef struct {
 int statfs (const char *, struct statfs *);
 int fstatfs (int, struct statfs *);
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define statfs64 statfs
 #define fstatfs64 fstatfs
 #define fsblkcnt64_t fsblkcnt_t
diff --git a/include/sys/statvfs.h b/include/sys/statvfs.h
index 3eaa2dcf..0a3ac9e0 100644
--- a/include/sys/statvfs.h
+++ b/include/sys/statvfs.h
@@ -41,7 +41,7 @@ int fstatvfs (int, struct statvfs *);
 #define ST_NOATIME     1024
 #define ST_NODIRATIME  2048
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define statvfs64 statvfs
 #define fstatvfs64 fstatvfs
 #define fsblkcnt64_t fsblkcnt_t
diff --git a/include/sys/types.h b/include/sys/types.h
index 4b1e3747..f5b64879 100644
--- a/include/sys/types.h
+++ b/include/sys/types.h
@@ -72,7 +72,7 @@ typedef long register_t;
 #include <sys/sysmacros.h>
 #endif
 
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 #define blksize64_t blksize_t
 #define blkcnt64_t blkcnt_t
 #define fsblkcnt64_t fsblkcnt_t
diff --git a/include/unistd.h b/include/unistd.h
index 7f2dd687..9c737f7c 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -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