From 2256e406a418078c64087ea2cbf468186dcf5678 Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" Date: Sun, 31 Dec 2006 00:38:09 +0000 Subject: [PATCH] sroaming breaks firefox w/ extensions=all there was an a=benb this will be removed when bug 249343 is fixed --- configure.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.in b/configure.in index 9f12f1ae5802..0d0e65b41c00 100644 --- a/configure.in +++ b/configure.in @@ -5693,6 +5693,11 @@ if test `echo "$MOZ_EXTENSIONS" | grep -c spellcheck` -ne 0; then MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|spellcheck||g'` fi +if test -n "$MOZ_NO_XPCOM_OBSOLETE" && test `echo "$MOZ_EXTENSIONS" | grep -c sroaming` -ne 0; then + AC_MSG_WARN([Cannot currently build sroaming without xpcom obsolete -- bug 249343. Removing sroaming from MOZ_EXTENSIONS.]) + MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|sroaming||'` +fi + dnl Remove dupes MOZ_EXTENSIONS=`${PERL} ${srcdir}/build/unix/uniq.pl ${MOZ_EXTENSIONS}`