bug 336178, turn off building accessibility by default on mac.

r=aaronlev
This commit is contained in:
hwaara%gmail.com 2006-05-11 19:39:59 +00:00
Родитель ee68a974ed
Коммит e3a92df940
1 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -4302,7 +4302,6 @@ dnl ========================================================
MOZ_ARG_HEADER(Application) MOZ_ARG_HEADER(Application)
ACCESSIBILITY=1
BUILD_MODULES=all BUILD_MODULES=all
BUILD_STATIC_LIBS= BUILD_STATIC_LIBS=
ENABLE_TESTS=1 ENABLE_TESTS=1
@ -4377,6 +4376,16 @@ SUNCTL=
JS_STATIC_BUILD= JS_STATIC_BUILD=
XPC_IDISPATCH_SUPPORT= XPC_IDISPATCH_SUPPORT=
case "$target_os" in
darwin*)
ACCESSIBILITY=
;;
*)
ACCESSIBILITY=1
;;
esac
case "$target_os" in case "$target_os" in
msvc*|mks*|cygwin*|mingw*) msvc*|mks*|cygwin*|mingw*)
if test -z "$GNU_CC"; then if test -z "$GNU_CC"; then
@ -5146,10 +5155,11 @@ fi
dnl ======================================================== dnl ========================================================
dnl accessibility support on by default dnl accessibility support on by default on all platforms
dnl except OS X.
dnl ======================================================== dnl ========================================================
MOZ_ARG_DISABLE_BOOL(accessibility, MOZ_ARG_DISABLE_BOOL(accessibility,
[ --disable-accessibility Disable accessibility support], [ --disable-accessibility Disable accessibility support (off by default on OS X)],
ACCESSIBILITY=, ACCESSIBILITY=,
ACCESSIBILITY=1 ) ACCESSIBILITY=1 )
if test "$ACCESSIBILITY"; then if test "$ACCESSIBILITY"; then