diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-03-10 14:17:25 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-03-09 23:45:17 -0800 |
commit | fc88c722f331bd170f691db2f8c75c4cf1f805ef (patch) | |
tree | f879da922ca2ed1aaf42e0169c2a8d5db0e2ac5c /meta-webserver | |
parent | 1928bc1741667011f0bd43dc22aa40cda1438e10 (diff) | |
download | meta-openembedded-fc88c722f331bd170f691db2f8c75c4cf1f805ef.tar.gz |
spawn-fcgi: upgrade 1.6.4 -> 1.6.5
fix_configure_ipv6_test.patch
removed since it's included in 1.6.5
Changelog:
==========
* Configure script cleanups (fixing detection of IPv6)
* Update links and email addresses
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r-- | meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch | 35 | ||||
-rw-r--r-- | meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.5.bb (renamed from meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.4.bb) | 6 |
2 files changed, 2 insertions, 39 deletions
diff --git a/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch b/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch deleted file mode 100644 index 9409dd2b1..000000000 --- a/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | Testing for IPv6 support got broken by configure.ac changes in 1.6.4 | ||
2 | As a temp workaround, revert back to the 1.6.3 version. | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | --- spawn-fcgi-1.6.4/configure.ac | ||
7 | +++ spawn-fcgi-1.6.3/configure.ac | ||
8 | @@ -66,8 +47,8 @@ | ||
9 | # Check for IPv6 support | ||
10 | |||
11 | AC_ARG_ENABLE(ipv6, | ||
12 | - AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), | ||
13 | - [case "${enableval}" in | ||
14 | + AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), | ||
15 | + [case "${enableval}" in | ||
16 | yes) ipv6=true ;; | ||
17 | no) ipv6=false ;; | ||
18 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-ipv6) ;; | ||
19 | @@ -75,13 +56,10 @@ | ||
20 | |||
21 | if test x$ipv6 = xtrue; then | ||
22 | AC_CACHE_CHECK([for IPv6 support], ac_cv_ipv6_support, | ||
23 | - [AC_TRY_LINK([[ | ||
24 | -#include <sys/types.h> | ||
25 | + [AC_TRY_LINK([ #include <sys/types.h> | ||
26 | #include <sys/socket.h> | ||
27 | -#include <netinet/in.h> | ||
28 | - ]], [[ | ||
29 | -struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0; | ||
30 | - ]], [ac_cv_ipv6_support=yes], [ac_cv_ipv6_support=no])]) | ||
31 | +#include <netinet/in.h>], [struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0; ], | ||
32 | + [ac_cv_ipv6_support=yes], [ac_cv_ipv6_support=no])]) | ||
33 | |||
34 | if test "$ac_cv_ipv6_support" = yes; then | ||
35 | AC_DEFINE(HAVE_IPV6,1,[Whether to enable IPv6 support]) | ||
diff --git a/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.4.bb b/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.5.bb index 808d4528c..307919f77 100644 --- a/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.4.bb +++ b/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi_1.6.5.bb | |||
@@ -4,11 +4,9 @@ HOMEPAGE = "http://redmine.lighttpd.net/projects/spawn-fcgi" | |||
4 | LICENSE = "BSD-3-Clause" | 4 | LICENSE = "BSD-3-Clause" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" |
6 | 6 | ||
7 | SRC_URI = "http://download.lighttpd.net/spawn-fcgi/releases-1.6.x/spawn-fcgi-${PV}.tar.gz \ | 7 | SRC_URI = "http://download.lighttpd.net/spawn-fcgi/releases-1.6.x/spawn-fcgi-${PV}.tar.gz" |
8 | file://fix_configure_ipv6_test.patch" | ||
9 | 8 | ||
10 | SRC_URI[md5sum] = "e970de4efe8045c01dd76280f39901aa" | 9 | SRC_URI[sha256sum] = "a72d7bf7fb6d1a0acda89c93d4f060bf77a2dba97ddcfecd00f11e708f592c40" |
11 | SRC_URI[sha256sum] = "ab327462cb99894a3699f874425a421d934f957cb24221f00bb888108d9dd09e" | ||
12 | 10 | ||
13 | inherit autotools | 11 | inherit autotools |
14 | 12 | ||