diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | src/vdr-plugin/Makefile | 7 |
2 files changed, 6 insertions, 3 deletions
@@ -209,4 +209,4 @@ Video site modules: SYSLIBDIR and DESTDIR in Makefiles, fix typos (patches by Ville Skyttä). - Command line arguments override config file. -- Support VDR 1.7 series (Make.global). Untested! +- Support VDR 1.7 series by including Make.global. diff --git a/src/vdr-plugin/Makefile b/src/vdr-plugin/Makefile index 04ed962..bd1eee5 100644 --- a/src/vdr-plugin/Makefile +++ b/src/vdr-plugin/Makefile @@ -18,7 +18,7 @@ VERSION = $(shell grep 'const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$5 ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses +CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: @@ -30,9 +30,12 @@ TMPDIR = /tmp LIBS = `xml2-config --libs` -L../libwebvi -lwebvi -### Allow user defined options to overwrite defaults: +### Make sure that necessary options are included: -include $(VDRDIR)/Make.global + +### Allow user defined options to overwrite defaults: + -include $(VDRDIR)/Make.config ### The version number of VDR's plugin API (taken from VDR's "config.h"): |