diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-29 13:27:12 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-29 13:27:12 +0200 |
commit | 927868e8b93f508fe89ee82f618f4a1761366f70 (patch) | |
tree | e8475909f5620c438e1018689b74da7582e58bb6 /js/src/old-configure.in | |
parent | fbeee7692b740c1020ba115f497c4325c3ff8f61 (diff) | |
download | UXP-927868e8b93f508fe89ee82f618f4a1761366f70.tar UXP-927868e8b93f508fe89ee82f618f4a1761366f70.tar.gz UXP-927868e8b93f508fe89ee82f618f4a1761366f70.tar.lz UXP-927868e8b93f508fe89ee82f618f4a1761366f70.tar.xz UXP-927868e8b93f508fe89ee82f618f4a1761366f70.zip |
Move --enable-tests out of Python configure and flip the default.
Diffstat (limited to 'js/src/old-configure.in')
-rw-r--r-- | js/src/old-configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/old-configure.in b/js/src/old-configure.in index 7432ab9e2..162a071d7 100644 --- a/js/src/old-configure.in +++ b/js/src/old-configure.in @@ -1534,6 +1534,14 @@ MOZ_ARG_ENABLE_STRING(ui-locale, AC_SUBST(MOZ_UI_LOCALE) dnl ======================================================== +dnl Build the tests? +dnl ======================================================== +MOZ_ARG_ENABLE_BOOL(tests, +[ --enable-tests Build test libraries & programs], + ENABLE_TESTS=1, + ENABLE_TESTS= ) + +dnl ======================================================== dnl = dnl = Module specific options dnl = @@ -2091,6 +2099,8 @@ AC_SUBST(MOZ_DEBUG_LDFLAGS) AC_SUBST(WARNINGS_AS_ERRORS) AC_SUBST(LIBICONV) +AC_SUBST(ENABLE_TESTS) + AC_SUBST(ENABLE_STRIP) AC_SUBST(PKG_SKIP_STRIP) AC_SUBST(INCREMENTAL_LINKER) |