diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'osdteletext' Revision History ----------------------------------------- +2012-xx-xx: version x.x.x +- Allow to override the CXXFLAGS + 2012-04-03: version 0.9.3 - VDR 1.7.27 compatibility (Closes #919), Credit goes to nox and gda fro vdrportal.de @@ -15,8 +15,8 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: -OPTLEVEL ?= 2 -CXXFLAGS = -O$(OPTLEVEL) -g -Wall -Werror -Woverloaded-virtual -fPIC -DPIC +CXX ?= g++ +CXXFLAGS ?= -fPIC -g -O3 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: |