Merge pull request #824 from ptjm/unstable

Define _XOPEN_SOURCE appropriately on NetBSD.
This commit is contained in:
Salvatore Sanfilippo 2012-12-12 09:34:41 -08:00
commit a4d68dc541
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#if defined(__sun__)
#define _POSIX_C_SOURCE 200112L
#elif defined(__linux__)
#elif defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__)
#define _XOPEN_SOURCE 600
#else
#define _XOPEN_SOURCE

View File

@ -36,7 +36,7 @@
#define _GNU_SOURCE
#endif
#if defined(__linux__) || defined(__OpenBSD__)
#if defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__)
#define _XOPEN_SOURCE 700
#else
#define _XOPEN_SOURCE