summaryrefslogtreecommitdiff
path: root/data/curl
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2009-04-15 21:57:10 +0000
committerJay Freeman <saurik@saurik.com>2009-04-15 21:57:10 +0000
commitb521141a96b349dd389bde8de66707015e0d9a47 (patch)
tree772026a572252c334fe5350ba1ac38d6942f9eb5 /data/curl
parentd17a5ee06c0c2960d319d4cc3ea9b0c04896d125 (diff)
Upgraded to cURL 7.19.4.
git-svn-id: http://svn.telesphoreo.org/trunk@590 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/curl')
-rw-r--r--data/curl/_metadata/version2
-rw-r--r--data/curl/curl-7.19.0.tar.bz2bin2125703 -> 0 bytes
-rw-r--r--data/curl/curl-7.19.4.tar.bz2bin0 -> 2296879 bytes
-rw-r--r--data/curl/make.sh2
-rw-r--r--data/curl/mdns.diff25
-rw-r--r--data/curl/strerror.diff45
6 files changed, 2 insertions, 72 deletions
diff --git a/data/curl/_metadata/version b/data/curl/_metadata/version
index 3821090fd..86deddae7 100644
--- a/data/curl/_metadata/version
+++ b/data/curl/_metadata/version
@@ -1 +1 @@
-7.19.0
+7.19.4
diff --git a/data/curl/curl-7.19.0.tar.bz2 b/data/curl/curl-7.19.0.tar.bz2
deleted file mode 100644
index 4627828d1..000000000
--- a/data/curl/curl-7.19.0.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/data/curl/curl-7.19.4.tar.bz2 b/data/curl/curl-7.19.4.tar.bz2
new file mode 100644
index 000000000..1aa85d68a
--- /dev/null
+++ b/data/curl/curl-7.19.4.tar.bz2
Binary files differ
diff --git a/data/curl/make.sh b/data/curl/make.sh
index f197f9077..fe3958c8d 100644
--- a/data/curl/make.sh
+++ b/data/curl/make.sh
@@ -1,5 +1,5 @@
pkg:setup
autoconf
pkg:configure ac_cv_file___dev_urandom_=yes
-make
+pkg:make
pkg:install
diff --git a/data/curl/mdns.diff b/data/curl/mdns.diff
deleted file mode 100644
index 14b8dd67e..000000000
--- a/data/curl/mdns.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ru curl-7.17.1/src/main.c curl-7.17.1+iPhone/src/main.c
---- curl-7.17.1/src/main.c 2007-10-03 08:00:43.000000000 +0000
-+++ curl-7.17.1+iPhone/src/main.c 2008-02-02 14:49:46.000000000 +0000
-@@ -1,3 +1,5 @@
-+#include <mach-o/nlist.h>
-+
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
-@@ -4712,6 +4714,15 @@
-
- int main(int argc, char *argv[])
- {
-+#if !defined(__ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__) || __ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__ < 10200
-+ struct nlist nl[2];
-+ memset(nl, 0, sizeof(nl));
-+ nl[0].n_un.n_name = (char *) "_useMDNSResponder";
-+ nlist("/usr/lib/libc.dylib", nl);
-+ if (nl[0].n_type != N_UNDF)
-+ *(int *) nl[0].n_value = 0;
-+#endif
-+
- int res;
- struct Configurable config;
-
diff --git a/data/curl/strerror.diff b/data/curl/strerror.diff
deleted file mode 100644
index 961a32d9e..000000000
--- a/data/curl/strerror.diff
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -r -u curl-7.17.1/acinclude.m4 curl-7.17.1+iPhone/acinclude.m4
---- curl-7.17.1/acinclude.m4 2007-10-24 20:08:45.000000000 +0000
-+++ curl-7.17.1+iPhone/acinclude.m4 2007-12-28 11:24:03.000000000 +0000
-@@ -1944,41 +1944,8 @@
- ) dnl with _THREAD_SAFE
- ]) dnl plain cpp for it
-
-- dnl determine if this strerror_r() is glibc or POSIX
-- AC_MSG_CHECKING([for a glibc strerror_r API])
-- AC_TRY_RUN([
--#include <string.h>
--#include <errno.h>
--int
--main () {
-- char buffer[1024]; /* big enough to play with */
-- char *string =
-- strerror_r(EACCES, buffer, sizeof(buffer));
-- /* this should've returned a string */
-- if(!string || !string[0])
-- return 99;
-- return 0;
--}
--],
- GLIBC_STRERROR_R="1"
- AC_DEFINE(HAVE_GLIBC_STRERROR_R, 1, [we have a glibc-style strerror_r()])
-- AC_MSG_RESULT([yes]),
-- AC_MSG_RESULT([no]),
--
-- dnl Use an inferior method of strerror_r detection while cross-compiling
-- AC_EGREP_CPP(yes, [
--#include <features.h>
--#ifdef __GLIBC__
--yes
--#endif
--],
-- dnl looks like glibc, so assume a glibc-style strerror_r()
-- GLIBC_STRERROR_R="1"
-- AC_DEFINE(HAVE_GLIBC_STRERROR_R, 1, [we have a glibc-style strerror_r()])
-- AC_MSG_RESULT([yes]),
-- AC_MSG_NOTICE([cannot determine strerror_r() style: edit lib/config.h manually!])
-- ) dnl while cross-compiling
-- )
-
- if test -z "$GLIBC_STRERROR_R"; then
-