diff options
author | Alessandro Ghedini <alessandro@ghedini.me> | 2014-07-17 14:37:28 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2014-07-18 14:20:42 +0200 |
commit | c6e7cbb94e669b85d3eb8e015ec51d0072112133 (patch) | |
tree | 3b03a75a135a9ee7ede0cb80a7b4b711f753091e /configure.ac | |
parent | 12bf451ca4fed1c0a5cebada94bdb90fe2eb3c45 (diff) | |
download | curl-c6e7cbb94e669b85d3eb8e015ec51d0072112133.tar.gz |
build: link curl to NSS libraries when NSS support is enabled
This fixes a build failure on Debian caused by commit
24c3cdce88f39731506c287cb276e8bf4a1ce393.
Bug: http://curl.haxx.se/mail/lib-2014-07/0209.html
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c3cccfba0..b78f56d0e 100644 --- a/configure.ac +++ b/configure.ac @@ -2078,6 +2078,10 @@ if test "$curl_ssl_msg" = "$init_ssl_msg"; then if test "x$USE_NSS" = "xyes"; then AC_MSG_NOTICE([detected NSS version $version]) + dnl needed when linking the curl tool without USE_EXPLICIT_LIB_DEPS + NSS_LIBS=$addlib + AC_SUBST([NSS_LIBS]) + dnl when shared libs were found in a path that the run-time dnl linker doesn't search through, we need to add it to dnl LD_LIBRARY_PATH to prevent further configure tests to fail |