diff options
author | Simon Zheng <simon.zheng@sun.com> | 2006-01-11 12:32:40 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2006-01-11 12:32:40 +0800 |
commit | 8c075ee8ff0c1801bf80ff69423a68c40469a4d7 (patch) | |
tree | 78e499fc5dccdc8614bc2ed6500b1d0a761711fc | |
parent | 8c9387a852d98b271afae4c93e21676851ab118c (diff) | |
download | gsoc2013-evolution-8c075ee8ff0c1801bf80ff69423a68c40469a4d7.tar.gz gsoc2013-evolution-8c075ee8ff0c1801bf80ff69423a68c40469a4d7.tar.zst gsoc2013-evolution-8c075ee8ff0c1801bf80ff69423a68c40469a4d7.zip |
Fix for 325748. Add an search path which can be automatically retrieved
2006-01-11 Simon Zheng <simon.zheng@sun.com>
Fix for 325748.
* lib/e-cert-db.c: (install_loadable_roots): Add an search path
which can be automatically retrieved when running configure.
svn path=/trunk/; revision=31128
-rw-r--r-- | smime/ChangeLog | 6 | ||||
-rw-r--r-- | smime/lib/e-cert-db.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog index dfbb0f09dd..3d2da413b8 100644 --- a/smime/ChangeLog +++ b/smime/ChangeLog @@ -1,3 +1,9 @@ +2006-01-11 Simon Zheng <simon.zheng@sun.com> + + Fix for 325748. + * lib/e-cert-db.c: (install_loadable_roots): Add an search path + which can be automatically retrieved when running configure. + 2006-01-10 Simon Zheng <simon.zheng@sun.com> * lib/e-cert.c:use e_utf8_strftime() in evolution-data-server/ diff --git a/smime/lib/e-cert-db.c b/smime/lib/e-cert-db.c index 3104d7a716..5e25c7cd0c 100644 --- a/smime/lib/e-cert-db.c +++ b/smime/lib/e-cert-db.c @@ -273,6 +273,9 @@ install_loadable_roots (void) XXX yes this is gross. *sigh* */ char *paths_to_check[] = { +#ifdef MOZILLA_NSS_LIB_DIR + MOZILLA_NSS_LIB_DIR, +#endif "/usr/lib", "/usr/lib/mozilla", "/opt/mozilla/lib", |