From: Ben Hutchings Date: Wed, 5 Apr 2006 23:29:21 +0000 (+0000) Subject: Added -ansi to C{,XX}FLAGS to disable non-standard names. X-Git-Tag: 0.7~15 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=commitdiff_plain;h=9befd8a8d798f9ae4e0eaacae9b34f6211556292;hp=80da930b8321600a81d3d9ae39ff4b27def501c3 Added -ansi to C{,XX}FLAGS to disable non-standard names. --- 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