diff options
author | Martin Banky <martin.banky@gmail.com> | 2010-09-20 14:54:23 -0700 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-09-21 21:25:54 +0200 |
commit | a05bb5815d3e311219560685ee0e165a824292ab (patch) | |
tree | fa6c97d96308f5c6acc2ba03390eb07d8b9aa94f /package/ntp/ntp-optional-ipv6.patch | |
parent | 6b899a43bae232b80eb57dfb6e373dc3971f8fed (diff) |
ntp: convert to autotargets and bump to 4.2.6p2
Also added additional options for ntp and fixed a build issue when
IPv6 support is not available.
[Peter: small tweaks]
Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/ntp/ntp-optional-ipv6.patch')
-rw-r--r-- | package/ntp/ntp-optional-ipv6.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/ntp/ntp-optional-ipv6.patch b/package/ntp/ntp-optional-ipv6.patch deleted file mode 100644 index 20d6edfad..000000000 --- a/package/ntp/ntp-optional-ipv6.patch +++ /dev/null @@ -1,24 +0,0 @@ -[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 - |