mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Fix res_search typo
This commit is contained in:
parent
762ef943a0
commit
b098f46de4
2 changed files with 6 additions and 6 deletions
6
configure
vendored
6
configure
vendored
|
|
@ -3203,7 +3203,7 @@ fi
|
|||
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind_res_search
|
||||
fi
|
||||
if test $ac_cv_func_res_search = "no" ; then
|
||||
if test $ac_cv_func_res_search= "no" ; then
|
||||
echo $ac_n "checking for __res_search in -lbind""... $ac_c" 1>&6
|
||||
echo "configure:3209: checking for __res_search in -lbind" >&5
|
||||
ac_lib_var=`echo bind'_'__res_search | sed 'y%./+-:%__p__%'`
|
||||
|
|
@ -3251,7 +3251,7 @@ else
|
|||
echo "$ac_t""no" 1>&6
|
||||
fi
|
||||
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind_res___search
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind___res_search
|
||||
fi
|
||||
if test $ac_cv_func_res_search = "no" ; then
|
||||
echo $ac_n "checking for res_search in -lresolv""... $ac_c" 1>&6
|
||||
|
|
@ -3303,7 +3303,7 @@ fi
|
|||
|
||||
ac_cv_func_res_search=$ac_cv_lib_resolv_res_search
|
||||
fi
|
||||
if test "$ac_cv_func_res_search" = "yes" ; then
|
||||
if test $ac_cv_func_res_search = "yes" ; then
|
||||
cat >> confdefs.h <<\EOF
|
||||
#define HAVE_RES_SEARCH 1
|
||||
EOF
|
||||
|
|
|
|||
|
|
@ -301,15 +301,15 @@ if test $ac_cv_func_res_search = "no" ; then
|
|||
AC_CHECK_LIB(bind, res_search)
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind_res_search
|
||||
fi
|
||||
if test $ac_cv_func_res_search = "no" ; then
|
||||
if test $ac_cv_func_res_search= "no" ; then
|
||||
AC_CHECK_LIB(bind, __res_search)
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind_res___search
|
||||
ac_cv_func_res_search=$ac_cv_lib_bind___res_search
|
||||
fi
|
||||
if test $ac_cv_func_res_search = "no" ; then
|
||||
AC_CHECK_LIB(resolv, res_search)
|
||||
ac_cv_func_res_search=$ac_cv_lib_resolv_res_search
|
||||
fi
|
||||
if test "$ac_cv_func_res_search" = "yes" ; then
|
||||
if test $ac_cv_func_res_search = "yes" ; then
|
||||
AC_DEFINE(HAVE_RES_SEARCH,1)
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue