Removed empty else part of AC_CHECK_FUNC() which caused configure to fail as the generated syntax in it was incorrect

This commit is contained in:
Mukund Sivaraman 2008-03-12 15:38:12 -07:00
parent 86f38819c0
commit 625cecf492

View File

@ -142,7 +142,7 @@ dnl avoid -lnsl checks, if we already have the functions which are
dnl usually in libnsl dnl usually in libnsl
unset ac_cv_func_yp_get_default_domain unset ac_cv_func_yp_get_default_domain
AC_CHECK_FUNC(yp_get_default_domain, [ tinyproxy_no_nsl_checks=yes ], [ ]) AC_CHECK_FUNC(yp_get_default_domain, [ tinyproxy_no_nsl_checks=yes ])
unset ac_cv_func_yp_get_default_domain unset ac_cv_func_yp_get_default_domain
if test "$tinyproxy_no_nsl_checks" != "yes"; then if test "$tinyproxy_no_nsl_checks" != "yes"; then