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
Родитель 96ef02d7d7
Коммит 66f15bf322
1 изменённых файлов: 13 добавлений и 1 удалений

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

@ -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