From 375ff218fdae3d0f00c9f4bedefd44c19625a7e0 Mon Sep 17 00:00:00 2001 From: "cls%seawood.org" Date: Tue, 9 Nov 1999 23:22:15 +0000 Subject: [PATCH] Removed NECKO define. Added '-W -Wno-unused' to _WARNINGS_CFLAGS for gcc. Marked --enable-mathml as broken. --- configure.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 5954485419a9..55d5566fecea 100644 --- a/configure.in +++ b/configure.in @@ -331,7 +331,6 @@ TARGET_MD_ARCH=unix OS_TARGET=`uname -s` _COMPILER_PREFIX= -AC_DEFINE(NECKO) dnl ======================================================== dnl GNU specific defaults @@ -347,12 +346,10 @@ if test "$GNU_CC"; then # -Wall - turn on all warnings # -pedantic - make compiler warn about non-ANSI stuff, and # be a little bit stricter - # -pipe - speeds up the build a little by using pipes rather than - # temp files # Warnings slamm took out for now (these were giving more noise than help): # -Wbad-function-cast - warns when casting a function to a new return type # -Wconversion - complained when char's or short's were used a function args - _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wall -Wshadow -Wpointer-arith -Wcast-align" + _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wall -W -Wno-unused -Wshadow -Wpointer-arith -Wcast-align" dnl Turn pedantic on but disable the warnings for long long _PEDANTIC=1 @@ -2662,7 +2659,7 @@ dnl --enable mathml dnl TODO: handle include files here ? dnl MOZ_ARG_ENABLE_BOOL(mathml, -[ --enable-mathml Enable MathML (default=no) ], +[ --enable-mathml Enable MathML (BROKEN) ], MOZ_MATHML=1 AC_DEFINE(MOZ_MATHML))