mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-19 13:23:44 -05:00
ITS#9215 Define _XOPEN_SOURCE for glibc only
This commit is contained in:
parent
7b0017ad49
commit
e9543da971
1 changed files with 3 additions and 1 deletions
|
|
@ -14,7 +14,9 @@
|
|||
* <http://www.OpenLDAP.org/license.html>.
|
||||
*/
|
||||
|
||||
#define _XOPEN_SOURCE 500 /* For pthread_setconcurrency() on glibc */
|
||||
#ifdef __GLIBC__
|
||||
#define _XOPEN_SOURCE 500 /* For pthread_setconcurrency() */
|
||||
#endif
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue