diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-19 23:01:29 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-19 23:01:29 +0100 |
commit | 9bf01b48cad6b6295f0c27b283972d0b406a27ed (patch) | |
tree | 0aa73b5f88db2ac0fc6698076606f67b192997a3 /old-configure.in | |
parent | 093748139cb34060a1b8d2e2b715199a9de3c482 (diff) | |
download | uxp-9bf01b48cad6b6295f0c27b283972d0b406a27ed.tar.gz |
Issue mcp-graveyard/UXP#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.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/old-configure.in b/old-configure.in index 1a2c324866..86cf2ae181 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 |