diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-01-23 05:26:40 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-01-23 05:26:40 +0000 |
commit | e3d0fe06bd566b659a7c36b5d9892c6f6b9caa89 (patch) | |
tree | bf1a365c58c8bf0ae8a781e0960cac9c34aa2c2d /mk | |
parent | 319f5003c66130fac091fa2f86070ea9f0a43cb8 (diff) |
Respin features.h usage so that we correctly test for features before we use them. Some BSD libc implementations may have one or the other flag, but not both.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/os-Linux.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/os-Linux.mk b/mk/os-Linux.mk index bdd12031..40d9c342 100644 --- a/mk/os-Linux.mk +++ b/mk/os-Linux.mk @@ -4,5 +4,5 @@ SFX= .Linux.in PKG_PREFIX?= /usr -CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=600 +CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700 LIBDL= -Wl,-Bdynamic -ldl |