Bug 588075 - --disable-libxul is incompatible with omnijar, check this at configure time, r=khuey a=beta5+

This commit is contained in:
Benjamin Smedberg 2010-08-17 13:50:41 -07:00
parent 0f4150c103
commit 366184f77b

View File

@ -8065,6 +8065,10 @@ if test -n "$MOZ_IPC" -a -z "$MOZ_ENABLE_LIBXUL"; then
AC_MSG_ERROR([--enable-ipc requires --enable-libxul])
fi
if test -z "$MOZ_ENABLE_LIBXUL" -a -n "$MOZ_OMNIJAR"; then
AC_MSG_ERROR([Omnijar packaging is incompatible with --disable-libxul. Please either --enable-libxul or --enable-chrome-format=jar|flat|symlink]);
fi
AC_SUBST(LIBXUL_LIBS)
if test -n "$MOZ_ENABLE_LIBXUL"; then