diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-28 16:35:02 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-30 07:21:58 +0100 |
commit | 212a5abdbd41298647627a977b336c2f4b1f646c (patch) | |
tree | 84392ce9bd7c9e2dc1cab2c8f154ddfb793aaaa1 /package/efl | |
parent | 58f10d0d1c51f4b1326153bb1aeeaa627b0a5925 (diff) | |
download | buildroot-novena-212a5abdbd41298647627a977b336c2f4b1f646c.tar.gz buildroot-novena-212a5abdbd41298647627a977b336c2f4b1f646c.zip |
efl/libevas: remove SVG support
The SVG support requires esvg, which hasn't been released yet. The
recommandation of the EFL developers is to use the SVG loader from the
evas-generic-loaders project.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/efl')
-rw-r--r-- | package/efl/libevas/Config.in | 5 | ||||
-rw-r--r-- | package/efl/libevas/libevas.mk | 6 |
2 files changed, 0 insertions, 11 deletions
diff --git a/package/efl/libevas/Config.in b/package/efl/libevas/Config.in index ddac49ef3..d8e5002da 100644 --- a/package/efl/libevas/Config.in +++ b/package/efl/libevas/Config.in @@ -181,11 +181,6 @@ config BR2_PACKAGE_LIBEVAS_TIFF help This enables the loader code that loads tiff files. -config BR2_PACKAGE_LIBEVAS_SVG - bool "libevas svg loader" - help - This enables the loader code that loads svg files. - config BR2_PACKAGE_LIBEVAS_XPM bool "libevas xpm loader" help diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk index 8e03ba6bf..6e69d7ff8 100644 --- a/package/efl/libevas/libevas.mk +++ b/package/efl/libevas/libevas.mk @@ -176,12 +176,6 @@ else LIBEVAS_CONF_OPT += --disable-image-loader-pmaps endif -ifeq ($(BR2_PACKAGE_LIBEVAS_SVG),y) -LIBEVAS_CONF_OPT += --enable-image-loader-svg -else -LIBEVAS_CONF_OPT += --disable-image-loader-svg -endif - ifeq ($(BR2_PACKAGE_LIBEVAS_TIFF),y) LIBEVAS_CONF_OPT += --enable-image-loader-tiff LIBEVAS_DEPENDENCIES += tiff |