From 9befd8a8d798f9ae4e0eaacae9b34f6211556292 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Wed, 5 Apr 2006 23:29:21 +0000 Subject: [PATCH] Added -ansi to C{,XX}FLAGS to disable non-standard names. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7f09132..48124a2 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,11 @@ moz_version_major := $(word 1,$(subst ., ,$(moz_version))) moz_version_minor := $(word 2,$(subst ., ,$(moz_version))) moz_version_patchlevel := $(word 3,$(subst ., ,$(moz_version))) -CFLAGS := -Wall +CFLAGS := -ansi -Wall CPPFLAGS := -D_REENTRANT # Non-virtual destructors are fine in XPCOM interface classes since # instances are only ever called by the Release function which is virtual. -CXXFLAGS := -Wall -Wno-non-virtual-dtor +CXXFLAGS := -ansi -Wall -Wno-non-virtual-dtor LDFLAGS := -lpthread $(shell pkg-config --libs gtkmm-2.0 mozilla-gtkmozembed) \ -Wl,-rpath -Wl,$(moz_lib_dir) -lexpat -- 2.39.2