aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-23 17:49:59 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-23 17:49:59 +0000
commit4a0cba066a6021188a8c8c3b8b00d5b6e3ae67fc (patch)
tree73b10da0cb64b46cc16c63fa8ee0c6289727dd33 /codecs
parentcdb7df3c8a5c0b1283137597e16245dcb68e4244 (diff)
From Sebastien Tandel:
(Temporarily disable the warnings as errors default on Unix to get to get the buildbots and people with gcc40 going again until those additional warnings gcc40 generates can be fixed-I'm working on it ASAP) Patch for configure.in which disables by default the treatment of warnings as errors. It can be enabled with './configure --with-warnings-as-errors'. The macro will test first if GCC is present. If it's the case, HAVE_WARNINGS_AS_ERRORS is defined. All the USING_GCC have been replaced by HAVE_WARNINGS_AS_ERRORS. With this switch, people won't suffer from unexpected warnings when downloading svn sources during the transition time ;) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21153 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'codecs')
-rw-r--r--codecs/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/codecs/Makefile.am b/codecs/Makefile.am
index a68fd61a63..07dc6098a2 100644
--- a/codecs/Makefile.am
+++ b/codecs/Makefile.am
@@ -21,7 +21,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-if USING_GCC
+if HAVE_WARNINGS_AS_ERRORS
AM_CFLAGS = -Werror
endif