diff options
author | Kamil Dudka <kdudka@redhat.com> | 2012-04-10 15:42:34 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2012-04-13 12:19:36 +0200 |
commit | 20cb12db8df6f956b885a5215bcffd425f2d34dd (patch) | |
tree | 536225711e4e73b9b52e11894cd4412a61f6c594 /configure.ac | |
parent | 42aa796150a580a0adff714c157d3b38b7672c7f (diff) |
nss: use NSS_InitContext() to initialize NSS if available
NSS_InitContext() was introduced in NSS 3.12.5 and helps to prevent
collisions on NSS initialization/shutdown with other libraries.
Bug: https://bugzilla.redhat.com/738456
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 541c74f3d..89f26f47a 100644 --- a/configure.ac +++ b/configure.ac @@ -2118,6 +2118,14 @@ if test "$OPENSSL_ENABLED" != "1" -a "$GNUTLS_ENABLED" != "1"; then if test "x$USE_NSS" = "xyes"; then AC_MSG_NOTICE([detected NSS version $version]) + dnl NSS_InitContext() was introduced in NSS 3.12.5 and helps to prevent + dnl collisions on NSS initialization/shutdown with other libraries + AC_CHECK_FUNC(NSS_InitContext, + [ + AC_DEFINE(HAVE_NSS_INITCONTEXT, 1, [if you have the NSS_InitContext function]) + AC_SUBST(HAVE_NSS_INITCONTEXT, [1]) + ]) + 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 |