Apply Yavor's fix for bug #30094

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30634 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-06-09 13:26:22 +00:00
parent a1d26aa790
commit dd5d5ebb4a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-06-09 Yavor Doganov
*Source/ObjectiveC2/sync.m: Fix test for defining _XOPEN_SOURCE
2010-06-08 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPropertyList.m: When encoding OSX binary property list,

View file

@ -1,5 +1,5 @@
/* Ensure Unix98 compatible pthreads for glibc */
#if defined __linux__ || defined __GNU__
#if defined __linux__ || defined __GLIBC__
# ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 600
# endif