mirror of
https://github.com/postgres/postgres.git
synced 2026-04-01 23:36:06 -04: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:
parent
b02d3aaed7
commit
9a1ced2732
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue