diff options
author | Anders Carlsson <andersca@gnome.org> | 2003-11-28 08:32:07 +0800 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2003-11-28 08:32:07 +0800 |
commit | 2c25bb555493800640aea747ca293828b2886c76 (patch) | |
tree | 3e9c6c8c7ebc361f7b4a9688513c099085cda637 | |
parent | 789b133c924c92e6e9f36d53b5908ee5d881d6f4 (diff) | |
download | gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar.gz gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar.bz2 gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar.lz gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar.xz gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.tar.zst gsoc2013-evolution-2c25bb555493800640aea747ca293828b2886c76.zip |
Look for mozilla-nss.pc, not mozilla.pc.
2003-11-28 Anders Carlsson <andersca@gnome.org>
* configure.in: Look for mozilla-nss.pc, not mozilla.pc.
svn path=/trunk/; revision=23500
-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)" |