|
From: <ho...@us...> - 2003-12-14 09:47:35
|
Update of /cvsroot/ganc/ganc In directory sc8-pr-cvs1:/tmp/cvs-serv14428 Modified Files: configure.in Removed Files: VERSION Log Message: Fixed some obsolete parse error names Index: configure.in =================================================================== RCS file: /cvsroot/ganc/ganc/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** configure.in 13 Dec 2003 02:56:52 -0000 1.14 --- configure.in 13 Dec 2003 23:55:56 -0000 1.15 *************** *** 1,9 **** dnl Process this file with autoconf to produce a configure script. AC_INIT(src/main.c) AM_CONFIG_HEADER(config.h) ! AM_INIT_AUTOMAKE(ganc, cvs) ! dnl Do --enable --disable checks dnl Check if debug information has been enabled AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug], [compile with debug information '-g' (disabled by default)]), --- 1,11 ---- + dnl dnl Process this file with autoconf to produce a configure script. + dnl AC_INIT(src/main.c) AM_CONFIG_HEADER(config.h) ! AM_INIT_AUTOMAKE([ganc], [cvs]) ! dnl ***** Do --enable --disable checks ****** dnl Check if debug information has been enabled AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug], [compile with debug information '-g' (disabled by default)]), *************** *** 20,23 **** --- 22,26 ---- AC_PROG_CPP + dnl Print debug status AC_MSG_CHECKING(compiling with debugging information) AC_MSG_RESULT($COMPILE_DEBUG) *************** *** 27,30 **** --- 30,34 ---- dnl Check headers + dnl bison stuff AC_PROG_YACC *************** *** 86,90 **** echo echo ! echo $PACKAGE $VERSION echo echo Building GUI ............................ : $BUILD_GUI --- 90,94 ---- echo echo ! echo $PACKAGE-$VERSION echo echo Building GUI ............................ : $BUILD_GUI --- VERSION DELETED --- |