diff options
-rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch | 37 | ||||
-rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb | 1 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch b/meta/recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch new file mode 100644 index 0000000000..2d3af9db0b --- /dev/null +++ b/meta/recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch | |||
@@ -0,0 +1,37 @@ | |||
1 | From 501543b3ef715488a142e3d301ff2733aa33eec7 Mon Sep 17 00:00:00 2001 | ||
2 | From: Awais Belal <awais_belal@mentor.com> | ||
3 | Date: Wed, 25 Oct 2017 21:00:05 +0500 | ||
4 | Subject: [PATCH] dhcp: correct the intention for xml2 lib search | ||
5 | |||
6 | A missing case breaks the build when libxml2 is | ||
7 | required and found appropriately. The third argument | ||
8 | to the function AC_SEARCH_LIB is action-if-found which | ||
9 | was mistakenly been used for the case where the library | ||
10 | is not found and hence breaks the configure phase | ||
11 | where it shoud actually pass. | ||
12 | We now pass on silently when action-if-found is | ||
13 | executed. | ||
14 | |||
15 | Upstream-Status: Pending | ||
16 | |||
17 | Signed-off-by: Awais Belal <awais_belal@mentor.com> | ||
18 | --- | ||
19 | configure.ac | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/configure.ac b/configure.ac | ||
23 | index bfe988a..f0459e6 100644 | ||
24 | --- a/configure.ac | ||
25 | +++ b/configure.ac | ||
26 | @@ -608,7 +608,7 @@ AC_ARG_WITH(libxml2, | ||
27 | with_libxml2="$withval", with_libxml2="no") | ||
28 | |||
29 | if test x$with_libxml2 != xno; then | ||
30 | - AC_SEARCH_LIBS(xmlTextWriterStartElement, [xml2], | ||
31 | + AC_SEARCH_LIBS(xmlTextWriterStartElement, [xml2],, | ||
32 | [if test x$with_libxml2 != xauto; then | ||
33 | AC_MSG_FAILURE([*** Cannot find xmlTextWriterStartElement with -lxml2 and libxml2 was requested]) | ||
34 | fi]) | ||
35 | -- | ||
36 | 2.11.1 | ||
37 | |||
diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb b/meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb index 4634a01b04..6615ae2555 100644 --- a/meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb +++ b/meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb | |||
@@ -11,6 +11,7 @@ SRC_URI += "file://0001-define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.pat | |||
11 | file://0009-remove-dhclient-script-bash-dependency.patch \ | 11 | file://0009-remove-dhclient-script-bash-dependency.patch \ |
12 | file://0010-build-shared-libs.patch \ | 12 | file://0010-build-shared-libs.patch \ |
13 | file://0011-Moved-the-call-to-isc_app_ctxstart-to-not-get-signal.patch \ | 13 | file://0011-Moved-the-call-to-isc_app_ctxstart-to-not-get-signal.patch \ |
14 | file://0012-dhcp-correct-the-intention-for-xml2-lib-search.patch \ | ||
14 | " | 15 | " |
15 | 16 | ||
16 | SRC_URI[md5sum] = "afa6e9b3eb7539ea048421a82c668adc" | 17 | SRC_URI[md5sum] = "afa6e9b3eb7539ea048421a82c668adc" |