Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-05-08 13:39:53 +0400
committerIgor Sysoev <igor@sysoev.ru>2009-05-08 13:39:53 +0400
commitf794318d6023a06654ba71626db295d0715c4cad (patch)
tree419fa1d0e6d4a18901de0aeea3cba0de5eddacc1 /auto/lib/openssl
parent225d47185ae261f6b296f699b31fae1c275aaac7 (diff)
test whether libdl is required for dynamic linking:
Solaris 10 has dlopen()/etc. in libc
Diffstat (limited to 'auto/lib/openssl')
-rw-r--r--auto/lib/openssl/conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/lib/openssl/conf b/auto/lib/openssl/conf
index 8e88bd497..ba016481d 100644
--- a/auto/lib/openssl/conf
+++ b/auto/lib/openssl/conf
@@ -31,7 +31,7 @@ if [ $OPENSSL != NONE ]; then
case "$NGX_SYSTEM" in
SunOS|Linux)
- CORE_LIBS="$CORE_LIBS -ldl"
+ CORE_LIBS="$CORE_LIBS $NGX_LIBDL"
;;
esac
@@ -72,7 +72,7 @@ else
case "$NGX_SYSTEM" in
SunOS)
- CORE_LIBS="$CORE_LIBS -ldl"
+ CORE_LIBS="$CORE_LIBS $NGX_LIBDL"
;;
esac
fi