Bug 473705: Enable SVG Animation (SMIL) support in builds by default. r+sr=roc

This commit is contained in:
Daniel Holbert 2009-03-09 21:43:01 -07:00
Родитель 6d254f1aa0
Коммит 36a8b01715
1 изменённых файлов: 9 добавлений и 4 удалений

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

@ -5847,10 +5847,15 @@ fi
dnl ========================================================
dnl SMIL
dnl ========================================================
MOZ_ARG_ENABLE_BOOL(smil,
[ --enable-smil Enable SMIL animation support],
MOZ_SMIL=1,
MOZ_SMIL= )
MOZ_SMIL=1
MOZ_ARG_DISABLE_BOOL(smil,
[ --disable-smil Disable SMIL animation support],
MOZ_SMIL=,
MOZ_SMIL=1 )
# Automatically disable SMIL if SVG is disabled
if test -z "$MOZ_SVG"; then
MOZ_SMIL=
fi
if test -n "$MOZ_SMIL"; then
AC_DEFINE(MOZ_SMIL)
fi