From: Otavio Salvador Date: Mon, 29 Oct 2007 12:16:13 +0000 (-0200) Subject: * Fix configure script to check for CURL library and headers presense. X-Git-Tag: 0.7.24ubuntu1~120^2~12 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/9c5fe9a09cf84bf57df704d5d479c7c3b0de9cbc?ds=sidebyside * Fix configure script to check for CURL library and headers presense. --- diff --git a/configure.in b/configure.in index df446bc56..13ce4540d 100644 --- a/configure.in +++ b/configure.in @@ -74,6 +74,13 @@ AC_CHECK_HEADER(db.h, LIBS="$saveLIBS" +AC_CHECK_LIB(curl, curl_easy_init, + [AC_CHECK_HEADER(curl/curl.h, + curl_ok=yes, + curl_ok=no)], + AC_MSG_ERROR([failed: I need CURL due https support]), +) + AC_SUBST(BDBLIB) dnl Converts the ARCH to be something singular for this general CPU family diff --git a/debian/changelog b/debian/changelog index 7a8c88690..9dc6f6b24 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,15 @@ apt (0.7.9) UNRELEASED; urgency=low + [ Christian Perrier ] * Add several languages to LINGUAS and, therefore, really ship the relevant translation: Arabic, Dzongkha, Khmer, Marathi, Nepali, Thai Thanks to Theppitak Karoonboonyanan for checking this out. Closes: #448321 - -- Christian Perrier Sun, 28 Oct 2007 09:14:52 +0100 + [ Otavio Salvador ] + * Fix configure script to check for CURL library and headers presense. + + -- Otavio Salvador Mon, 29 Oct 2007 10:15:52 -0200 apt (0.7.8) unstable; urgency=low