aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-11 18:11:00 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-11 18:11:00 +0800
commit9acafe39eb468bea91367555af7cb19cbcd4007f (patch)
treeb1edf7608c7c88479f69f636076af5e20623b030
parent9bc605a5d4c6036f35b354cd3a1275f60c48431c (diff)
downloadgsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar.gz
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar.bz2
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar.lz
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar.xz
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.tar.zst
gsoc2013-evolution-9acafe39eb468bea91367555af7cb19cbcd4007f.zip
Enlose the computed value of MOZILLA_NSS_LIB_DIR with quotes as this will
2006-01-11 Harish Krishnaswamy <kharish@novell.com> * configure.in: Enlose the computed value of MOZILLA_NSS_LIB_DIR with quotes as this will be used in the code as a string constant. svn path=/trunk/; revision=31133
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 14d9604020..87d094a436 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-11 Harish Krishnaswamy <kharish@novell.com>
+
+ * configure.in: Enlose the computed value of MOZILLA_NSS_LIB_DIR
+ with quotes as this will be used in the code as a string constant.
+
2006-01-09 Simon Zheng <simon.zheng@sun.com>
* configure.in: Add the macro MOZILLA_NSS_LIB_DIR to store mozilla
diff --git a/configure.in b/configure.in
index 81ee5eddeb..874b32d8c2 100644
--- a/configure.in
+++ b/configure.in
@@ -755,7 +755,7 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do
mozilla_nss="mozilla-nss"
AC_DEFINE(HAVE_NSS,1,[Define if you have NSS])
AC_DEFINE(HAVE_SSL,1,[Define if you have a supported SSL library])
- AC_DEFINE_UNQUOTED(MOZILLA_NSS_LIB_DIR,`$PKG_CONFIG --variable=libdir mozilla-nss`,[Define to the full path of mozilla nss library])
+ AC_DEFINE_UNQUOTED(MOZILLA_NSS_LIB_DIR,"`$PKG_CONFIG --variable=libdir mozilla-nss`",[Define to the full path of mozilla nss library])
MANUAL_NSPR_CFLAGS=""
MANUAL_NSPR_LIBS=""
MANUAL_NSS_CFLAGS=""