1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00

Add #define _GNU_SOURCE to work around what seems to be Perl 5.8.0's

problem.  Per recent discussions about plperl failing to build on Linux.
This commit is contained in:
Tom Lane
2002-11-07 22:09:51 +00:00
parent b02d3aaed7
commit 9a1ced2732

View File

@@ -1,3 +1,9 @@
/* Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#if defined(__i386__)
typedef unsigned char slock_t;