diff options
author | David Anders <dave123@abcsinc.com> | 2006-01-25 20:56:55 +0000 |
---|---|---|
committer | David Anders <dave123@abcsinc.com> | 2006-01-25 20:56:55 +0000 |
commit | e507951611b730e80e405aefcfb74307e107fc8a (patch) | |
tree | 4e66cf80cb57b35035dfbb8a6a244f4971ed3ef9 /package/bind/bind-cross-fix.patch | |
parent | 9f9e02025e1b904250d960d01ba9d441f7a4a638 (diff) | |
download | buildroot-novena-e507951611b730e80e405aefcfb74307e107fc8a.tar.gz buildroot-novena-e507951611b730e80e405aefcfb74307e107fc8a.zip |
add new package bind per case 0000507
Diffstat (limited to 'package/bind/bind-cross-fix.patch')
-rw-r--r-- | package/bind/bind-cross-fix.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/package/bind/bind-cross-fix.patch b/package/bind/bind-cross-fix.patch new file mode 100644 index 000000000..07a908467 --- /dev/null +++ b/package/bind/bind-cross-fix.patch @@ -0,0 +1,43 @@ +diff -Naur bind-9.3.1/configure bind/configure +--- bind-9.3.1/configure 2004-12-08 20:09:03.000000000 -0800 ++++ bind/configure 2005-09-09 16:06:50.000000000 -0700 +@@ -23678,11 +23678,9 @@ + echo "$as_me:$LINENO: checking for inet_ntop with IPv6 support" >&5 + echo $ECHO_N "checking for inet_ntop with IPv6 support... $ECHO_C" >&6 + if test "$cross_compiling" = yes; then +- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot run test program while cross compiling +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ echo "$as_me:$LINENO: result: assuming target platform has working inet_ntop" >&5 ++echo "${ECHO_T}assuming target platform has working inet_ntop" >&6 ++ ISC_PLATFORM_NEEDNTOP="#undef ISC_PLATFORM_NEEDNTOP" + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +diff -Naur bind-9.3.1/configure.in bind/configure.in +--- bind-9.3.1/configure.in 2004-12-08 20:07:10.000000000 -0800 ++++ bind/configure.in 2005-09-09 16:06:39.000000000 -0700 +@@ -1414,7 +1414,9 @@ + [AC_MSG_RESULT(no) + ISC_EXTRA_OBJS="$ISC_EXTRA_OBJS inet_ntop.$O" + ISC_EXTRA_SRCS="$ISC_EXTRA_SRCS inet_ntop.c" +- ISC_PLATFORM_NEEDNTOP="#define ISC_PLATFORM_NEEDNTOP 1"]) ++ ISC_PLATFORM_NEEDNTOP="#define ISC_PLATFORM_NEEDNTOP 1"], ++ [AC_MSG_RESULT(assuming target platform has working inet_ntop) ++ ISC_PLATFORM_NEEDNTOP="#undef ISC_PLATFORM_NEEDNTOP"]) + + + # On NetBSD 1.4.2 and maybe others, inet_pton() incorrectly accepts +--- bind-9.3.1/lib/dns/Makefile.in 2005-09-09 16:21:34.000000000 -0700 ++++ bind/lib/dns/Makefile.in 2005-09-09 16:28:16.000000000 -0700 +@@ -156,7 +156,7 @@ + ./gen -s ${srcdir} > code.h + + gen: gen.c +- ${CC} ${ALL_CFLAGS} ${LDFLAGS} -o $@ ${srcdir}/gen.c ${LIBS} ++ cc ${ALL_CFLAGS} -o $@ ${srcdir}/gen.c + + rbtdb64.@O@: rbtdb.c + |