From be411661b6442309d09878ccdb82734c870c1bd4 Mon Sep 17 00:00:00 2001 From: "ftang%netscape.com" Date: Wed, 9 May 2001 21:21:37 +0000 Subject: [PATCH] fix 75982. turn IBMBIDI on by default r=ftang sr=erik in car pool --- configure.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 0b843be9dfa..104848c6998 100644 --- a/configure.in +++ b/configure.in @@ -3052,11 +3052,11 @@ MOZ_ARG_DISABLE_BOOL(tests, [ --disable-tests Do not build tests libraries & programs], ENABLE_TESTS= ) -dnl bi-directional support off by default -IBMBIDI= -MOZ_ARG_ENABLE_BOOL(bidi, -[ --enable-bidi Enable bi-directional support], - IBMBIDI=1) +dnl bi-directional support on by default +IBMBIDI=1 +MOZ_ARG_DISABLE_BOOL(bidi, +[ --disable-bidi Disable bi-directional support], + IBMBIDI= ) if test "$IBMBIDI"; then AC_DEFINE(IBMBIDI) fi