summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2021-07-09 18:15:41 +0000
committerTom Lane2021-07-09 18:15:41 +0000
commit8c9c208990b588c652c13b019fb15d9da55d6306 (patch)
tree4d7cceb200f7fba1127252054347d23e76afc417
parentcd5d3aefa6d04dd35f6e6b9b047f6f2c1a903ad9 (diff)
Un-break AIX build.
In commit d0a02bdb8, I'd supposed that uniformly probing for ldap_bind would make the intent clearer. However, that seems not to work on AIX, for obscure reasons (maybe it's a macro there?). Revert to the former behavior of probing ldap_simple_bind for thread-safe cases and ldap_bind otherwise. Per buildfarm member hoverfly. Discussion: https://postgr.es/m/[email protected]
-rwxr-xr-xconfigure27
-rw-r--r--configure.in5
2 files changed, 17 insertions, 15 deletions
diff --git a/configure b/configure
index d8a4d70bcc4..fecf8b782fe 100755
--- a/configure
+++ b/configure
@@ -10058,11 +10058,12 @@ if test "$with_ldap" = yes ; then
if test "$enable_thread_safety" = yes; then
# Use ldap_r for FE if available, else assume ldap is thread-safe.
# If ldap_r does exist, assume without checking that ldap does too.
- # on some platforms ldap_r fails to link without PTHREAD_LIBS
+ # On some platforms ldap_r fails to link without PTHREAD_LIBS;
+ # also, on AIX we must probe ldap_simple_bind not ldap_bind.
LIBS=""
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing ldap_bind" >&5
-$as_echo_n "checking for library containing ldap_bind... " >&6; }
-if ${ac_cv_search_ldap_bind+:} false; then :
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing ldap_simple_bind" >&5
+$as_echo_n "checking for library containing ldap_simple_bind... " >&6; }
+if ${ac_cv_search_ldap_simple_bind+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -10075,11 +10076,11 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
#ifdef __cplusplus
extern "C"
#endif
-char ldap_bind ();
+char ldap_simple_bind ();
int
main ()
{
-return ldap_bind ();
+return ldap_simple_bind ();
;
return 0;
}
@@ -10092,25 +10093,25 @@ for ac_lib in '' ldap_r ldap; do
LIBS="-l$ac_lib $PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS $ac_func_search_save_LIBS"
fi
if ac_fn_c_try_link "$LINENO"; then :
- ac_cv_search_ldap_bind=$ac_res
+ ac_cv_search_ldap_simple_bind=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if ${ac_cv_search_ldap_bind+:} false; then :
+ if ${ac_cv_search_ldap_simple_bind+:} false; then :
break
fi
done
-if ${ac_cv_search_ldap_bind+:} false; then :
+if ${ac_cv_search_ldap_simple_bind+:} false; then :
else
- ac_cv_search_ldap_bind=no
+ ac_cv_search_ldap_simple_bind=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ldap_bind" >&5
-$as_echo "$ac_cv_search_ldap_bind" >&6; }
-ac_res=$ac_cv_search_ldap_bind
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ldap_simple_bind" >&5
+$as_echo "$ac_cv_search_ldap_simple_bind" >&6; }
+ac_res=$ac_cv_search_ldap_simple_bind
if test "$ac_res" != no; then :
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
diff --git a/configure.in b/configure.in
index fe5e640f69a..581d0d9b557 100644
--- a/configure.in
+++ b/configure.in
@@ -1193,9 +1193,10 @@ if test "$with_ldap" = yes ; then
if test "$enable_thread_safety" = yes; then
# Use ldap_r for FE if available, else assume ldap is thread-safe.
# If ldap_r does exist, assume without checking that ldap does too.
- # on some platforms ldap_r fails to link without PTHREAD_LIBS
+ # On some platforms ldap_r fails to link without PTHREAD_LIBS;
+ # also, on AIX we must probe ldap_simple_bind not ldap_bind.
LIBS=""
- AC_SEARCH_LIBS(ldap_bind, [ldap_r ldap], [],
+ AC_SEARCH_LIBS(ldap_simple_bind, [ldap_r ldap], [],
[AC_MSG_ERROR([library 'ldap' is required for LDAP])],
[$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
LDAP_LIBS_FE="$LIBS $EXTRA_LDAP_LIBS"