From: Kurt Zeilenga Date: Thu, 14 Jan 1999 03:14:46 +0000 (+0000) Subject: Fix variable names in res_search check. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~783 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0949ea9c1024fc6ab4e81908d538688e4f35c634;p=openldap Fix variable names in res_search check. --- diff --git a/configure b/configure index bf4bda8cdd..aebf0120e2 100755 --- a/configure +++ b/configure @@ -2800,7 +2800,7 @@ else echo "$ac_t""no" 1>&6 fi - if test "$ac_cv_libac_cv_lib_bind_res_search" = "yes" ; then + if test "$ac_cv_lib_bind_res_search" = "yes" ; then cat >> confdefs.h <<\EOF #define HAVE_RES_SEARCH 1 EOF @@ -2853,7 +2853,7 @@ else echo "$ac_t""no" 1>&6 fi - if test "$ac_cv_libac_cv_lib_resolv_res_search" = "yes" ; then + if test "$ac_cv_lib_resolv_res_search" = "yes" ; then cat >> confdefs.h <<\EOF #define HAVE_RES_SEARCH 1 EOF diff --git a/configure.in b/configure.in index ae32fa312e..3173223b3f 100644 --- a/configure.in +++ b/configure.in @@ -277,11 +277,11 @@ dnl Check for resolver routines AC_CHECK_FUNCS(res_search) if test $ac_cv_func_res_search = "no" ; then AC_CHECK_LIB(bind, res_search) - if test "$ac_cv_libac_cv_lib_bind_res_search" = "yes" ; then + if test "$ac_cv_lib_bind_res_search" = "yes" ; then AC_DEFINE(HAVE_RES_SEARCH,1) else AC_CHECK_LIB(resolv, res_search) - if test "$ac_cv_libac_cv_lib_resolv_res_search" = "yes" ; then + if test "$ac_cv_lib_resolv_res_search" = "yes" ; then AC_DEFINE(HAVE_RES_SEARCH,1) fi fi