diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 8ba09cb..856f3aa 100644 --- a/configure.in +++ b/configure.in | |||
@@ -337,6 +337,14 @@ if test "$FOUNDINCLUDE" = "no"; then | |||
337 | CPPFLAGS="$_SAVEDCPPFLAGS" | 337 | CPPFLAGS="$_SAVEDCPPFLAGS" |
338 | fi | 338 | fi |
339 | 339 | ||
340 | dnl *** The following block comes from wget configure.ac *** | ||
341 | dnl Unfortunately, as of this writing (OpenSSL 0.9.6), the libcrypto | ||
342 | dnl shared library doesn't record its dependency on libdl, so we | ||
343 | dnl need to check for it ourselves so we won't fail to link due to a | ||
344 | dnl lack of -ldl. Most OSes use dlopen(), but HP-UX uses | ||
345 | dnl shl_load(). | ||
346 | AC_CHECK_LIB(dl,dlopen) | ||
347 | AC_CHECK_LIB(dl,shl_load) | ||
340 | 348 | ||
341 | dnl openssl detection/configuration | 349 | dnl openssl detection/configuration |
342 | if ! test x"$with_openssl" = x"no"; then | 350 | if ! test x"$with_openssl" = x"no"; then |