diff options
| -rw-r--r-- | meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch | 37 | ||||
| -rw-r--r-- | meta/recipes-extended/iputils/iputils_s20151218.bb (renamed from meta/recipes-extended/iputils/iputils_s20121221.bb) | 7 |
2 files changed, 3 insertions, 41 deletions
diff --git a/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch b/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch deleted file mode 100644 index b9cd82ee88..0000000000 --- a/meta/recipes-extended/iputils/files/fix-build-command-line-argument-with-gnutls.patch +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | Upstream-Status: Backport | ||
| 2 | |||
| 3 | From 568e990d30fc7e9416e0a6f8c74ea5013921eaec Mon Sep 17 00:00:00 2001 | ||
| 4 | From: Arjan van de Ven <arjanvandeven@gmail.com> | ||
| 5 | Date: Wed, 16 Jan 2013 03:12:15 +0900 | ||
| 6 | Subject: [PATCH] ping6: Fix build command line argument with gnutls. | ||
| 7 | |||
| 8 | The ping6 command can use either openssl or gnutls... | ||
| 9 | and the Makefile has a bunch of setup for defining which of the two to use. | ||
| 10 | |||
| 11 | Unfortunately, the final -D define on the commandline to enable gnutls | ||
| 12 | inside the ping6.c file didn't actually make it onto the gcc | ||
| 13 | commandline. | ||
| 14 | This patch adds the $(DEF_CRYPTO) Makefile variable to fix this gap. | ||
| 15 | |||
| 16 | Signed-off-by: Arjan van de Ven <arjanvandeven@gmail.com> | ||
| 17 | Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | ||
| 18 | --- | ||
| 19 | Makefile | 2 +- | ||
| 20 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 21 | |||
| 22 | diff --git a/Makefile b/Makefile | ||
| 23 | index c62d9df..89249f5 100644 | ||
| 24 | --- a/Makefile | ||
| 25 | +++ b/Makefile | ||
| 26 | @@ -149,7 +149,7 @@ LIB_clockdiff = $(LIB_CAP) | ||
| 27 | DEF_ping_common = $(DEF_CAP) $(DEF_IDN) | ||
| 28 | DEF_ping = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) | ||
| 29 | LIB_ping = $(LIB_CAP) $(LIB_IDN) | ||
| 30 | -DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) | ||
| 31 | +DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) $(DEF_CRYPTO) | ||
| 32 | LIB_ping6 = $(LIB_CAP) $(LIB_IDN) $(LIB_RESOLV) $(LIB_CRYPTO) | ||
| 33 | |||
| 34 | ping: ping_common.o | ||
| 35 | -- | ||
| 36 | 1.7.2.5 | ||
| 37 | |||
diff --git a/meta/recipes-extended/iputils/iputils_s20121221.bb b/meta/recipes-extended/iputils/iputils_s20151218.bb index 49913d68bd..4c3523d425 100644 --- a/meta/recipes-extended/iputils/iputils_s20121221.bb +++ b/meta/recipes-extended/iputils/iputils_s20151218.bb | |||
| @@ -11,18 +11,17 @@ LIC_FILES_CHKSUM = "file://ping.c;beginline=1;endline=35;md5=f9ceb201733e9a6cf8f | |||
| 11 | file://arping.c;beginline=1;endline=11;md5=fe84301b5c2655c950f8b92a057fafa6 \ | 11 | file://arping.c;beginline=1;endline=11;md5=fe84301b5c2655c950f8b92a057fafa6 \ |
| 12 | file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 " | 12 | file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 " |
| 13 | 13 | ||
| 14 | DEPENDS = "gnutls docbook-utils-native sgmlspl-native libcap" | 14 | DEPENDS = "gnutls docbook-utils-native sgmlspl-native libcap libgcrypt" |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | SRC_URI = "http://www.skbuff.net/iputils/${BPN}-${PV}.tar.bz2 \ | 17 | SRC_URI = "http://www.skbuff.net/iputils/${BPN}-${PV}.tar.bz2 \ |
| 18 | file://debian/use_gethostbyname2.diff \ | 18 | file://debian/use_gethostbyname2.diff \ |
| 19 | file://debian/targets.diff \ | 19 | file://debian/targets.diff \ |
| 20 | file://nsgmls-path-fix.patch \ | 20 | file://nsgmls-path-fix.patch \ |
| 21 | file://fix-build-command-line-argument-with-gnutls.patch \ | ||
| 22 | " | 21 | " |
| 23 | 22 | ||
| 24 | SRC_URI[md5sum] = "6072aef64205720dd1893b375e184171" | 23 | SRC_URI[md5sum] = "8aaa7395f27dff9f57ae016d4bc753ce" |
| 25 | SRC_URI[sha256sum] = "450f549fc5b620c23c5929aa6d54b7ddfc7ee1cb1e8efdc5e8bb21d8d0c5319f" | 24 | SRC_URI[sha256sum] = "549f58d71951e52b46595829134d4e330642f522f50026917fadc349a54825a1" |
| 26 | 25 | ||
| 27 | UPSTREAM_CHECK_REGEX = "iputils-(?P<pver>s\d+).tar" | 26 | UPSTREAM_CHECK_REGEX = "iputils-(?P<pver>s\d+).tar" |
| 28 | 27 | ||
