mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 12:39:35 -05:00
Define HAVE_NT_EVENT_LOG && HAVE_NT_SERVICE_MANAGER when HAVE_NT_THREADS
This commit is contained in:
parent
5b5db4def6
commit
320cc86969
4 changed files with 442 additions and 424 deletions
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
#ifdef _WIN32
|
||||
/* don't suck in all of the win32 api */
|
||||
# define WIN32_LEAN_AND_MEAN
|
||||
# define WIN32_LEAN_AND_MEAN 1
|
||||
#endif
|
||||
|
||||
#ifndef __NEED_PROTOTYPES
|
||||
|
|
|
|||
|
|
@ -1001,6 +1001,9 @@ if test $ol_with_threads = auto -o $ol_with_threads = yes \
|
|||
AC_MSG_CHECKING(for NT threads)
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(HAVE_NT_THREADS,1,[if you have NT threads])
|
||||
|
||||
AC_DEFINE(HAVE_NT_SERVICE_MANAGER,1,[if you have NT Service Manager])
|
||||
AC_DEFINE(HAVE_NT_EVENT_LOG,1,[if you have NT Event Log])
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -664,6 +664,12 @@
|
|||
/* if you have NT threads */
|
||||
#undef HAVE_NT_THREADS
|
||||
|
||||
/* if you have NT Service Manager */
|
||||
#undef HAVE_NT_SERVICE_MANAGER
|
||||
|
||||
/* if you have NT Event Log */
|
||||
#undef HAVE_NT_EVENT_LOG
|
||||
|
||||
/* define if pthreads API compatible with final spec */
|
||||
#undef HAVE_PTHREADS_FINAL
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue