mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Turning on MNG decoder by default on all platforms.
configure.in change r=cls. a=pnunn,brendan.
This commit is contained in:
parent
35cd409b26
commit
203eea477a
@ -69,7 +69,7 @@ $build{resources} = 0;
|
||||
$options{transformiix} = 0;
|
||||
$options{mathml} = 0;
|
||||
$options{svg} = 0;
|
||||
$options{mng} = 0;
|
||||
$options{mng} = 1;
|
||||
$options{ldap} = 0;
|
||||
$options{xmlextras} = 0;
|
||||
|
||||
|
@ -102,7 +102,7 @@ $build{resources} = 0;
|
||||
$options{transformiix} = 0;
|
||||
$options{mathml} = 0;
|
||||
$options{svg} = 0;
|
||||
$options{mng} = 0;
|
||||
$options{mng} = 1;
|
||||
$options{ldap} = 0;
|
||||
$options{xmlextras} = 0;
|
||||
|
||||
|
13
configure.in
13
configure.in
@ -3369,12 +3369,15 @@ MOZ_ARG_ENABLE_BOOL(svg,
|
||||
AC_DEFINE(MOZ_SVG))
|
||||
|
||||
dnl
|
||||
dnl --enable mng
|
||||
dnl --disable mng
|
||||
dnl
|
||||
MOZ_ARG_ENABLE_BOOL(mng,
|
||||
[ --enable-mng Enable MNG ],
|
||||
MOZ_MNG=1
|
||||
AC_DEFINE(MOZ_MNG))
|
||||
MOZ_MNG=1
|
||||
MOZ_ARG_DISABLE_BOOL(mng,
|
||||
[ --disable-mng Disable MNG ],
|
||||
MOZ_MNG= )
|
||||
if test "$MOZ_MNG"; then
|
||||
AC_DEFINE(MOZ_MNG)
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl --enable xsl
|
||||
|
@ -21,7 +21,7 @@
|
||||
DEPTH=..\..
|
||||
|
||||
DIRS = public src public_com png pngcom jpgcom gifcom \
|
||||
!if defined(MOZ_MNG)
|
||||
!if !defined(MOZ_DISABLE_MNG)
|
||||
mng mngcom \
|
||||
!endif
|
||||
$(NULL)
|
||||
|
@ -87,6 +87,7 @@ viewer:Components:libpref.shlb
|
||||
viewer:Components:libpref.xpt
|
||||
viewer:Components:libutil.xpt
|
||||
viewer:Components:lwbrk.shlb
|
||||
viewer:Components:mngdecoder.shlb
|
||||
viewer:Components:mozBrowser.shlb
|
||||
viewer:Components:mozBrowser.xpt
|
||||
viewer:Components:mozcomps.xpt
|
||||
|
@ -86,6 +86,7 @@ bin/components/libnecko_cache.so
|
||||
bin/components/libnsgif.so
|
||||
bin/components/libnsjpg.so
|
||||
bin/components/libnslocale.so
|
||||
bin/components/libnsmng.so
|
||||
bin/components/libnspng.so
|
||||
bin/components/liboji.so
|
||||
bin/components/libpsmglue.so
|
||||
|
@ -121,6 +121,7 @@ bin\components\necko_res.xpt
|
||||
bin\components\nsgif.dll
|
||||
bin\components\nsjpg.dll
|
||||
bin\components\nslocale.dll
|
||||
bin\components\nsmng.dll
|
||||
bin\components\nspng.dll
|
||||
bin\components\nsprefm.dll
|
||||
bin\components\nsSidebar.js
|
||||
|
Loading…
Reference in New Issue
Block a user