From: David Hankins Date: Wed, 3 Nov 2010 23:22:38 +0000 (+0000) Subject: - ./configure on longer searches for -lcrypto to explicitly link against. X-Git-Tag: v4_2_1b1~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6282f53736a5ed4c267adac759fe8fe2924bfdd6;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 1b93e32ed..ac1780c8f 100644 --- a/RELNOTES +++ b/RELNOTES @@ -124,6 +124,10 @@ 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.0rc1 - Documentation cleanup covering multiple tickets 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])