diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-05 06:02:02 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-05 06:02:02 -0400 |
commit | 5593323410b2373ef7c4abcc4826d85e573a13fc (patch) | |
tree | a3d53a8160cdd50cf8eef491310af5c73ae3fe3b /old-configure.in | |
parent | 86f601589431c500a1a299000a3eac34d5b0247d (diff) | |
download | UXP-5593323410b2373ef7c4abcc4826d85e573a13fc.tar UXP-5593323410b2373ef7c4abcc4826d85e573a13fc.tar.gz UXP-5593323410b2373ef7c4abcc4826d85e573a13fc.tar.lz UXP-5593323410b2373ef7c4abcc4826d85e573a13fc.tar.xz UXP-5593323410b2373ef7c4abcc4826d85e573a13fc.zip |
Take the following project_flags out of moz.configure: and put them back into old-configure
MOZ_PLACES
MOZ_SOCIAL
MOZ_SERVICES_HEALTHREPORT
MOZ_SERVICES_SYNC
MOZ_SERVICES_CLOUDSYNC
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/old-configure.in b/old-configure.in index e0d96f637..7c61ebf74 100644 --- a/old-configure.in +++ b/old-configure.in @@ -2312,6 +2312,11 @@ MOZ_BINARY_EXTENSIONS= MOZ_JETPACK=1 MOZ_DEVTOOLS_SERVER=1 MOZ_DEVTOOLS= +MOZ_PLACES=1 +MOZ_SOCIAL=1 +MOZ_SERVICES_HEALTHREPORT=1 +MOZ_SERVICES_SYNC=1 +MOZ_SERVICES_CLOUDSYNC=1 case "$target_os" in mingw*) @@ -5254,6 +5259,43 @@ if test "$ENABLE_MARIONETTE"; then fi dnl ======================================================== +dnl = +dnl = Miscellaneous (former toolkit/moz.configure) +dnl = +dnl ======================================================== + +dnl Build Places if required +AC_SUBST(MOZ_PLACES) +if test "$MOZ_PLACES"; then + AC_DEFINE(MOZ_PLACES) +fi + +dnl Build SocialAPI if required +AC_SUBST(MOZ_SOCIAL) +if test "$MOZ_SOCIAL"; then + AC_DEFINE(MOZ_SOCIAL) +fi + +dnl Build Firefox Health Reporter Service +AC_SUBST(MOZ_SERVICES_HEALTHREPORT) +if test -n "$MOZ_SERVICES_HEALTHREPORT"; then + AC_DEFINE(MOZ_SERVICES_HEALTHREPORT) +fi + +dnl Build Sync Services if required +AC_SUBST(MOZ_SERVICES_SYNC) +if test -n "$MOZ_SERVICES_SYNC"; then + AC_DEFINE(MOZ_SERVICES_SYNC) +fi + +dnl Build Services/CloudSync if required +AC_SUBST(MOZ_SERVICES_CLOUDSYNC) +if test -n "$MOZ_SERVICES_CLOUDSYNC"; then + AC_DEFINE(MOZ_SERVICES_CLOUDSYNC) +fi + + +dnl ======================================================== if test "$MOZ_DEBUG" -o "$MOZ_DMD"; then MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS= fi |