mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Add third argument AC_DEFINE() calls added by last commit to
avoid having to define macros by hand in acconfig.h (which were mistaken added to portable.h.in).
This commit is contained in:
parent
7a25a22675
commit
f3da68969b
3 changed files with 1334 additions and 826 deletions
12
configure.in
12
configure.in
|
|
@ -594,7 +594,7 @@ if test $ol_enable_modules != no ; then
|
||||||
|
|
||||||
AC_CHECK_LIB(ltdl, lt_dlinit, [
|
AC_CHECK_LIB(ltdl, lt_dlinit, [
|
||||||
MODULES_LIBS=-lltdl
|
MODULES_LIBS=-lltdl
|
||||||
AC_DEFINE(HAVE_LIBLTDL)
|
AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
|
||||||
])
|
])
|
||||||
|
|
||||||
if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
|
if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
|
||||||
|
|
@ -695,7 +695,7 @@ closesocket(0);
|
||||||
gethostname(NULL,0);
|
gethostname(NULL,0);
|
||||||
],[
|
],[
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
AC_DEFINE(HAVE_WINSOCK)
|
AC_DEFINE(HAVE_WINSOCK,1,[define if you have winsock])
|
||||||
ac_cv_func_socket=yes
|
ac_cv_func_socket=yes
|
||||||
ac_cv_func_select=yes
|
ac_cv_func_select=yes
|
||||||
ac_cv_func_closesocket=yes
|
ac_cv_func_closesocket=yes
|
||||||
|
|
@ -1000,7 +1000,7 @@ if test "$ac_cv_mingw32" = yes ; then
|
||||||
ol_with_yielding_select=yes
|
ol_with_yielding_select=yes
|
||||||
AC_MSG_CHECKING(for NT threads)
|
AC_MSG_CHECKING(for NT threads)
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
AC_DEFINE(HAVE_NT_THREADS)
|
AC_DEFINE(HAVE_NT_THREADS,1,[if you have NT threads])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test $ol_with_threads = auto -o $ol_with_threads = yes \
|
if test $ol_with_threads = auto -o $ol_with_threads = yes \
|
||||||
|
|
@ -1971,15 +1971,15 @@ dnl Check for Mingw32 specific functions.
|
||||||
if test "$ac_cv_mingw32" = yes ; then
|
if test "$ac_cv_mingw32" = yes ; then
|
||||||
AC_CHECK_FUNC(_snprintf, [
|
AC_CHECK_FUNC(_snprintf, [
|
||||||
ac_cv_func_snprintf=yes
|
ac_cv_func_snprintf=yes
|
||||||
AC_DEFINE(snprintf, _snprintf)
|
AC_DEFINE(snprintf, _snprintf, [define to snprintf routine])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_CHECK_FUNC(_vsnprintf, [
|
AC_CHECK_FUNC(_vsnprintf, [
|
||||||
ac_cv_func_vsnprintf=yes
|
ac_cv_func_vsnprintf=yes
|
||||||
AC_DEFINE(vsnprintf, _vsnprintf)
|
AC_DEFINE(vsnprintf, _vsnprintf, [define to vsnprintf routine])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP))
|
AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP,1,[if you have spawnlp()]))
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl we should use vfork instead of fork in a number of places...
|
dnl we should use vfork instead of fork in a number of places...
|
||||||
|
|
|
||||||
|
|
@ -14,34 +14,6 @@
|
||||||
|
|
||||||
/* end of preamble */
|
/* end of preamble */
|
||||||
|
|
||||||
/* --------------------------------------------------- */
|
|
||||||
/* begin of WINNT specific entries */
|
|
||||||
|
|
||||||
#ifdef WINNT
|
|
||||||
|
|
||||||
/* don't suck in all of the win32 api */
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
|
|
||||||
/* WindowsNT specific features */
|
|
||||||
#define HAVE_NT_SERVICE_MANAGER 1
|
|
||||||
#define HAVE_NT_EVENT_LOG 1
|
|
||||||
|
|
||||||
#define MAXPATHLEN _MAX_PATH
|
|
||||||
|
|
||||||
/* preprocess out undefined functions */
|
|
||||||
#define LOG_DEBUG 0
|
|
||||||
#define openlog(a, b)
|
|
||||||
#define closelog()
|
|
||||||
|
|
||||||
/* define undefined types */
|
|
||||||
#define ssize_t signed int
|
|
||||||
typedef char * caddr_t;
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* end of WINNT specific entries */
|
|
||||||
/* --------------------------------------------------- */
|
|
||||||
|
|
||||||
/* Define if on AIX 3.
|
/* Define if on AIX 3.
|
||||||
System headers sometimes define this.
|
System headers sometimes define this.
|
||||||
We just want to avoid a redefinition error message. */
|
We just want to avoid a redefinition error message. */
|
||||||
|
|
@ -304,9 +276,6 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the snprintf function. */
|
/* Define if you have the snprintf function. */
|
||||||
#undef HAVE_SNPRINTF
|
#undef HAVE_SNPRINTF
|
||||||
|
|
||||||
/* Define to different name, if applicable */
|
|
||||||
#undef snprintf
|
|
||||||
|
|
||||||
/* Define if you have the strdup function. */
|
/* Define if you have the strdup function. */
|
||||||
#undef HAVE_STRDUP
|
#undef HAVE_STRDUP
|
||||||
|
|
||||||
|
|
@ -349,15 +318,9 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the thr_yield function. */
|
/* Define if you have the thr_yield function. */
|
||||||
#undef HAVE_THR_YIELD
|
#undef HAVE_THR_YIELD
|
||||||
|
|
||||||
/* Define if you have the _spawnlp function. */
|
|
||||||
#undef HAVE_SPAWNLP
|
|
||||||
|
|
||||||
/* Define if you have the vsnprintf function. */
|
/* Define if you have the vsnprintf function. */
|
||||||
#undef HAVE_VSNPRINTF
|
#undef HAVE_VSNPRINTF
|
||||||
|
|
||||||
/* Define to different name, if applicable */
|
|
||||||
#undef vsnprintf
|
|
||||||
|
|
||||||
/* Define if you have the vsprintf function. */
|
/* Define if you have the vsprintf function. */
|
||||||
#undef HAVE_VSPRINTF
|
#undef HAVE_VSPRINTF
|
||||||
|
|
||||||
|
|
@ -367,9 +330,6 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the waitpid function. */
|
/* Define if you have the waitpid function. */
|
||||||
#undef HAVE_WAITPID
|
#undef HAVE_WAITPID
|
||||||
|
|
||||||
/* Define if you have the winsock support. */
|
|
||||||
#undef HAVE_WINSOCK
|
|
||||||
|
|
||||||
/* Define if you have the write function. */
|
/* Define if you have the write function. */
|
||||||
#undef HAVE_WRITE
|
#undef HAVE_WRITE
|
||||||
|
|
||||||
|
|
@ -484,6 +444,9 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the <openssl/ssl.h> header file. */
|
/* Define if you have the <openssl/ssl.h> header file. */
|
||||||
#undef HAVE_OPENSSL_SSL_H
|
#undef HAVE_OPENSSL_SSL_H
|
||||||
|
|
||||||
|
/* Define if you have the <process.h> header file. */
|
||||||
|
#undef HAVE_PROCESS_H
|
||||||
|
|
||||||
/* Define if you have the <psap.h> header file. */
|
/* Define if you have the <psap.h> header file. */
|
||||||
#undef HAVE_PSAP_H
|
#undef HAVE_PSAP_H
|
||||||
|
|
||||||
|
|
@ -496,9 +459,6 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the <pwd.h> header file. */
|
/* Define if you have the <pwd.h> header file. */
|
||||||
#undef HAVE_PWD_H
|
#undef HAVE_PWD_H
|
||||||
|
|
||||||
/* Define if you have the <process.h> header file. */
|
|
||||||
#undef HAVE_PROCESS_H
|
|
||||||
|
|
||||||
/* Define if you have the <quipu/commonarg.h> header file. */
|
/* Define if you have the <quipu/commonarg.h> header file. */
|
||||||
#undef HAVE_QUIPU_COMMONARG_H
|
#undef HAVE_QUIPU_COMMONARG_H
|
||||||
|
|
||||||
|
|
@ -601,6 +561,9 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the <unistd.h> header file. */
|
/* Define if you have the <unistd.h> header file. */
|
||||||
#undef HAVE_UNISTD_H
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
|
/* Define if you have the <winsock.h> header file. */
|
||||||
|
#undef HAVE_WINSOCK_H
|
||||||
|
|
||||||
/* Define if you have the V3 library (-lV3). */
|
/* Define if you have the V3 library (-lV3). */
|
||||||
#undef HAVE_LIBV3
|
#undef HAVE_LIBV3
|
||||||
|
|
||||||
|
|
@ -616,9 +579,6 @@ typedef char * caddr_t;
|
||||||
/* Define if you have the inet library (-linet). */
|
/* Define if you have the inet library (-linet). */
|
||||||
#undef HAVE_LIBINET
|
#undef HAVE_LIBINET
|
||||||
|
|
||||||
/* Define if you have the ltdl library (-lltdl). */
|
|
||||||
#undef HAVE_LIBLTDL
|
|
||||||
|
|
||||||
/* Define if you have the net library (-lnet). */
|
/* Define if you have the net library (-lnet). */
|
||||||
#undef HAVE_LIBNET
|
#undef HAVE_LIBNET
|
||||||
|
|
||||||
|
|
@ -646,6 +606,9 @@ typedef char * caddr_t;
|
||||||
/* defined to be the EXE extension */
|
/* defined to be the EXE extension */
|
||||||
#undef EXEEXT
|
#undef EXEEXT
|
||||||
|
|
||||||
|
/* define if you have libtool -ltdl */
|
||||||
|
#undef HAVE_LIBLTDL
|
||||||
|
|
||||||
/* define if system uses EBCDIC instead of ASCII */
|
/* define if system uses EBCDIC instead of ASCII */
|
||||||
#undef HAVE_EBCDIC
|
#undef HAVE_EBCDIC
|
||||||
|
|
||||||
|
|
@ -655,6 +618,9 @@ typedef char * caddr_t;
|
||||||
/* define if you have POSIX termios */
|
/* define if you have POSIX termios */
|
||||||
#undef HAVE_POSIX_TERMIOS
|
#undef HAVE_POSIX_TERMIOS
|
||||||
|
|
||||||
|
/* define if you have winsock */
|
||||||
|
#undef HAVE_WINSOCK
|
||||||
|
|
||||||
/* define if you have res_search() */
|
/* define if you have res_search() */
|
||||||
#undef HAVE_RES_SEARCH
|
#undef HAVE_RES_SEARCH
|
||||||
|
|
||||||
|
|
@ -697,6 +663,9 @@ typedef char * caddr_t;
|
||||||
/* set to the number of arguments gethostbyaddr_r() expects */
|
/* set to the number of arguments gethostbyaddr_r() expects */
|
||||||
#undef GETHOSTBYADDR_R_NARGS
|
#undef GETHOSTBYADDR_R_NARGS
|
||||||
|
|
||||||
|
/* if you have NT threads */
|
||||||
|
#undef HAVE_NT_THREADS
|
||||||
|
|
||||||
/* define if pthreads API compatible with final spec */
|
/* define if pthreads API compatible with final spec */
|
||||||
#undef HAVE_PTHREADS_FINAL
|
#undef HAVE_PTHREADS_FINAL
|
||||||
|
|
||||||
|
|
@ -733,9 +702,6 @@ typedef char * caddr_t;
|
||||||
/* if you have LinuxThreads */
|
/* if you have LinuxThreads */
|
||||||
#undef HAVE_LINUX_THREADS
|
#undef HAVE_LINUX_THREADS
|
||||||
|
|
||||||
/* if you have NT threads */
|
|
||||||
#undef HAVE_NT_THREADS
|
|
||||||
|
|
||||||
/* define if you have (or want) no threads */
|
/* define if you have (or want) no threads */
|
||||||
#undef NO_THREADS
|
#undef NO_THREADS
|
||||||
|
|
||||||
|
|
@ -802,12 +768,12 @@ typedef char * caddr_t;
|
||||||
/* Define if system has ptrdiff_t type */
|
/* Define if system has ptrdiff_t type */
|
||||||
#undef HAVE_PTRDIFF_T
|
#undef HAVE_PTRDIFF_T
|
||||||
|
|
||||||
/* define to atomic type if sig_atomic_t is not available */
|
|
||||||
#undef sig_atomic_t
|
|
||||||
|
|
||||||
/* define to int if socklen_t is not available */
|
/* define to int if socklen_t is not available */
|
||||||
#undef socklen_t
|
#undef socklen_t
|
||||||
|
|
||||||
|
/* define to atomic type if sig_atomic_t is not available */
|
||||||
|
#undef sig_atomic_t
|
||||||
|
|
||||||
/* define if struct passwd has pw_gecos */
|
/* define if struct passwd has pw_gecos */
|
||||||
#undef HAVE_PW_GECOS
|
#undef HAVE_PW_GECOS
|
||||||
|
|
||||||
|
|
@ -826,6 +792,15 @@ typedef char * caddr_t;
|
||||||
/* define to you inet_aton(3) is available */
|
/* define to you inet_aton(3) is available */
|
||||||
#undef HAVE_INET_ATON
|
#undef HAVE_INET_ATON
|
||||||
|
|
||||||
|
/* define to snprintf routine */
|
||||||
|
#undef snprintf
|
||||||
|
|
||||||
|
/* define to vsnprintf routine */
|
||||||
|
#undef vsnprintf
|
||||||
|
|
||||||
|
/* if you have spawnlp() */
|
||||||
|
#undef HAVE_SPAWNLP
|
||||||
|
|
||||||
/* define if sys_errlist is not declared in stdio.h or errno.h */
|
/* define if sys_errlist is not declared in stdio.h or errno.h */
|
||||||
#undef DECL_SYS_ERRLIST
|
#undef DECL_SYS_ERRLIST
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue