- Marc de Bruin pointed out that configure --with-gnutls=PATH didn't work
properly and provided a fix. http://curl.haxx.se/bug/view.cgi?id=2843008
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -7,6 +7,9 @@
|
|||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
Daniel Stenberg (24 Aug 2009)
|
Daniel Stenberg (24 Aug 2009)
|
||||||
|
- Marc de Bruin pointed out that configure --with-gnutls=PATH didn't work
|
||||||
|
properly and provided a fix. http://curl.haxx.se/bug/view.cgi?id=2843008
|
||||||
|
|
||||||
- Eric Wong introduced support for the new option -T. (dot) that makes curl
|
- Eric Wong introduced support for the new option -T. (dot) that makes curl
|
||||||
read stdin in a non-blocking fashion. This also brings back -T- (minus) to
|
read stdin in a non-blocking fashion. This also brings back -T- (minus) to
|
||||||
the previous blocking behavior since it could break stuff for people at
|
the previous blocking behavior since it could break stuff for people at
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ This release includes the following bugfixes:
|
|||||||
o use after free if we're completed but easy_conn not NULL (pipelined)
|
o use after free if we're completed but easy_conn not NULL (pipelined)
|
||||||
o missing strdup() return code check
|
o missing strdup() return code check
|
||||||
o CURLOPT_PROXY_TRANSFER_MODE could pass along wrong syntax
|
o CURLOPT_PROXY_TRANSFER_MODE could pass along wrong syntax
|
||||||
|
o configure --with-gnutls=PATH fixed
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
|
|||||||
11
configure.ac
11
configure.ac
@@ -1571,12 +1571,13 @@ if test "$OPENSSL_ENABLED" != "1"; then
|
|||||||
else
|
else
|
||||||
dnl this is with a given path, first check if there's a libgnutls-config
|
dnl this is with a given path, first check if there's a libgnutls-config
|
||||||
dnl there and if not, make an educated guess
|
dnl there and if not, make an educated guess
|
||||||
check=`$OPT_GNUTLS/libgnutls-config --version 2>/dev/null`
|
cfg=$OPT_GNUTLS/bin/libgnutls-config
|
||||||
|
check=`$cfg --version 2>/dev/null`
|
||||||
if test -n "$check"; then
|
if test -n "$check"; then
|
||||||
addlib=`$OPT_GNUTLS/libgnutls-config --libs`
|
addlib=`$cfg --libs`
|
||||||
addcflags=`$OPT_GNUTLS/libgnutls-config --cflags`
|
addcflags=`$cfg --cflags`
|
||||||
version=`$OPT_GNUTLS/libgnutls-config --version`
|
version=`$cfg --version`
|
||||||
gtlslib=`$OPT_GNUTLS/libgnutls-config --prefix`/lib$libsuff
|
gtlslib=`$cfg --prefix`/lib$libsuff
|
||||||
else
|
else
|
||||||
dnl without pkg-config and libgnutls-config, we guess a lot!
|
dnl without pkg-config and libgnutls-config, we guess a lot!
|
||||||
addlib=-lgnutls
|
addlib=-lgnutls
|
||||||
|
|||||||
Reference in New Issue
Block a user