Make XML-RPC part of the default build on Unix and Win32. smfr will take care ofthe Mac build.

r=shaver
This commit is contained in:
mj%digicool.com 2000-05-05 20:33:49 +00:00
Родитель ce32953c18
Коммит af9ba5c53f
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -2858,14 +2858,14 @@ dnl ========================================================
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 psm-glue"
MOZ_EXTENSIONS_DEFAULT="cookie wallet psm-glue xml-rpc"
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 cookie irc wallet xmlterm psm-glue"
MOZ_EXTENSIONS="$MOZ_EXTENSIONS cookie irc wallet xmlterm psm-glue xml-rpc"
elif test "$option" = "no" || test "$option" = "none"; then
MOZ_EXTENSIONS=""
elif test "$option" = "default"; then

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

@ -22,6 +22,6 @@
DEPTH=..
include <$(DEPTH)/config/config.mak>
DIRS = wallet cookie irc psm-glue
DIRS = wallet cookie irc psm-glue xml-rpc
include <$(DEPTH)\config\rules.mak>