Bug 388920. EXTENSIONS_ALL broken since webservices was removed. r=ted.mielczarek

This commit is contained in:
sayrer%gmail.com 2007-07-20 19:24:10 +00:00
Родитель 67f83baba7
Коммит 47b2df4027
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -5419,6 +5419,12 @@ if test `echo "$MOZ_EXTENSIONS" | grep -c tridentprofile` -ne 0; then
MOZ_EXTENSIONS="$MOZ_EXTENSIONS tridentprofile" MOZ_EXTENSIONS="$MOZ_EXTENSIONS tridentprofile"
fi fi
dnl schema-validation requires webservices
if test -z "$MOZ_WEBSERVICES" && test `echo "$MOZ_EXTENSIONS" | grep -c schema-validation` -ne 0; then
AC_MSG_WARN([Cannot build schema-validation without webservices. Removing schema-validation from MOZ_EXTENSIONS.])
MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|schema-validation||g'`
fi
dnl xforms requires xtf and webservices and schema-validation dnl xforms requires xtf and webservices and schema-validation
if test -z "$MOZ_XTF" && test `echo "$MOZ_EXTENSIONS" | grep -c xforms` -ne 0; then if test -z "$MOZ_XTF" && test `echo "$MOZ_EXTENSIONS" | grep -c xforms` -ne 0; then
AC_MSG_WARN([Cannot build XForms without XTF support. Removing XForms from MOZ_EXTENSIONS.]) AC_MSG_WARN([Cannot build XForms without XTF support. Removing XForms from MOZ_EXTENSIONS.])