diff options
-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", |