summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Sanin <aleksey@src.gnome.org>2003-06-16 16:24:33 +0000
committerAleksey Sanin <aleksey@src.gnome.org>2003-06-16 16:24:33 +0000
commit5af08ec80552a59cee4f9d7b9babaa513fa6e33b (patch)
treed9db94c7a1b8ed6565ed89af73539086a0db7da9
parent134846ea75f809d777b87c0e938d9e86d3177bba (diff)
downloadxmlsec1-5af08ec80552a59cee4f9d7b9babaa513fa6e33b.tar.gz
xmlsec1-5af08ec80552a59cee4f9d7b9babaa513fa6e33b.tar.bz2
xmlsec1-5af08ec80552a59cee4f9d7b9babaa513fa6e33b.zip
fixed NSS config problem (bug #115297)
-rw-r--r--ChangeLog4
-rw-r--r--configure.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3924cdb2..de124474 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jun 16 09:20:53 2003 Aleksey Sanin <aleksey@aleksey.com>
+
+ * configure.in: fixed NSS config bug #115297
+
Sun Jun 8 20:08:42 2003 Aleksey Sanin <aleksey@aleksey.com>
* configure.in: fix for 'make distclean'
diff --git a/configure.in b/configure.in
index 5caa1591..e744cf9b 100644
--- a/configure.in
+++ b/configure.in
@@ -599,7 +599,7 @@ else
if test "$NSPR_INCLUDES_FOUND" != "yes" -o "$NSPR_LIBS_FOUND" != "yes"
then
- if test "$NSPR_EXPLICIT" == "yes"
+ if test "$NSPR_EXPLICIT" = "yes"
then
AC_MSG_ERROR(You need atleast version 4.0 of NSPR as a pre-requisite for NSS in this version of $PACKAGE)
else
@@ -609,7 +609,7 @@ else
if test "$NSS_INCLUDES_FOUND" != "yes" -o "$NSS_LIBS_FOUND" != "yes"
then
- if test "$NSS_EXPLICIT" == "yes"
+ if test "$NSS_EXPLICIT" = "yes"
then
AC_MSG_ERROR(You need atleast version 3.2 of NSS for this version of $PACKAGE)
else