mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
configure: try ldap/lber in reversed order first
When scanning for which LDAP libraries to use, try the -lldap -llber combination before the reversed order since it has a greater chance of working when linking with libcurl statically. Fixes #1619 Closes #1634 Reported-by: David E. Narváez
This commit is contained in:
parent
909a5bee81
commit
c534384810
@ -790,8 +790,8 @@ AC_DEFUN([CURL_CHECK_LIBS_LDAP], [
|
||||
#
|
||||
for x_nlibs in '' "$u_libs" \
|
||||
'-lldap' \
|
||||
'-llber -lldap' \
|
||||
'-lldap -llber' \
|
||||
'-llber -lldap' \
|
||||
'-lldapssl -lldapx -lldapsdk' \
|
||||
'-lldapsdk -lldapx -lldapssl' ; do
|
||||
if test "$curl_cv_ldap_LIBS" = "unknown"; then
|
||||
|
Loading…
Reference in New Issue
Block a user