diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-02-11 07:11:26 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-02-11 07:11:26 +0800 |
commit | 4fefe275e3f86d25eb58461e085e86728b2c5425 (patch) | |
tree | b1b227af9a9046ce0393b63a27e013da6ef187b2 /configure.ac | |
parent | da3e75ecba1dbc62ee1f6c9e1970f4c140fbef0d (diff) | |
download | gsoc2013-epiphany-4fefe275e3f86d25eb58461e085e86728b2c5425.tar.gz gsoc2013-epiphany-4fefe275e3f86d25eb58461e085e86728b2c5425.tar.zst gsoc2013-epiphany-4fefe275e3f86d25eb58461e085e86728b2c5425.zip |
Add check for nsIWalletService.h.
2005-02-11 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Add check for nsIWalletService.h.
* embed/mozilla/mozilla-embed-single.cpp:
Make sure the wallet store is secured.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index d3a506962..605ea8c51 100644 --- a/configure.ac +++ b/configure.ac @@ -471,11 +471,14 @@ dnl https://bugzilla.mozilla.org/show_bug.cgi?id=271068 if test "x$flavour" = "xmozilla"; then AC_CHECK_FILE([$MOZILLA_INCLUDE_ROOT/nsIPassword.h], - [AC_DEFINE(HAVE_NSIPASSWORD_H, 1, + [AC_DEFINE([HAVE_NSIPASSWORD_H],[1], [Define if mozilla nsIPassword header is available])]) + AC_CHECK_FILE([$MOZILLA_INCLUDE_ROOT/wallet/nsIWalletService.h], + [AC_DEFINE([HAVE_NSIWALLETSERVICE_H],[1], + [Define if nsIWalletService.h is available])]) elif test "x$flavour" = "xtoolkit"; then AC_CHECK_FILE([$MOZILLA_INCLUDE_ROOT/passwordmgr/nsIPassword.h], - [AC_DEFINE(HAVE_NSIPASSWORD_H, 1, + [AC_DEFINE([HAVE_NSIPASSWORD_H],[1], [Define if mozilla nsIPassword header is available])]) fi |