summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2012-08-24 12:15:34 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-25 14:46:57 +0100
commitc33cfc6a8058c195e805c8fabc201db0dca60843 (patch)
tree93388df466c1326136f93d0db27c77a2344f417c /meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch
parenta08e3856b8dc55c3acbf59d12ffa6f64381f8749 (diff)
downloadpoky-c33cfc6a8058c195e805c8fabc201db0dca60843.tar.gz
dhcp : upgrade to 4.2.4-P1
(From OE-Core rev: 5f68e2c4fb746ff798f9747776cc1f7620fb39dd) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch')
-rw-r--r--meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch b/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch
new file mode 100644
index 0000000000..57e10b0297
--- /dev/null
+++ b/meta/recipes-connectivity/dhcp/dhcp-4.2.4-P1/link-with-lcrypto.patch
@@ -0,0 +1,25 @@
1Author: Andrei Gherzan <andrei@gherzan.ro>
2Date: Thu Feb 2 23:59:11 2012 +0200
3
4From 4.2.0 final release, -lcrypto check was removed and we compile static libraries
5from bind that are linked to libcrypto. This is why i added a patch in order to add
6-lcrypto to LIBS.
7
8Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
9Upstream-Status: Pending
10
11Index: dhcp-4.2.3-P2-r0/dhcp-4.2.3-P2/configure.ac
12===================================================================
13--- dhcp-4.2.3-P2.orig/configure.ac 2012-02-02 18:04:20.843023196 +0200
14+++ dhcp-4.2.3-P2/configure.ac 2012-02-02 17:58:16.000000000 +0200
15@@ -456,6 +456,10 @@
16 # Look for optional headers.
17 AC_CHECK_HEADERS(sys/socket.h net/if_dl.h net/if6.h regex.h)
18
19+# find an MD5 library
20+AC_SEARCH_LIBS(MD5_Init, [crypto])
21+AC_SEARCH_LIBS(MD5Init, [crypto])
22+
23 # Solaris needs some libraries for functions
24 AC_SEARCH_LIBS(socket, [socket])
25 AC_SEARCH_LIBS(inet_ntoa, [nsl])