opensmalltalk cog-spur: update to VMMaker.oscog-eem.3504
[oi-userland.git] / components / library / dbus / patches / 07-xopen_source.patch
blobcff1739cfa8b40b2b2dd821f91a2cdbea77ea1e2
1 Workaround for
2 24737747 Need to allow mixing older POSIX/SUS versions with C99/C11 compilers
4 Can't send upstream as is without breaking builds on Solaris 11.3 & older
5 systems that don't support XPG7 - need to find better solution for there.
7 diff --git a/configure.ac b/configure.ac
8 index d0e48d8c..5b9f5f2e 100644
9 --- a/configure.ac
10 +++ b/configure.ac
11 @@ -1434,7 +1434,7 @@ case $host_os in
12 # ... this opt-in to get sockaddr_in6 and sockaddr_storage...
13 CFLAGS="$CFLAGS -D__EXTENSIONS__"
14 # ... and this opt-in to get file descriptor passing support
15 - CFLAGS="$CFLAGS -D_XOPEN_SOURCE=500"
16 + CFLAGS="$CFLAGS -D_XOPEN_SOURCE=700"
18 esac