summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2003-12-07 18:39:13 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2003-12-07 18:39:13 +0000
commit7fa5d73ede2e76b032dc8e63c1ad966bfaf98495 (patch)
treef9f9af09bbb7d1d10ad410193c76d550b2ea25f1 /media-video/totem/files
parentpatch against configure.in to make curl disable-able. (diff)
downloadgentoo-2-7fa5d73ede2e76b032dc8e63c1ad966bfaf98495.tar.gz
gentoo-2-7fa5d73ede2e76b032dc8e63c1ad966bfaf98495.tar.bz2
gentoo-2-7fa5d73ede2e76b032dc8e63c1ad966bfaf98495.zip
patch against configure.in to make curl disable-able.
Diffstat (limited to 'media-video/totem/files')
-rw-r--r--media-video/totem/files/digest-totem-0.99.8-r11
-rw-r--r--media-video/totem/files/totem-0.99.8-curl.patch25
2 files changed, 26 insertions, 0 deletions
diff --git a/media-video/totem/files/digest-totem-0.99.8-r1 b/media-video/totem/files/digest-totem-0.99.8-r1
new file mode 100644
index 000000000000..84310a8ca54f
--- /dev/null
+++ b/media-video/totem/files/digest-totem-0.99.8-r1
@@ -0,0 +1 @@
+MD5 fc8c0fcf96bcea69a7c957ef1666cd7e totem-0.99.8.tar.bz2 786192
diff --git a/media-video/totem/files/totem-0.99.8-curl.patch b/media-video/totem/files/totem-0.99.8-curl.patch
new file mode 100644
index 000000000000..d7df476a5a32
--- /dev/null
+++ b/media-video/totem/files/totem-0.99.8-curl.patch
@@ -0,0 +1,25 @@
+--- configure.in 2003-11-09 02:07:19.000000000 +0100
++++ /tmp/configure.in 2003-12-07 19:19:18.000000000 +0100
+@@ -87,7 +87,21 @@
+ CURL_MAJOR_REQ=7
+ CURL_MINOR_REQ=9
+ CURL_MICRO_REQ=8
+-AC_PATH_PROG(CURL_CONFIG, curl-config, no)
++
++AC_ARG_ENABLE(curl,
++ AC_HELP_STRING([--disable-curl],[disable curl support]),
++ [case "${enableval}" in
++ yes) WANT_CURL=yes ;;
++ no) WANT_CURL=no ;;
++ *) AC_MSG_ERROR(bad value ${enableval} for --enable-curl) ;;
++ esac],
++ [WANT_CURL=yes]) dnl Default value
++if test x$WANT_CURL = xyes ; then
++ AC_PATH_PROG(CURL_CONFIG, curl-config, no)
++else
++ CURL_CONFIG=no
++fi
++
+ AC_MSG_CHECKING(for curl)
+ if test "$CURL_CONFIG" = "no" ; then
+ AC_MSG_WARN(curl development libraries missing, no automatic DLL downloader)