1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

* configure.ac: Better implementation for the SRV check. We don't need to

actually check all the header files individually since the SRV test
compile uses them together.
This commit is contained in:
David Shaw 2004-12-30 03:31:19 +00:00
parent b37facc593
commit 2193ab9fc7
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2004-12-28 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Better implementation for the SRV check. We don't
need to actually check all the header files individually since the
SRV test compile uses them together.
2004-12-24 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Use new LIBCURL_CHECK_CONFIG macro for

View File

@ -572,9 +572,8 @@ if (test x"$try_hkp" = xyes || test x"$try_http" = xyes) && test x"$use_dns_srv"
if test x"$use_dns_srv" = xyes ; then
AC_DEFINE(USE_DNS_SRV,1,[define to use DNS SRV])
SRVLIBS=$LIBS
else
AC_MSG_NOTICE([Resolver functions not found or not usable. Disabling DNS SRV.])
fi
LIBS=$_srv_save_libs
fi
@ -804,13 +803,12 @@ AM_CONDITIONAL(ENABLE_CARD_SUPPORT, test "$card_support" = yes)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([unistd.h langinfo.h termio.h locale.h getopt.h arpa/nameser.h])
AC_CHECK_HEADERS([unistd.h langinfo.h termio.h locale.h getopt.h])
# Note that we do not check for iconv here because this is done anyway
# by the gettext checks and thus it allows us to disable the use of
# iconv by using --disable-nls.
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE