configure.ac: Remove unused code

We no longer set LIBGNUTLS_CONFIG, as GnuTLS no longer ships a
"libgnutls-config" tool.
This commit is contained in:
Holger Weiss 2014-06-12 00:10:07 +02:00
parent 083952c426
commit a10b93eef2

View file

@ -509,8 +509,6 @@ dnl check for gnutls if openssl isn't found (or is disabled)
if test ! "$FOUNDOPENSSL" = "yes" && test ! "$with_gnutls" = "no"; then
if test ! "$with_gnutls" = ""; then
CPPFLAGS="$CPPFLAGS -I${with_gnutls}/include"
elif test ! "$LIBGNUTLS_CONFIG" = ""; then
CPPFLAGS="$CPPFLAGS -I`$LIBGNUTLS_CONFIG --prefix`"
fi
AC_CHECK_HEADERS([gnutls/openssl.h],FOUNDGNUTLS="yes",)
if test "$FOUNDGNUTLS" = "yes"; then