
git-svn-id: file:///svn/pkg-evolution/experimental/evolution@2417 ed03ce00-e4f4-0310-9448-ee38221cb277
20 lines
1.0 KiB
Diff
20 lines
1.0 KiB
Diff
Author: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
|
|
Description: Fix the NSS libdir to add a "/nss"
|
|
That variable is only used to point to the directory in which nssckbi (the
|
|
built-in certificate store of NSS) lives, and it's actually under libdir/nss
|
|
rather than directly under libdir.
|
|
|
|
Index: evolution-3.8.5/configure.ac
|
|
===================================================================
|
|
--- evolution-3.8.5.orig/configure.ac 2013-09-03 00:31:16.308360481 +0200
|
|
+++ evolution-3.8.5/configure.ac 2013-09-03 00:31:16.304360418 +0200
|
|
@@ -667,7 +667,7 @@
|
|
fi
|
|
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`/nss",[Define to the full path of mozilla nss library])
|
|
MANUAL_NSPR_CFLAGS=""
|
|
MANUAL_NSPR_LIBS=""
|
|
MANUAL_NSS_CFLAGS=""
|