aboutsummaryrefslogtreecommitdiffstats
path: root/packages/davfs2/files
diff options
context:
space:
mode:
authorMustafa Yuecel <yuecelm@ee.ethz.ch>2006-03-16 01:21:45 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-03-16 01:21:45 +0000
commit57d2d9cd5740730d0d29694b74e71e93ddc0221b (patch)
tree539cac167b7db73db94398ab3cf507fbe1a98d54 /packages/davfs2/files
parent19395368f9bfddd2245ff5c94fc8ba3756f3cccf (diff)
downloadopenembedded-57d2d9cd5740730d0d29694b74e71e93ddc0221b.tar.gz
davfs2-0.2.7: reactivate removed patch and move patches to the relevant version
Diffstat (limited to 'packages/davfs2/files')
-rw-r--r--packages/davfs2/files/no-func-checks.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/packages/davfs2/files/no-func-checks.patch b/packages/davfs2/files/no-func-checks.patch
deleted file mode 100644
index 46ca24398e..0000000000
--- a/packages/davfs2/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]),