mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
Move Windows sleep macro from acconfig.h to ac/unistd.h
This commit is contained in:
parent
c1a257a83f
commit
276ed0bbae
2 changed files with 11 additions and 2 deletions
|
|
@ -77,8 +77,6 @@
|
|||
#ifdef _WIN32
|
||||
/* don't suck in all of the win32 api */
|
||||
# define WIN32_LEAN_AND_MEAN 1
|
||||
|
||||
# define sleep _sleep
|
||||
#endif
|
||||
|
||||
#ifndef LDAP_NEEDS_PROTOTYPES
|
||||
|
|
|
|||
|
|
@ -60,4 +60,15 @@ LDAP_LUTIL_F(char*)(lutil_getpass) LDAP_P((const char *getpass));
|
|||
#define ldap_unlockf(x) lutil_unlockf(x)
|
||||
#include <lutil_lockf.h>
|
||||
|
||||
/*
|
||||
* Windows: although sleep() will be resolved by both MSVC and Mingw GCC
|
||||
* linkers, the function is not declared in header files. This is
|
||||
* because Windows' version of the function is called _sleep(), and it
|
||||
* is declared in stdlib.h
|
||||
*/
|
||||
|
||||
#ifdef _WIN32
|
||||
#define sleep _sleep
|
||||
#endif
|
||||
|
||||
#endif /* _AC_UNISTD_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue