diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-26 17:39:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-26 17:39:13 +0000 |
commit | 026f9c05d5eb747ce3ee6b316946d4675ed80fad (patch) | |
tree | a2d651fa46f133cc729a32bfdb9a6375c2ae1108 /src/include/port/linux.h | |
parent | d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2 (diff) |
Move -D_GNU_SOURCE hack from port header to template, so that
configure's tests see the same compilation environment as the code.
Per discussion with Stephan Szabo.
Diffstat (limited to 'src/include/port/linux.h')
-rw-r--r-- | src/include/port/linux.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/port/linux.h b/src/include/port/linux.h index f6aacc67ff2..c7d88e396cd 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -1,9 +1,3 @@ -/* Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise */ -#ifndef _GNU_SOURCE -#define _GNU_SOURCE 1 -#endif - - #if defined(__i386__) || defined(__x86_64__) typedef unsigned char slock_t; |