diff options
author | Michael Krelin <hacker@klever.net> | 2007-05-09 09:12:42 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-05-09 09:12:42 +0000 |
commit | 655739246110f752bf30833442e4d9863036f2ed (patch) | |
tree | 4c5ee645e8546e848001f4252443f51986ef8d69 /packages/neon/files | |
parent | a1da152a12837b54328d9f6bae672c23815df67c (diff) |
neon: force gnutls support as per bug #2280
Diffstat (limited to 'packages/neon/files')
-rw-r--r-- | packages/neon/files/gnutls-force-and-detect.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/neon/files/gnutls-force-and-detect.patch b/packages/neon/files/gnutls-force-and-detect.patch new file mode 100644 index 0000000000..4c794ba138 --- /dev/null +++ b/packages/neon/files/gnutls-force-and-detect.patch @@ -0,0 +1,23 @@ +diff --git a/macros/neon.m4 b/macros/neon.m4 +index 01072b9..6d3258f 100644 +--- a/macros/neon.m4 ++++ b/macros/neon.m4 +@@ -886,15 +886,11 @@ yes|openssl) + NEON_EXTRAOBJS="$NEON_EXTRAOBJS ne_openssl" + ;; + gnutls) +- AC_MSG_ERROR([GNU TLS support is not yet complete]) ++ dnl AC_MSG_ERROR([GNU TLS support is not yet complete]) + +- AC_PATH_PROG(GNUTLS_CONFIG, libgnutls-config, no) ++ GNUTLS_CONFIG="pkg-config gnutls" + +- if test "$GNUTLS_CONFIG" = "no"; then +- AC_MSG_ERROR([could not find libgnutls-config in \$PATH]) +- fi +- +- ne_gnutls_ver=`$GNUTLS_CONFIG --version` ++ ne_gnutls_ver=`$GNUTLS_CONFIG --modversion` + case $ne_gnutls_ver in + 1.0.?|1.0.1?|1.0.20|1.0.21) + AC_MSG_ERROR([GNU TLS version $ne_gnutls_ver is too old -- 1.0.22 or later required]) ;; |