mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
Suck -lV3 and memcmp changes (memcmp changes requires more work)
This commit is contained in:
parent
0e60469735
commit
97e4865b91
3
CHANGES
3
CHANGES
@ -5,11 +5,12 @@ OpenLDAP 2.2.24 Release
|
|||||||
Fixed slapd syncrepl consumer unclean shutdown (ITS#3546)
|
Fixed slapd syncrepl consumer unclean shutdown (ITS#3546)
|
||||||
Fixed slapd syncrepl provider sessionlog (ITS#3571)
|
Fixed slapd syncrepl provider sessionlog (ITS#3571)
|
||||||
Fixed slapd connection_abandon processing (ITS#3534, 3546, 3571)
|
Fixed slapd connection_abandon processing (ITS#3534, 3546, 3571)
|
||||||
Added libldap fast synchronous search result processing
|
|
||||||
Fixed libldap fdset re-init for restart (ITS#3524)
|
Fixed libldap fdset re-init for restart (ITS#3524)
|
||||||
|
Added libldap fast synchronous search result processing
|
||||||
Build Environment
|
Build Environment
|
||||||
Updated BDB version check (ITS#3581)
|
Updated BDB version check (ITS#3581)
|
||||||
Documentation
|
Documentation
|
||||||
|
Add slapd-hdb(5)
|
||||||
Updated slapd(8) (ITS#3591)
|
Updated slapd(8) (ITS#3591)
|
||||||
Updated README
|
Updated README
|
||||||
|
|
||||||
|
14
configure.in
14
configure.in
@ -740,9 +740,13 @@ AC_CHECK_HEADERS( \
|
|||||||
dnl ----------------------------------------------------------------
|
dnl ----------------------------------------------------------------
|
||||||
dnl Checks for libraries
|
dnl Checks for libraries
|
||||||
|
|
||||||
|
AC_CHECK_FUNCS( sigaction sigset )
|
||||||
|
|
||||||
dnl HP-UX requires -lV3
|
dnl HP-UX requires -lV3
|
||||||
dnl this is not needed on newer versions of HP-UX
|
dnl this is not needed on newer versions of HP-UX
|
||||||
AC_CHECK_LIB(V3, sigset)
|
if test $ac_cv_func_sigaction = no && test $ac_cv_func_sigaction = no ; then
|
||||||
|
AC_CHECK_LIB(V3, sigset)
|
||||||
|
fi
|
||||||
|
|
||||||
dnl The following is INTENTIONALLY scripted out because shell does not
|
dnl The following is INTENTIONALLY scripted out because shell does not
|
||||||
dnl support variable names with the '@' character, which is what
|
dnl support variable names with the '@' character, which is what
|
||||||
@ -2220,6 +2224,12 @@ AC_DEFINE(LBER_TAG_T,long)
|
|||||||
dnl ----------------------------------------------------------------
|
dnl ----------------------------------------------------------------
|
||||||
dnl Checks for library functions.
|
dnl Checks for library functions.
|
||||||
AC_FUNC_MEMCMP
|
AC_FUNC_MEMCMP
|
||||||
|
|
||||||
|
if test $ac_cv_func_memcmp_clean = no ; then
|
||||||
|
AC_DEFINE(NEED_MEMCMP_REPLACEMENT,1,
|
||||||
|
[define if memcmp is not 8-bit clean or is otherwise broken])
|
||||||
|
fi
|
||||||
|
|
||||||
dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
|
dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
|
||||||
AC_FUNC_STRFTIME
|
AC_FUNC_STRFTIME
|
||||||
dnl AM_FUNC_STRTOD
|
dnl AM_FUNC_STRTOD
|
||||||
@ -2278,9 +2288,7 @@ AC_CHECK_FUNCS( \
|
|||||||
setsid \
|
setsid \
|
||||||
setuid \
|
setuid \
|
||||||
seteuid \
|
seteuid \
|
||||||
sigaction \
|
|
||||||
signal \
|
signal \
|
||||||
sigset \
|
|
||||||
strdup \
|
strdup \
|
||||||
strerror \
|
strerror \
|
||||||
strpbrk \
|
strpbrk \
|
||||||
|
@ -869,6 +869,9 @@
|
|||||||
/* The number of bytes in type wchar_t */
|
/* The number of bytes in type wchar_t */
|
||||||
#undef SIZEOF_WCHAR_T
|
#undef SIZEOF_WCHAR_T
|
||||||
|
|
||||||
|
/* define if memcmp is not 8-bit clean or is otherwise broken */
|
||||||
|
#undef NEED_MEMCMP_REPLACEMENT
|
||||||
|
|
||||||
/* define to you inet_aton(3) is available */
|
/* define to you inet_aton(3) is available */
|
||||||
#undef HAVE_INET_ATON
|
#undef HAVE_INET_ATON
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user