Enlightenment CVS committal Author : raster Project : e17 Module : libs/ecore
Dir : e17/libs/ecore Modified Files: Tag: SPLIT configure.ac configure.in Log Message: stubs for an evas wrapper module =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/configure.ac,v retrieving revision 1.3.2.5 retrieving revision 1.3.2.6 diff -u -3 -r1.3.2.5 -r1.3.2.6 --- configure.ac 16 Jan 2003 11:26:41 -0000 1.3.2.5 +++ configure.ac 6 Feb 2003 05:13:41 -0000 1.3.2.6 @@ -73,6 +73,19 @@ AC_SUBST(x_ldflags) AC_SUBST(x_libs) +PROG="evas-config"; +AC_PATH_PROG(EVAS_CONFIG, $PROG, "", $PATH) +if [ test -z $EVAS_CONFIG ]; then + echo $PROG " is not in your \$PATH. Please ensure it is."; + echo "Read the manual page for you shell as to how to extend your path."; + echo "FATAL ERROR. ABORT."; + exit -1; +fi +evas_cflags=`$EVAS_CONFIG --cflags` +evas_libs=`$EVAS_CONFIG --libs` +AC_SUBST(evas_cflags) +AC_SUBST(evas_libs) + AC_CONFIG_FILES([ Makefile ecore-config @@ -82,6 +95,7 @@ src/lib/ecore/Makefile src/lib/ecore_job/Makefile src/lib/ecore_x/Makefile +src/lib/ecore_evas/Makefile debian/Makefile ]) AC_CONFIG_COMMANDS([default],[[ =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/configure.in,v retrieving revision 1.8.2.5 retrieving revision 1.8.2.6 diff -u -3 -r1.8.2.5 -r1.8.2.6 --- configure.in 16 Jan 2003 11:26:41 -0000 1.8.2.5 +++ configure.in 6 Feb 2003 05:13:42 -0000 1.8.2.6 @@ -72,6 +72,19 @@ AC_SUBST(x_ldflags) AC_SUBST(x_libs) +PROG="evas-config"; +AC_PATH_PROG(EVAS_CONFIG, $PROG, "", $PATH) +if [ test -z $EVAS_CONFIG ]; then + echo $PROG " is not in your \$PATH. Please ensure it is."; + echo "Read the manual page for you shell as to how to extend your path."; + echo "FATAL ERROR. ABORT."; + exit -1; +fi +evas_cflags=`$EVAS_CONFIG --cflags` +evas_libs=`$EVAS_CONFIG --libs` +AC_SUBST(evas_cflags) +AC_SUBST(evas_libs) + AC_OUTPUT([ Makefile ecore-config @@ -81,6 +94,7 @@ src/lib/ecore/Makefile src/lib/ecore_job/Makefile src/lib/ecore_x/Makefile +src/lib/ecore_evas/Makefile debian/Makefile ], [ chmod +x ecore-config ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ enlightenment-cvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs