diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2003-11-28 Anders Carlsson <andersca@gnome.org> + + * configure.in: Look for mozilla-nss.pc, not mozilla.pc. + 2003-11-26 JP Rosevear <jpr@ximian.com> * configure.in: make sure the mozilla .pc file exists before diff --git a/configure.in b/configure.in index 16aa6b98e9..fa8605bfbe 100644 --- a/configure.in +++ b/configure.in @@ -632,7 +632,7 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do check_manually="no" fi - if test "x${check_manually}" = "xno" && `$PKG_CONFIG --exists mozilla`; then + if test "x${check_manually}" = "xno" && `$PKG_CONFIG --exists mozilla-nss`; then PKG_CHECK_MODULES(NSS, mozilla-nss, have_nss="yes") if test "x${have_nss}" = "xyes"; then msg_ssl="yes (Mozilla NSS)" |