Enlightenment CVS committal Author : raster Project : e17 Module : libs/imlib2
Dir : e17/libs/imlib2 Modified Files: AUTHORS configure.in Log Message: 1. id3 album cover loader patches 2. i reduced list note memory usage by 20% - shoudl work better with malloc as ti is now a power of 2 as well 3. optimised evas internals to make use of event freezes to make e17'sw menu popups a LOT snappier 4. fixed using last member of list nodes - bad - shoudl use api as this is private stuff really 5. added config profile stuff to e17 u can literally maintain multiple config profiles and choose which one at any time etc. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/imlib2/AUTHORS,v retrieving revision 1.33 retrieving revision 1.34 diff -u -3 -r1.33 -r1.34 --- AUTHORS 1 Nov 2004 09:45:27 -0000 1.33 +++ AUTHORS 22 Jul 2005 10:28:11 -0000 1.34 @@ -28,3 +28,4 @@ Kim Woelders <[EMAIL PROTECTED]> Nick Blievers <[EMAIL PROTECTED]> Mike Castle <[EMAIL PROTECTED]> +R.Ramkumar <[EMAIL PROTECTED]> =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/imlib2/configure.in,v retrieving revision 1.106 retrieving revision 1.107 diff -u -3 -r1.106 -r1.107 --- configure.in 13 Jul 2005 05:45:36 -0000 1.106 +++ configure.in 22 Jul 2005 10:28:11 -0000 1.107 @@ -364,6 +364,31 @@ AM_CONDITIONAL(BUILD_BZ2_LOADER, test "$bz2_ok" = yes) AC_SUBST(BZ2LIBS) +AC_CHECK_LIB(id3tag, id3_file_open, + id3_libs="-lz -lid3tag" + id3_ok=yes, + id3_ok=no + AC_MSG_WARN(*** Native mp3 support will not be built (id3tag library not found) ***), + -lz) +if test "$id3_ok" = yes; then + AC_MSG_CHECKING([for id3tag.h]) + AC_TRY_CPP( + [#include <stdio.h> + #undef PACKAGE + #undef VERSION + #include <id3tag.h>], + id3_ok=yes, + id3_ok=no) + AC_MSG_RESULT($id3_ok) + if test "$id3_ok" = yes; then + ID3LIBS=$id3_libs + else + AC_MSG_WARN(*** Native mp3 support will not be built (id3tag header file not found) ***) + fi +fi +AM_CONDITIONAL(BUILD_ID3_LOADER, test "$id3_ok" = yes) +AC_SUBST(ID3LIBS) + AC_SUBST(requirements) AC_OUTPUT([ @@ -411,6 +436,7 @@ echo " GIF.....................: $gif_ok" echo " ZLIB....................: $zlib_ok" echo " BZIP2...................: $bz2_ok" +echo " MP3.....................: $id3_ok" echo echo echo "Use MMX for extra speed...: $mmx" ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs