Evas: formatting and add ico module building

1) i like alphabetical order (build order of modules and configure output

2) ico module was not built

SVN revision: 57747
This commit is contained in:
Vincent Torri 2011-03-14 20:33:44 +00:00
parent 3d26ace1c7
commit e9a7a23536
2 changed files with 28 additions and 22 deletions

View File

@ -1693,19 +1693,19 @@ echo " Software 16bit WinCE.......: $have_evas_engine_software_16_wince"
echo " Software 16bit SDL.........: $have_evas_engine_software_sdl (primitive: $sdl_primitive)"
echo
echo "Image Loaders:"
echo " BMP.....................: $have_evas_image_loader_bmp"
echo " EDB.....................: $have_evas_image_loader_edb"
echo " EET.....................: $have_evas_image_loader_eet"
echo " GIF.....................: $have_evas_image_loader_gif"
echo " ICO.....................: $have_evas_image_loader_ico"
echo " JPEG....................: $have_evas_image_loader_jpeg (region: $have_jpeg_region)"
echo " PMAPS...................: $have_evas_image_loader_pmaps"
echo " PNG.....................: $have_evas_image_loader_png"
echo " SVG.....................: $have_evas_image_loader_svg"
echo " TIFF....................: $have_evas_image_loader_tiff"
echo " XPM.....................: $have_evas_image_loader_xpm"
echo " BMP.....................: $have_evas_image_loader_bmp"
echo " TGA.....................: $have_evas_image_loader_tga"
echo " TIFF....................: $have_evas_image_loader_tiff"
echo " WBMP....................: $have_evas_image_loader_wbmp"
echo " ICO.....................: $have_evas_image_loader_ico"
echo " XPM.....................: $have_evas_image_loader_xpm"
echo
echo "Font Sourcing Systems:"
echo " EET.....................: $have_evas_font_loader_eet"

View File

@ -2,6 +2,12 @@ MAINTAINERCLEANFILES = Makefile.in
SUBDIRS =
if BUILD_LOADER_BMP
if !EVAS_STATIC_BUILD_BMP
SUBDIRS += bmp
endif
endif
if BUILD_LOADER_EDB
if !EVAS_STATIC_BUILD_EDB
SUBDIRS += edb
@ -20,6 +26,12 @@ SUBDIRS += gif
endif
endif
if BUILD_LOADER_ICO
if !EVAS_STATIC_BUILD_ICO
SUBDIRS += ico
endif
endif
if BUILD_LOADER_JPEG
if !EVAS_STATIC_BUILD_JPEG
SUBDIRS += jpeg
@ -44,33 +56,27 @@ SUBDIRS += svg
endif
endif
if BUILD_LOADER_TIFF
if !EVAS_STATIC_BUILD_TIFF
SUBDIRS += tiff
endif
endif
if BUILD_LOADER_XPM
if !EVAS_STATIC_BUILD_XPM
SUBDIRS += xpm
endif
endif
if BUILD_LOADER_BMP
if !EVAS_STATIC_BUILD_BMP
SUBDIRS += bmp
endif
endif
if BUILD_LOADER_TGA
if !EVAS_STATIC_BUILD_TGA
SUBDIRS += tga
endif
endif
if BUILD_LOADER_TIFF
if !EVAS_STATIC_BUILD_TIFF
SUBDIRS += tiff
endif
endif
if BUILD_LOADER_WBMP
if !EVAS_STATIC_BUILD_WBMP
SUBDIRS += wbmp
endif
endif
if BUILD_LOADER_XPM
if !EVAS_STATIC_BUILD_XPM
SUBDIRS += xpm
endif
endif