Enlightenment CVS committal Author : vapier Project : e17 Module : libs/emotion
Dir : e17/libs/emotion Modified Files: configure.in Log Message: stop running exit since its bad form ... use AC_MSG_ERROR instead =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/emotion/configure.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- configure.in 28 Feb 2005 05:35:00 -0000 1.11 +++ configure.in 29 Apr 2005 02:54:36 -0000 1.12 @@ -185,54 +185,46 @@ V=`$ECORE_CONFIG --version` if test -z "$V"; then - echo "Error. Ecore is not installed or $ECORE_CONFIG cannot be found. Abort." - exit -1 + AC_MSG_ERROR(Ecore is not installed or $ECORE_CONFIG cannot be found.) fi VV=`vser $V` VM="0.9.9" VVM=`vser $VM` if test $VV -lt $VVM; then - echo "Error. Ecore is not at least "$VM". It is "$V". Abort." - exit -1 + AC_MSG_ERROR(Ecore is not at least "$VM". It is "$V".) fi V=`$EVAS_CONFIG --version` if test -z "$V"; then - echo "Error. Evas is not installed or $EVAS_CONFIG cannot be found. Abort." - exit -1 + AC_MSG_ERROR(Evas is not installed or $EVAS_CONFIG cannot be found.) fi VV=`vser $V` VM="0.9.9" VVM=`vser $VM` if test $VV -lt $VVM; then - echo "Error. Evas is not at least "$VM". It is "$V". Abort." - exit -1 + AC_MSG_ERROR(Evas is not at least "$VM". It is "$V".) fi V=`$EDJE_CONFIG --version` if test -z "$V"; then - echo "Error. Edje is not installed or $EDJE_CONFIG cannot be found. Abort." - exit -1 + AC_MSG_ERROR(Edje is not installed or $EDJE_CONFIG cannot be found.) fi VV=`vser $V` VM="0.5.0" VVM=`vser $VM` if test $VV -lt $VVM; then - echo "Error. Edje is not at least "$VM". It is "$V". Abort." - exit -1 + AC_MSG_ERROR(Edje is not at least "$VM". It is "$V".) fi V=`$XINE_CONFIG --version` if test -z "$V"; then - echo "Error. Xine is not installed or $XINE_CONFIG cannot be found. Abort." - exit -1 + AC_MSG_ERROR(Xine is not installed or $XINE_CONFIG cannot be found.) fi VV=`vser $V` VM="1.0.0" VVM=`vser $VM` if test $VV -lt $VVM; then - echo "Error. Xine is not at least "$VM". It is "$V". Abort." - exit -1 + AC_MSG_ERROR(Xine is not at least "$VM". It is "$V".) fi my_cflags=`$EVAS_CONFIG --cflags`" "`$ECORE_CONFIG --cflags` ------------------------------------------------------- SF.Net email is sponsored by: Tell us your software development plans! Take this survey and enter to win a one-year sub to SourceForge.net Plus IDC's 2005 look-ahead and a copy of this survey Click here to start! http://www.idcswdc.com/cgi-bin/survey?id=105hix _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs