summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2010-11-03 23:24:22 +0000
committerDavid Hankins <dhankins@isc.org>2010-11-03 23:24:22 +0000
commit9307331be7894c732347a9041dd9553bea155fde (patch)
tree1152a94a50002ab07174757106f03dd4171e1479
parent211bddfa31ea96fa570c21ea912c7ee2524168bd (diff)
downloadisc-dhcp-9307331be7894c732347a9041dd9553bea155fde.tar.gz
- ./configure on longer searches for -lcrypto to explicitly link against.
This fixes a bug where 'dhclient' would have shared library dependencies on '/usr/lib'. [ISC-Bugs #21967]
-rw-r--r--RELNOTES6
-rw-r--r--configure.ac4
2 files changed, 6 insertions, 4 deletions
diff --git a/RELNOTES b/RELNOTES
index 59fc6147..73c5a86b 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -51,6 +51,12 @@ The system has only been tested on Linux, FreeBSD, and Solaris, and
may not work on other platforms. Please report any problems and
suggested fixes to <dhcp-users@isc.org>.
+ Changes since 4.0.3
+
+- ./configure on longer searches for -lcrypto to explicitly link against.
+ This fixes a bug where 'dhclient' would have shared library dependencies
+ on '/usr/lib'. [ISC-Bugs #21967]
+
Changes since 4.0.3rc1
! Handle a relay forward message with an unspecified address in the
diff --git a/configure.ac b/configure.ac
index 5f26ffc7..312d93ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -257,10 +257,6 @@ AC_TRY_LINK(
# Look for optional headers.
AC_CHECK_HEADERS(sys/socket.h net/if_dl.h net/if6.h regex.h)
-# find an MD5 library
-AC_SEARCH_LIBS(MD5_Init, [crypto])
-AC_SEARCH_LIBS(MD5Init, [crypto])
-
# Solaris needs some libraries for functions
AC_SEARCH_LIBS(socket, [socket])
AC_SEARCH_LIBS(inet_ntoa, [nsl])