Update of /cvsroot/gtkpod/gtkpod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1906
Modified Files: ChangeLog_detailed configure.in Added Files: INSTALL_CVS Log Message: * configure.in: make check for flex fatal. * added info for compilation from CVS. --- NEW FILE: INSTALL_CVS --- If you install from CVS, call ./autogen.sh make make install See the INSTALL and TROUBLESHOOTING file for more information. Index: ChangeLog_detailed =================================================================== RCS file: /cvsroot/gtkpod/gtkpod/ChangeLog_detailed,v retrieving revision 1.102 retrieving revision 1.103 diff -u -d -r1.102 -r1.103 --- ChangeLog_detailed 13 Nov 2005 07:34:34 -0000 1.102 +++ ChangeLog_detailed 19 Nov 2005 02:14:07 -0000 1.103 @@ -1,3 +1,7 @@ +2005-11-17 Jorg Schuler <[EMAIL PROTECTED]> + + * configure.in: make check for flex fatal. + 2005-11-13 Jorg Schuler <[EMAIL PROTECTED]> * file.c: strip whitespace when getting tags from filename Index: configure.in =================================================================== RCS file: /cvsroot/gtkpod/gtkpod/configure.in,v retrieving revision 1.78 retrieving revision 1.79 diff -u -d -r1.78 -r1.79 --- configure.in 12 Nov 2005 16:54:15 -0000 1.78 +++ configure.in 19 Nov 2005 02:14:08 -0000 1.79 @@ -31,19 +31,18 @@ fi dnl check for libs that are managed with pkg-config -PKG_CHECK_MODULES(PACKAGE, [gtk+-2.0 >= 2.4.0 gthread-2.0 >= 0.14.0 glib-2.0 > 2.0.0 libglade-2.0 >= 2.0.0 gmodule-2.0 libgpod-1.0],,[AC_MSG_FAILURE([*** $PACKAGE_PKG_ERRORS])]) +PKG_CHECK_MODULES(PACKAGE, [gtk+-2.0 >= 2.4.0 gthread-2.0 >= 0.14.0 glib-2.0 > 2.4.0 libglade-2.0 >= 2.4.0 gmodule-2.0 libgpod-1.0],,[AC_MSG_FAILURE([*** $PACKAGE_PKG_ERRORS])]) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) dnl we need 'flex' AM_PROG_LEX - -if ! test `which $LEX`; then - echo LEX: $LEX - AC_MSG_FAILURE([**** flex or lex required]) +if ! test "y$LEX" = "yflex"; then + if ! test "y$LEX" = "ylex"; then + AC_MSG_FAILURE([**** flex or lex required]) + fi fi - dnl Retrieve the path of mount and umount binaries AC_PATH_PROG(MOUNT, mount) AC_SUBST(MOUNT) ------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free Certification Exam for All Training Attendees Through End of 2005. For more info visit: http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click _______________________________________________ gtkpod-cvs2 mailing list gtkpod-cvs2@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2