Enlightenment CVS committal Author : essiene Project : e17 Module : proto
Dir : e17/proto/entrance_edit_gui Modified Files: configure.in Log Message: - Added bunch of smart objects to help with preview - Updated autofoo to pull in evas, ecore, edje dependencies into the build process since i have smart objects now. - Added ew_preview currently based on etk_canvas (i wonder how the ewl counterpart works) - HOORAY! preview widget works properly. There is still one todo related to it... but it works even. Now, one TODO i was actually scared of is Dead... 0xDEADBEEF it has become! Thanks to all who took time to explain all them brain bending concepts to moi. Codewarrior... you drink beer? ;;) =================================================================== RCS file: /cvs/e/e17/proto/entrance_edit_gui/configure.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- configure.in 15 Aug 2006 15:11:58 -0000 1.11 +++ configure.in 23 Aug 2006 02:10:48 -0000 1.12 @@ -102,6 +102,57 @@ ] ) +#check for ECORE +AC_PATH_EFL( + ecore, + 0.1.0.001, + [ + AC_DEFINE(HAVE_ECORE, 1, have ECORE) + ecore="ECORE " + AM_CONDITIONAL(HAVE_ECORE, true) + have_ecore="yes" + ecore_libs=`ecore-config --libs` + ecore_cflags=`ecore-config --cflags` + ], + [ + AC_MSG_ERROR([No Ecore, can't build!]) + ] +) + +#check for EVAS +AC_PATH_EFL( + evas, + 0.1.0.001, + [ + AC_DEFINE(HAVE_EVAS, 1, have EVAS) + evas="EVAS " + AM_CONDITIONAL(HAVE_EVAS, true) + have_evas="yes" + evas_libs=`evas-config --libs` + evas_cflags=`evas-config --cflags` + ], + [ + AC_MSG_ERROR([No Evas, can't build!]) + ] +) + +#check for EDJE +AC_PATH_EFL( + edje, + 0.1.0.001, + [ + AC_DEFINE(HAVE_EDJE, 1, have EDJE) + edje="EDJE " + AM_CONDITIONAL(HAVE_EDJE, true) + have_edje="yes" + edje_libs=`edje-config --libs` + edje_cflags=`edje-config --cflags` + ], + [ + AC_MSG_ERROR([No Edje, can't build!]) + ] +) + #check for ETK AC_PATH_EFL( etk, @@ -123,11 +174,18 @@ AC_SUBST(entrance_edit_cflags) AC_SUBST(etk_libs) AC_SUBST(etk_cflags) +AC_SUBST(ecore_libs) +AC_SUBST(ecore_cflags) +AC_SUBST(evas_libs) +AC_SUBST(evas_cflags) +AC_SUBST(edje_libs) +AC_SUBST(edje_cflags) AC_OUTPUT([ Makefile \ src/Makefile \ src/widgets/Makefile \ + src/smarts/Makefile \ src/gui/Makefile \ \ data/Makefile \ ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs