From: Pierangelo Masarati Date: Fri, 8 Apr 2005 18:46:18 +0000 (+0000) Subject: fix --enable-dnssrv (ITS#3641), and minor cleanup X-Git-Tag: OPENLDAP_AC_BP~978 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=96878dbb6b206f903f97bc32a68084f56731cd97;p=openldap fix --enable-dnssrv (ITS#3641), and minor cleanup --- diff --git a/configure.in b/configure.in index 9c6335a057..07384b14a1 100644 --- a/configure.in +++ b/configure.in @@ -242,8 +242,8 @@ OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend no|yes|mod], dnl ---------------------------------------------------------------- dnl SLAPD Overlay Options -Overlays="denyop dyngroup dynlist glue lastmod ppolicy proxycache rwm \ - refint syncprov translucent unique" +Overlays="denyop dyngroup dynlist glue lastmod ppolicy proxycache \ + refint rwm syncprov translucent unique" AC_ARG_WITH(xxslapoverlays,[ SLAPD Overlay Options:]) @@ -979,7 +979,7 @@ if test "$ol_cv_lib_resolver" != no ; then [define if you have res_query()]) if test "$ol_enable_dnssrv" != no ; then - ol_link_dnssrv=yes; + ol_link_dnssrv=yes fi if test "$ol_cv_lib_resolver" != yes ; then @@ -987,8 +987,10 @@ if test "$ol_cv_lib_resolver" != no ; then fi fi -if test "$ol_enable_dnssrv" = yes -a "$ol_link_dnssrv" = no ; then - AC_MSG_ERROR([DNSSRV requires res_query()]) +if test "$ol_enable_dnssrv" = yes -o "$ol_enable_dnssrv" = mod ; then + if test "$ol_link_dnssrv" = no ; then + AC_MSG_ERROR([DNSSRV requires res_query()]) + fi else ol_enable_dnssrv=no fi