Commit 1297c54b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl.

AC_PATH_PROG was not used properly.
parent 1045b8d3
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -7,6 +7,8 @@
                                  Changelog
                                  Changelog


Daniel (19 February 2007)
Daniel (19 February 2007)
- Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl.

- Shmulik Regev found a memory leak in re-used HTTPS connections, at least
- Shmulik Regev found a memory leak in re-used HTTPS connections, at least
  when the multi interface was used.
  when the multi interface was used.


+2 −1
Original line number Original line Diff line number Diff line
@@ -26,6 +26,7 @@ This release includes the following bugfixes:
 o curl_multi_remove_handle() rare crash
 o curl_multi_remove_handle() rare crash
 o passive FTP transfers work with SOCKS
 o passive FTP transfers work with SOCKS
 o multi interface HTTPS connection re-use memory leak
 o multi interface HTTPS connection re-use memory leak
 o libcurl.m4's --with-libcurl is improved


This release includes the following known bugs:
This release includes the following known bugs:


@@ -44,6 +45,6 @@ advice from friends like these:


 Yang Tse, Manfred Schwarb, Michael Wallner, Jeff Pohlmeyer, Shmulik Regev,
 Yang Tse, Manfred Schwarb, Michael Wallner, Jeff Pohlmeyer, Shmulik Regev,
 Rob Crittenden, Robert A. Monat, Dan Fandrich, Duncan Mac-Vicar Prett,
 Rob Crittenden, Robert A. Monat, Dan Fandrich, Duncan Mac-Vicar Prett,
 Michal Marek, Robson Braga Araujo
 Michal Marek, Robson Braga Araujo, Ian Turner


        Thanks! (and sorry if I forgot to mention someone)
        Thanks! (and sorry if I forgot to mention someone)
+2 −1
Original line number Original line Diff line number Diff line
@@ -71,7 +71,8 @@ AC_DEFUN([LIBCURL_CHECK_CONFIG],
     if test -d "$_libcurl_with" ; then
     if test -d "$_libcurl_with" ; then
        LIBCURL_CPPFLAGS="-I$withval/include"
        LIBCURL_CPPFLAGS="-I$withval/include"
        _libcurl_ldflags="-L$withval/lib"
        _libcurl_ldflags="-L$withval/lib"
        AC_PATH_PROG([_libcurl_config],["$withval/bin/curl-config"])
        AC_PATH_PROG([_libcurl_config],[curl-config],["$withval/bin"],
                     ["$withval/bin"])
     else
     else
	AC_PATH_PROG([_libcurl_config],[curl-config])
	AC_PATH_PROG([_libcurl_config],[curl-config])
     fi
     fi