From eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 Mon Sep 17 00:00:00 2001 From: Dave Cobbley Date: Tue, 14 Aug 2018 10:05:37 -0700 Subject: [Subtree] Removing import-layers directory As part of the move to subtrees, need to bring all the import layers content to the top level. Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f Signed-off-by: Dave Cobbley Signed-off-by: Brad Bishop --- .../spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 meta-openembedded/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch (limited to 'meta-openembedded/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch') diff --git a/meta-openembedded/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch b/meta-openembedded/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch new file mode 100644 index 000000000..9409dd2b1 --- /dev/null +++ b/meta-openembedded/meta-webserver/recipes-support/spawn-fcgi/spawn-fcgi-1.6.4/fix_configure_ipv6_test.patch @@ -0,0 +1,35 @@ +Testing for IPv6 support got broken by configure.ac changes in 1.6.4 +As a temp workaround, revert back to the 1.6.3 version. + +Upstream-Status: Pending + +--- spawn-fcgi-1.6.4/configure.ac ++++ spawn-fcgi-1.6.3/configure.ac +@@ -66,8 +47,8 @@ + # Check for IPv6 support + + AC_ARG_ENABLE(ipv6, +- AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), +- [case "${enableval}" in ++ AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), ++ [case "${enableval}" in + yes) ipv6=true ;; + no) ipv6=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-ipv6) ;; +@@ -75,13 +56,10 @@ + + if test x$ipv6 = xtrue; then + AC_CACHE_CHECK([for IPv6 support], ac_cv_ipv6_support, +- [AC_TRY_LINK([[ +-#include ++ [AC_TRY_LINK([ #include + #include +-#include +- ]], [[ +-struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0; +- ]], [ac_cv_ipv6_support=yes], [ac_cv_ipv6_support=no])]) ++#include ], [struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0; ], ++ [ac_cv_ipv6_support=yes], [ac_cv_ipv6_support=no])]) + + if test "$ac_cv_ipv6_support" = yes; then + AC_DEFINE(HAVE_IPV6,1,[Whether to enable IPv6 support]) -- cgit v1.2.1