From d71f79bdd854edb26b1b54096b97abfb43e7012b Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sun, 13 Jan 2008 16:45:02 +0000 Subject: [PATCH] Added '-Wno-parentheses' to the compiler options. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bce21ce..e1a812d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.23 2007/11/04 14:13:11 rahrenbe Exp $ +# $Id: Makefile,v 1.24 2008/01/13 16:45:02 rahrenbe Exp $ # Debugging on/off #IPTV_DEBUG = 1 @@ -24,7 +24,7 @@ VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ p ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual +CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: