From: David Hankins Date: Wed, 3 Nov 2010 23:22:02 +0000 (+0000) Subject: - ./configure on longer searches for -lcrypto to explicitly link against. X-Git-Tag: v4_3_0a1~239 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d50c7219be89fa5c088ca6ce089fd77d0ad1dd0;p=thirdparty%2Fdhcp.git - ./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] --- diff --git a/RELNOTES b/RELNOTES index f4660b10d..b2b9d935a 100644 --- a/RELNOTES +++ b/RELNOTES @@ -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 870736901..76616c06b 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])