Backing out previous bogus checkin that did not match the checkin comment

This commit is contained in:
cls%seawood.org 2001-05-17 07:45:08 +00:00
Родитель ed30c06d32
Коммит 0f8896cfe3
1 изменённых файлов: 2 добавлений и 16 удалений

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

@ -378,7 +378,8 @@ AC_PATH_PROG(AUTOCONF, autoconf, :)
AC_PATH_PROG(UNZIP, unzip, :)
AC_PATH_PROGS(ZIP, zip)
if test -z "$ZIP" || test "$ZIP" = ":"; then
AC_MSG_ERROR([zip not found in \$PATH .])
AC_MSG_WARN([zip not found in \$PATH. Disabling jar packaging])
MOZ_DISABLE_JAR_PACKAGING=1
fi
AC_PATH_PROG(SYSTEM_MAKEDEPEND, makedepend)
AC_PATH_PROG(XARGS, xargs)
@ -3505,16 +3506,8 @@ if test "$MOZ_CHROME_FILE_FORMAT" != "jar" &&
AC_MSG_ERROR([--enable-chrome-format must be set to either jar, flat or both])
fi
dnl ========================================================
dnl Dependency options
dnl ========================================================
AUTO_DEPENDENCIES=1
MOZ_ARG_DISABLE_BOOL(auto-deps,
[ --disable-auto-deps Do not automatically generate build dependencies],
AUTO_DEPENDENCIES=)
if test "$AUTO_DEPENDENCIES"; then
_cpp_md_flag=
MOZ_ARG_DISABLE_BOOL(md,
[ --disable-md Do not use compiler-based dependencies ],
@ -3528,17 +3521,10 @@ if test "$_cpp_md_flag"; then
COMPILER_DEPEND=1
_DEPEND_CFLAGS='$(filter-out %/.pp,-Wp,-MD,$(MDDEPDIR)/$(*F).pp)'
fi
fi
MDDEPDIR='.deps'
AC_SUBST(AUTO_DEPENDENCIES)
AC_SUBST(COMPILER_DEPEND)
AC_SUBST(MDDEPDIR)
dnl ========================================================
dnl Compiler options
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(pedantic,
[ --disable-pedantic Issue all warnings demanded by strict ANSI C ],
_PEDANTIC= )