summaryrefslogtreecommitdiff
path: root/sdk/recipes/patches/libcurl
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-16 11:49:03 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-16 11:49:03 +0100
commit914851010d943d034a35bfb0fd7002edd245c67f (patch)
treed7e1577390f73fefe71145d7457728c029c29362 /sdk/recipes/patches/libcurl
parent1f6a1c8701f01a8828d100fdf7eb0c8aba4059c4 (diff)
downloadtoolchains-914851010d943d034a35bfb0fd7002edd245c67f.tar.gz
toolchains-914851010d943d034a35bfb0fd7002edd245c67f.tar.bz2
Update SDK library versions for openssl, libpng , libcurl and freetype to address security issues
This has been sucessfully test built for everything except atari where libiconv no longer builds because of a missing PATH_MAX definition but I can find no difference in the libiconv build so it must be related to the cross complier/libmint build although the generated includes also look sensible so I am leaving it for now.
Diffstat (limited to 'sdk/recipes/patches/libcurl')
-rw-r--r--sdk/recipes/patches/libcurl/7.34.0-ipv6-trynextip.p27
1 files changed, 0 insertions, 27 deletions
diff --git a/sdk/recipes/patches/libcurl/7.34.0-ipv6-trynextip.p b/sdk/recipes/patches/libcurl/7.34.0-ipv6-trynextip.p
deleted file mode 100644
index 7135203..0000000
--- a/sdk/recipes/patches/libcurl/7.34.0-ipv6-trynextip.p
+++ /dev/null
@@ -1,27 +0,0 @@
-Origin: https://github.com/bagder/curl/commit/2d435c7fb5b7691e8ca1f3052e1eb5bcd8a4ea27.diff
-
-diff --git a/lib/connect.c b/lib/connect.c
-index 33f7aec..05666eb 100644
---- lib/connect.c
-+++ lib/connect.c
-@@ -5,7 +5,7 @@
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
-- * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
-+ * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
-@@ -556,7 +556,11 @@ static CURLcode trynextip(struct connectdata *conn,
- else {
- /* happy eyeballs - try the other protocol family */
- int firstfamily = conn->tempaddr[0]->ai_family;
-+#ifdef ENABLE_IPV6
- family = (firstfamily == AF_INET) ? AF_INET6 : AF_INET;
-+#else
-+ family = firstfamily;
-+#endif
- ai = conn->tempaddr[0]->ai_next;
- }
-