diff options
-rw-r--r-- | RELNOTES | 3 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -134,6 +134,9 @@ work on other platforms. Please report any problems and suggested fixes to server to crash. Thanks to a report from John Gibbons. [ISC-Bugs #21992] CERT: VU#102047 CVE: CVE-2010-3611 +- ./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.2.0b2 diff --git a/configure.ac b/configure.ac index 87073690..76616c06 100644 --- a/configure.ac +++ b/configure.ac @@ -425,10 +425,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]) |