summaryrefslogtreecommitdiffstats
path: root/package/ntp
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-05-20 23:13:01 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-05-20 23:13:34 +0200
commit484d15dea6f3175eb5b999592a7f4bb9d101c68a (patch)
tree2ccfab03eba35af77cd406a995529fd86eb38d5a /package/ntp
parentc36e3f389695ef237b8c71aefeaf2d1b44c8034e (diff)
downloadbuildroot-novena-484d15dea6f3175eb5b999592a7f4bb9d101c68a.tar.gz
buildroot-novena-484d15dea6f3175eb5b999592a7f4bb9d101c68a.zip
ntp: fix build without ipv6 support
Closes #1693 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/ntp')
-rw-r--r--package/ntp/ntp-optional-ipv6.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/ntp/ntp-optional-ipv6.patch b/package/ntp/ntp-optional-ipv6.patch
new file mode 100644
index 000000000..20d6edfad
--- /dev/null
+++ b/package/ntp/ntp-optional-ipv6.patch
@@ -0,0 +1,24 @@
+[PATCH] ntpd: fix build without ipv6 support
+
+ntp_io.c was checkin the non-existing DISABLE_IPV6 define rather
+than WANT_IPV6 as defined in config.h, breaking the build if
+the toolchain doesn't have ipv6 support.
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+---
+ ntpd/ntp_io.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: ntp-4.2.4p5/ntpd/ntp_io.c
+===================================================================
+--- ntp-4.2.4p5.orig/ntpd/ntp_io.c
++++ ntp-4.2.4p5/ntpd/ntp_io.c
+@@ -55,7 +55,7 @@
+ * Set up some macros to look for IPv6 and IPv6 multicast
+ */
+
+-#if defined(ISC_PLATFORM_HAVEIPV6) && !defined(DISABLE_IPV6)
++#if defined(ISC_PLATFORM_HAVEIPV6) && defined(WANT_IPV6)
+
+ #define INCLUDE_IPV6_SUPPORT
+