[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: configure.ac
User: danmc
Date: 05/02/21 00:29:33
Modified: . configure.ac
Log:
Fix many instances of non-void functions not having return values.
Most of these were simply changed to void functions since nothing
seemed to be expecting a return value. While here, garbage collect
several unused variables to make the compiler warnings easier to
dig through. Also if we're using gcc, then turn on -Wall.
Revision Changes Path
1.7 +1 -0 eda/geda/devel/gattrib/configure.ac
(In the diff below, changes in quantity of whitespace are not shown.)
Index: configure.ac
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gattrib/configure.ac,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- configure.ac 5 Feb 2005 16:03:53 -0000 1.6
+++ configure.ac 21 Feb 2005 05:29:33 -0000 1.7
@@ -37,6 +37,7 @@
# Checks for programs.
AC_PROG_CC
+AM_CONDITIONAL(CCISGCC, test "$GCC" = "yes")
AC_PROG_MAKE_SET
AC_PATH_PROGS(AWK, nawk gawk mawk awk, )