diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-24 06:59:05 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-24 06:59:05 +0000 |
commit | 28dc5ea3134af9436057ef61114004e04ba66543 (patch) | |
tree | bb84d3cd74619fd0eb71d1f4a6b6c1f5e0b8cbd6 | |
parent | d0ec6ac5a5e8858d423923778fdd5667297f63c2 (diff) | |
download | vdr-plugin-live-28dc5ea3134af9436057ef61114004e04ba66543.tar.gz vdr-plugin-live-28dc5ea3134af9436057ef61114004e04ba66543.tar.bz2 |
- added -Wno-unused-variable -Wno-non-virtual-dtor to avoid compiler warnings produced by tntnet
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.34 2007/05/05 21:59:58 tadi Exp $ +# $Id: Makefile,v 1.35 2007/05/24 06:59:05 winni Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -18,7 +18,9 @@ VERSION = $(shell grep 'const char \*Plugin::VERSION *=' $(PLUGIN).cpp | awk '{ ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual + +### tntnet produces some compiler warnings, so we add -Wno-unused-variable -Wno-non-virtual-dtor for nice output ;) +CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-unused-variable -Wno-non-virtual-dtor LDFLAGS ?= -fPIC -g ECPPC ?= ecppc |