Bug 589606: Fix up the raw encoder to have the same build config options as the other media types. r=cpearce a=sdwilsh

This commit is contained in:
Kyle Huey 2010-08-31 21:24:04 -04:00
parent 13d718e00d
commit 6150b1e723

View File

@ -5877,8 +5877,20 @@ if test -n "$MOZ_NO_FAST_LOAD"; then
AC_DEFINE(MOZ_NO_FAST_LOAD)
fi
dnl ========================================================
dnl = Disable Raw Codecs
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(raw,
[ --disable-raw Disable support for RAW media],
MOZ_RAW=,
MOZ_RAW=1)
if test -n "$MOZ_RAW"; then
AC_DEFINE(MOZ_RAW)
MOZ_MEDIA=1
fi
AC_SUBST(MOZ_RAW)
AC_DEFINE(MOZ_RAW)
dnl ========================================================
dnl = Disable Ogg Codecs