aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/neon
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-24 22:43:12 +0200
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-24 22:43:12 +0200
commitd75c48bf8e10517554c1b1df0858c7ef75198325 (patch)
treeaeabba943e53cb528909dcb69d9d82cffa2f49e7 /recipes/neon
parentd996fe1d333b28a527dbea75d64221c89563e63b (diff)
downloadopenembedded-d75c48bf8e10517554c1b1df0858c7ef75198325.tar.gz
neon : moved unused files to obsolete dir
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/neon')
-rw-r--r--recipes/neon/files/no-func-checks.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes/neon/files/no-func-checks.patch b/recipes/neon/files/no-func-checks.patch
deleted file mode 100644
index 46ca24398e..0000000000
--- a/recipes/neon/files/no-func-checks.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- neon-0.24.7/macros/neon.m4.old 2005-02-24 16:28:01 +00:00
-+++ neon-0.24.7/macros/neon.m4 2005-02-24 16:40:17 +00:00
-@@ -508,26 +508,9 @@
- # Enable getaddrinfo() support only if all the necessary functions
- # are found.
- ne_enable_gai=yes
--NE_CHECK_FUNCS(getaddrinfo gai_strerror inet_ntop,,[ne_enable_gai=no; break])
--if test $ne_enable_gai = yes; then
-- AC_DEFINE(USE_GETADDRINFO, 1, [Define if getaddrinfo() should be used])
-- AC_CACHE_CHECK([for working AI_ADDRCONFIG], [ne_cv_gai_addrconfig], [
-- AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <netdb.h>],
--[struct addrinfo hints = {0}, *result;
--hints.ai_flags = AI_ADDRCONFIG;
--if (getaddrinfo("localhost", NULL, &hints, &result) != 0) return 1;])],
-- ne_cv_gai_addrconfig=yes, ne_cv_gai_addrconfig=no)])
-- if test $ne_cv_gai_addrconfig = yes; then
-- AC_DEFINE(USE_GAI_ADDRCONFIG, 1, [Define if getaddrinfo supports AI_ADDRCONFIG])
-- fi
--else
-- # Checks for non-getaddrinfo() based resolver interfaces.
-- NE_SEARCH_LIBS(hstrerror, resolv,,[:])
-- NE_CHECK_FUNCS(hstrerror)
-- # Older Unixes don't declare h_errno.
-- AC_CHECK_DECL(h_errno,,,[#define _XOPEN_SOURCE_EXTENDED 1
--#include <netdb.h>])
--fi
-+ne_cv_gai_addrconfig=yes
-+AC_DEFINE(USE_GETADDRINFO, 1, [Define if getaddrinfo() should be used])
-+AC_DEFINE(USE_GAI_ADDRCONFIG, 1, [Define if getaddrinfo supports AI_ADDRCONFIG])
-
- AC_CHECK_MEMBERS(struct tm.tm_gmtoff,,
- AC_MSG_WARN([no timezone handling in date parsing on this platform]),