Fixing backwards logic. Bug 194308.

git-svn-id: svn://10.0.0.236/trunk@185532 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%meer.net
2005-12-01 18:29:40 +00:00
parent 044b9adc42
commit dadb99f898

View File

@@ -4830,8 +4830,8 @@ dnl = Drop XPCOM Obsolete library
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(xpcom-obsolete,
[ --disable-xpcom-obsolete Disable XPCOM Obsolete Library],
MOZ_NO_XPCOM_OBSOLETE=,
MOZ_NO_XPCOM_OBSOLETE=1)
MOZ_NO_XPCOM_OBSOLETE=1,
MOZ_NO_XPCOM_OBSOLETE=)
if test -n "$MOZ_NO_XPCOM_OBSOLETE"; then
if test -n "$MOZ_XPINSTALL"; then
@@ -4848,8 +4848,8 @@ dnl = Disable Fast Load
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(xpcom-fastload,
[ --disable-xpcom-fastload Disable XPCOM fastload support],
MOZ_NO_FAST_LOAD=,
MOZ_NO_FAST_LOAD=1)
MOZ_NO_FAST_LOAD=1,
MOZ_NO_FAST_LOAD=)
AC_SUBST(MOZ_NO_FAST_LOAD)