summaryrefslogtreecommitdiffstats
path: root/old-configure.in
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-03-19 23:01:29 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-03-19 23:01:29 +0100
commit6f1d8fcce1f064447ccf778ea9925efae95bb5fc (patch)
tree0aa73b5f88db2ac0fc6698076606f67b192997a3 /old-configure.in
parent6cbe27d1498666c410a3df1fe81b725f9a4056a0 (diff)
downloadUXP-6f1d8fcce1f064447ccf778ea9925efae95bb5fc.tar
UXP-6f1d8fcce1f064447ccf778ea9925efae95bb5fc.tar.gz
UXP-6f1d8fcce1f064447ccf778ea9925efae95bb5fc.tar.lz
UXP-6f1d8fcce1f064447ccf778ea9925efae95bb5fc.tar.xz
UXP-6f1d8fcce1f064447ccf778ea9925efae95bb5fc.zip
Issue #1467 - Part 4: Rename NSS_SQLSTORE to MOZ_SECURITY_SQLSTORE.
Rename the build config option accordingly.
Diffstat (limited to 'old-configure.in')
-rw-r--r--old-configure.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/old-configure.in b/old-configure.in
index 1a2c32486..86cf2ae18 100644
--- a/old-configure.in
+++ b/old-configure.in
@@ -2156,11 +2156,11 @@ MOZ_JETPACK=1
MOZ_DEVTOOLS_SERVER=1
MOZ_DEVTOOLS=
MOZ_PLACES=1
+MOZ_SECURITY_SQLSTORE=
MOZ_SERVICES_HEALTHREPORT=1
MOZ_SERVICES_SYNC=1
MOZ_USERINFO=1
NSS_DISABLE_DBM=
-NSS_SQLSTORE=
MOZ_MAILNEWS=
MOZ_MAILNEWS_OAUTH2=
MOZ_LDAP_XPCOM=
@@ -2720,20 +2720,20 @@ AC_SUBST(NSS_DISABLE_DBM)
dnl =========================================================
dnl = NSS SQL storage format
dnl =========================================================
-MOZ_ARG_ENABLE_BOOL(nss-sqlstore,
-[ --enable-nss-sqlstore Enable the use of SQL storage for NSS],
- NSS_SQLSTORE=1,
- NSS_SQLSTORE=)
+MOZ_ARG_ENABLE_BOOL(security-sqlstore,
+[ --enable-security-sqlstore Enable the use of SQL storage for NSS],
+ MOZ_SECURITY_SQLSTORE=1,
+ MOZ_SECURITY_SQLSTORE=)
-if test -n "$NSS_DISABLE_DBM" -a -z "$NSS_SQLSTORE"; then
+if test -n "$NSS_DISABLE_DBM" -a -z "$MOZ_SECURITY_SQLSTORE"; then
AC_MSG_ERROR([DBM storage support is required if not using NSS SQL storage])
fi
-if test -n "$NSS_SQLSTORE"; then
- AC_DEFINE(NSS_SQLSTORE)
+if test -n "$MOZ_SECURITY_SQLSTORE"; then
+ AC_DEFINE(MOZ_SECURITY_SQLSTORE)
fi
-AC_SUBST(NSS_SQLSTORE)
+AC_SUBST(MOZ_SECURITY_SQLSTORE)
dnl =========================================================
dnl = Don't fold mailnews related comps into libXUL