aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-11-21 10:16:48 +0000
committerChristian Grothoff <christian@grothoff.org>2015-11-21 10:16:48 +0000
commit50a6102ff3d2d437c256d179c72c3e9fb16040f3 (patch)
treee638c4d1023b9414e4598eee09014f6a88001697 /configure.ac
parent70ca8aaaea43d209e30d4ce87f22184aa8cc9bb5 (diff)
downloadlibmicrohttpd-50a6102ff3d2d437c256d179c72c3e9fb16040f3.tar.gz
libmicrohttpd-50a6102ff3d2d437c256d179c72c3e9fb16040f3.zip
fix #4062 as suggested
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7807b152..f662383d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -931,7 +931,7 @@ AC_SUBST(MHD_LIB_LDFLAGS)
931AS_IF([[test "x$enable_https" = "xyes" && test "x$have_gnutls_pkgcfg" = "xyes" ]], 931AS_IF([[test "x$enable_https" = "xyes" && test "x$have_gnutls_pkgcfg" = "xyes" ]],
932 [ # remove GnuTLS from private libs in .pc file as it defined in Requires.private 932 [ # remove GnuTLS from private libs in .pc file as it defined in Requires.private
933 MHD_REQ_PRIVATE='gnutls' 933 MHD_REQ_PRIVATE='gnutls'
934 MHD_LIBDEPS_PKGCFG="${MHD_LIBDEPS//$GNUTLS_LIBS/}" 934 MHD_LIBDEPS_PKGCFG=$(echo ${MHD_LIBDEPS} | sed "s/$GNUTLS_LIBS//")
935 ], 935 ],
936 [ 936 [
937 MHD_REQ_PRIVATE='' 937 MHD_REQ_PRIVATE=''