mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#8612 Fix Solaris builds with liblmdb
This patch fixes liblmdb builds on Solaris and derivatives by defining _POSIX_PTHREAD_SEMANTICS
This commit is contained in:
parent
3d8fc321d5
commit
b2426af3d1
1 changed files with 4 additions and 0 deletions
|
|
@ -113,6 +113,10 @@ typedef SSIZE_T ssize_t;
|
|||
/* Most platforms have posix_memalign, older may only have memalign */
|
||||
#define HAVE_MEMALIGN 1
|
||||
#include <malloc.h>
|
||||
/* On Solaris, we need the POSIX sigwait function */
|
||||
#if defined (__sun)
|
||||
# define _POSIX_PTHREAD_SEMANTICS 1
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !(defined(BYTE_ORDER) || defined(__BYTE_ORDER))
|
||||
|
|
|
|||
Loading…
Reference in a new issue