diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-27 11:58:09 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-27 11:58:09 +0100 |
commit | 28441aded5649e2650b9346f42d559768295651c (patch) | |
tree | 69a612f1f0150c4740597ed611eb5c10dc3be60c /Make.config.template | |
parent | 70c4a2d5d518309c7792ace4a9f6603748f39f4a (diff) | |
download | vdr-28441aded5649e2650b9346f42d559768295651c.tar.gz vdr-28441aded5649e2650b9346f42d559768295651c.tar.bz2 |
DVBDIR is now conveyed to plugins via the CFLAGS; removed some redundancy from Make.config.template
Diffstat (limited to 'Make.config.template')
-rw-r--r-- | Make.config.template | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Make.config.template b/Make.config.template index a2cc6976..6399b20a 100644 --- a/Make.config.template +++ b/Make.config.template @@ -6,7 +6,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Make.config.template 2.12 2012/12/22 10:54:47 kls Exp $ +# $Id: Make.config.template 2.13 2012/12/27 11:34:05 kls Exp $ ### The C compiler and options: @@ -17,12 +17,10 @@ CXX = g++ CXXFLAGS = $(CFLAGS) -Werror=overloaded-virtual -Wno-parentheses CFLAGS += -fPIC -CXXFLAGS += -fPIC # Use 'make M32=1 ...' to build a 32-bit version of VDR on a 64-bit machine: ifdef M32 CFLAGS += -m32 -CXXFLAGS += -m32 endif ### The directory environment: @@ -57,9 +55,3 @@ LIRC_DEVICE = /var/run/lirc/lircd ## Define if you want vdr to not run as root #VDR_USER = vdr - -### You don't need to touch the following: - -ifdef DVBDIR -INCLUDES += -I$(DVBDIR)/include -endif |