Add inspector and access-builtin to --with-extensions=all. r=cls@seawood.org sr=hewitt@netscape.com b=75924

This commit is contained in:
dbaron%fas.harvard.edu 2001-05-05 14:26:02 +00:00
Родитель 42217ccd08
Коммит c064b2a60f
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -3430,13 +3430,14 @@ dnl Need cookie and wallet to build mozilla, this should
dnl not be the case, 18352 has been filed.
dnl http://bugzilla.mozilla.org/show_bug.cgi?id=18352
MOZ_EXTENSIONS_DEFAULT="cookie wallet xml-rpc xmlextras help"
MOZ_EXTENSIONS_ALL="$MOZ_EXTENSIONS_DEFAULT irc xmlterm inspector access-builtin"
MOZ_ARG_WITH_STRING(extensions,
[ --with-extensions Enable extensions (dirs in extensions/)],
[ MOZ_EXTENSIONS=""
for option in `echo $withval | sed 's/,/ /g'`; do
if test "$option" = "yes" || test "$option" = "all"; then
MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_DEFAULT irc xmlterm"
MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_ALL"
elif test "$option" = "no" || test "$option" = "none"; then
MOZ_EXTENSIONS=""
elif test "$option" = "default"; then