diff options
author | Tushar Gohad <tgohad@mvista.com> | 2009-07-29 22:06:39 -0700 |
---|---|---|
committer | Chris Larson <clarson@mvista.com> | 2009-08-26 22:45:10 -0700 |
commit | 0b3b3824dce51d6d9585001b1e4f899bde36e95b (patch) | |
tree | 63914203ddb8b65312e9dbcfbffd565bbb33782d /recipes/tcpdump/files | |
parent | e77453c96bcff78774c35efee8c0a9683fc552ba (diff) |
tcpdump: obey distro for the ipv6 support
When cross compiling, get rid of the AC_TRY_RUN
style checks for ipv6, obey DISTRO_FEATURES.
Signed-off-by: Tushar Gohad <tgohad@mvista.com>
Signed-off-by: Chris Larson <clarson@mvista.com>
Diffstat (limited to 'recipes/tcpdump/files')
-rw-r--r-- | recipes/tcpdump/files/ipv6-cross.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/recipes/tcpdump/files/ipv6-cross.patch b/recipes/tcpdump/files/ipv6-cross.patch new file mode 100644 index 0000000000..54e20ae9eb --- /dev/null +++ b/recipes/tcpdump/files/ipv6-cross.patch @@ -0,0 +1,37 @@ +Index: tcpdump-4.0.0/configure.in +=================================================================== +--- tcpdump-4.0.0.orig/configure.in ++++ tcpdump-4.0.0/configure.in +@@ -160,8 +160,9 @@ yes) AC_MSG_RESULT(yes) + ipv6=no + ;; + esac ], +- +- AC_TRY_RUN([ /* AF_INET6 available check */ ++[ ++ if test x"$cross_compiling" != "xyes"; then ++ AC_TRY_RUN([ /* AF_INET6 avalable check */ + #include <sys/types.h> + #include <sys/socket.h> + main() +@@ -180,7 +181,10 @@ main() + ipv6=no], + [ AC_MSG_RESULT(no) + ipv6=no] +-)) ++ ) ++else ++ AC_MSG_FAILURE([Unable to check for ipv6 when crosscompiling, please specify.]) ++fi]) + + ipv6type=unknown + ipv6lib=none +@@ -295,7 +299,7 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != + fi + + +-if test "$ipv6" = "yes"; then ++if test x"$cross_compiling" != "xyes" -a "$ipv6" = "yes"; then + # + # XXX - on Tru64 UNIX 5.1, there is no "getaddrinfo()" + # function in libc; there are "ngetaddrinfo()" and |