tasn pushed a commit to branch master. http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=309ddd4e5a1419e99e7fbeaca8d110e14a00454a
commit 309ddd4e5a1419e99e7fbeaca8d110e14a00454a Author: Andreas Volz <[email protected]> Date: Thu Oct 8 18:17:52 2009 +0000 output in compile script ecorexx compiles again SVN revision: 42962 --- compile.functions | 16 ++++++++++++---- compile.sh | 1 + ecorexx/include/ecorexx/EcoreEvasWindow.h | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/compile.functions b/compile.functions index b72d5df..16fecdc 100644 --- a/compile.functions +++ b/compile.functions @@ -12,10 +12,12 @@ do_bootstrap () echo "Bootstrapping '$module'..." - ./bootstrap &> $BASEDIR/logs/$module.bootstrap.log + LOGFILE=$BASEDIR/logs/$module.bootstrap.log + ./bootstrap &> $LOGFILE if [ $? != 0 ]; then echo "Failed while bootstrapping!" + echo "See $LOGFILE for more information..." $val_skip_error || exit else echo "Successfull bootstrapped!" @@ -32,15 +34,18 @@ do_configure () echo "Configuring '$module'..." + LOGFILE=$BASEDIR/logs/$module.configure.log + ## choose debug if [ $val_debug = true ]; then - CXXFLAGS="-O0 -ggdb" CFLAGS="-O0 -ggdb" ./configure &> $BASEDIR/logs/$module.configure.log + CXXFLAGS="-O0 -ggdb" CFLAGS="-O0 -ggdb" ./configure &> $LOGFILE else - ./configure &> $BASEDIR/logs/$module.configure.log + ./configure &> $LOGFILE fi if [ $? != 0 ]; then echo "Failed while configuring!" + echo "See $LOGFILE for more information..." $val_skip_error || exit else echo "Successfull configuring!" @@ -56,11 +61,14 @@ do_make () cd $BASEDIR/$module + LOGFILE=$BASEDIR/logs/$module.make.log + echo "Compiling '$module'... ($params)" - make $params &> $BASEDIR/logs/$module.make.log + make $params &> $LOGFILE if [ $? != 0 ]; then echo "Failed while compiling ($params)!" + echo "See $LOGFILE for more information..." $val_skip_error || exit else echo "Successfull compiled ($params)!" diff --git a/compile.sh b/compile.sh index 66464a5..8dda04f 100755 --- a/compile.sh +++ b/compile.sh @@ -44,6 +44,7 @@ for i done ## create log directory +rm -rf logs mkdir -p logs for module in $PKG diff --git a/ecorexx/include/ecorexx/EcoreEvasWindow.h b/ecorexx/include/ecorexx/EcoreEvasWindow.h index 09ec4c1..fc408c8 100644 --- a/ecorexx/include/ecorexx/EcoreEvasWindow.h +++ b/ecorexx/include/ecorexx/EcoreEvasWindow.h @@ -29,7 +29,7 @@ public: enum EngineType { - SoftwareX11 = ECORE_EVAS_ENGINE_SOFTWARE_X11, + SoftwareX11 = ECORE_EVAS_ENGINE_SOFTWARE_XLIB, SoftwareFB = ECORE_EVAS_ENGINE_SOFTWARE_FB, GLX11 = ECORE_EVAS_ENGINE_OPENGL_X11, SoftwareBuffer = ECORE_EVAS_ENGINE_SOFTWARE_BUFFER, --
