[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.0-20080706-281-gf470af7)



The branch, master has been updated
       via  f470af7a28afe423ded6171ea3c8a2b31ff56f43 (commit)
      from  7687668eb6dd0fe86c6ac8565ae4d47a01f7d143 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 gattrib/src/Makefile.am    |    2 +-
 gnetlist/src/Makefile.am   |    2 +-
 gnetlist/utils/Makefile.am |    2 +-
 gschem/src/Makefile.am     |    2 +-
 gsymcheck/src/Makefile.am  |    2 +-
 libgeda/src/Makefile.am    |    2 +-
 utils/gschlas/Makefile.am  |    2 +-
 utils/src/Makefile.am      |    2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)


=================
 Commit Messages
=================

commit f470af7a28afe423ded6171ea3c8a2b31ff56f43
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Sat Nov 1 20:47:41 2008 +0000

    Revert applying -Werror to compiler flags when linking with GCC (CODE!!)
    
    Depending on the gcc version, the original developers might not see the
    warning until the software gets into the end user's hands (and tries
    building it with an older/newer version of gcc).  Most warnings are
    not catastropic, but by using -Werror they are _all_ catastropic.
    
    If a developer wants to get rid of all warnings, they should either:
    
     1) run make -s and see/fix all the warnings, and/or
     2) modify the Makefile's themselves and add the -Werror flag temporarily.
    
    (Comments explaining rationale snipped out of an email from Ales).

:100644 100644 ffcbafc... c446e51... M	gattrib/src/Makefile.am
:100644 100644 0df82a4... 4cb6a0d... M	gnetlist/src/Makefile.am
:100644 100644 07647c3... 97eab95... M	gnetlist/utils/Makefile.am
:100644 100644 57454b1... c47bf73... M	gschem/src/Makefile.am
:100644 100644 d570f0d... 773dd7f... M	gsymcheck/src/Makefile.am
:100644 100644 e3ef0b4... 5e3be39... M	libgeda/src/Makefile.am
:100644 100644 495b5f1... 88aa090... M	utils/gschlas/Makefile.am
:100644 100644 5154792... 5bbb546... M	utils/src/Makefile.am

=========
 Changes
=========

commit f470af7a28afe423ded6171ea3c8a2b31ff56f43
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Sat Nov 1 20:47:41 2008 +0000

    Revert applying -Werror to compiler flags when linking with GCC (CODE!!)
    
    Depending on the gcc version, the original developers might not see the
    warning until the software gets into the end user's hands (and tries
    building it with an older/newer version of gcc).  Most warnings are
    not catastropic, but by using -Werror they are _all_ catastropic.
    
    If a developer wants to get rid of all warnings, they should either:
    
     1) run make -s and see/fix all the warnings, and/or
     2) modify the Makefile's themselves and add the -Werror flag temporarily.
    
    (Comments explaining rationale snipped out of an email from Ales).

diff --git a/gattrib/src/Makefile.am b/gattrib/src/Makefile.am
index ffcbafc..c446e51 100644
--- a/gattrib/src/Makefile.am
+++ b/gattrib/src/Makefile.am
@@ -2,7 +2,7 @@
 ## This Makefile.am created for gattrib by SDB 12.13.2003
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 bin_PROGRAMS = gattrib
diff --git a/gnetlist/src/Makefile.am b/gnetlist/src/Makefile.am
index 0df82a4..4cb6a0d 100644
--- a/gnetlist/src/Makefile.am
+++ b/gnetlist/src/Makefile.am
@@ -10,7 +10,7 @@ gnetlist_SOURCES = \
 		s_rename.c s_hierarchy.c s_misc.c vams_misc.c
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 INCLUDES = -I$(top_srcdir)/include @GNETLIST_CFLAGS@
diff --git a/gnetlist/utils/Makefile.am b/gnetlist/utils/Makefile.am
index 07647c3..97eab95 100644
--- a/gnetlist/utils/Makefile.am
+++ b/gnetlist/utils/Makefile.am
@@ -3,7 +3,7 @@
 bin_PROGRAMS = mk_verilog_syms
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 mk_verilog_syms_SOURCES = \
diff --git a/gschem/src/Makefile.am b/gschem/src/Makefile.am
index 57454b1..c47bf73 100644
--- a/gschem/src/Makefile.am
+++ b/gschem/src/Makefile.am
@@ -77,7 +77,7 @@ gschem_SOURCES += ${CAIRO_SRCS}
 endif
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 INCLUDES = -I$(prefix)/include -I$(top_srcdir)/intl -I$(top_srcdir)/include @GSCHEM_CFLAGS@
diff --git a/gsymcheck/src/Makefile.am b/gsymcheck/src/Makefile.am
index d570f0d..773dd7f 100644
--- a/gsymcheck/src/Makefile.am
+++ b/gsymcheck/src/Makefile.am
@@ -15,7 +15,7 @@ gsymcheck_SOURCES = \
 	s_symstruct.c
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 INCLUDES = -I$(top_srcdir)/include @GSYMCHECK_CFLAGS@
diff --git a/libgeda/src/Makefile.am b/libgeda/src/Makefile.am
index e3ef0b4..5e3be39 100644
--- a/libgeda/src/Makefile.am
+++ b/libgeda/src/Makefile.am
@@ -6,7 +6,7 @@
 AUTOMAKE_OPTIONS = foreign
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 # Build a libtool library, libhello.la for installation in libdir.
diff --git a/utils/gschlas/Makefile.am b/utils/gschlas/Makefile.am
index 495b5f1..88aa090 100644
--- a/utils/gschlas/Makefile.am
+++ b/utils/gschlas/Makefile.am
@@ -3,7 +3,7 @@
 bin_PROGRAMS = gschlas 
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 # don't forget all *.h files */
diff --git a/utils/src/Makefile.am b/utils/src/Makefile.am
index 5154792..5bbb546 100644
--- a/utils/src/Makefile.am
+++ b/utils/src/Makefile.am
@@ -4,7 +4,7 @@ bin_PROGRAMS = gmk_sym smash_megafile convert_sym sarlacc_schem olib \
 	       gsch2pcb grenum
 
 if CCISGCC
-AM_CFLAGS = -Wall -Werror
+AM_CFLAGS = -Wall
 endif
 
 # don't forget all *.h files */




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs