summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDenis Loh <denis.loh@gmail.com>2009-10-27 20:46:39 +0100
committerDenis Loh <denis.loh@gmail.com>2009-10-27 20:46:39 +0100
commitbb94419e095defbe0c8c1297708b2b66f5b1ee44 (patch)
tree7fe9cf8a96b1e0b32bbd9446c6ce81ca51ec0566 /Makefile
parentc672d0018e24161434e63400f7dc23999d3f9c8a (diff)
downloadvdr-plugin-upnp-bb94419e095defbe0c8c1297708b2b66f5b1ee44.tar.gz
vdr-plugin-upnp-bb94419e095defbe0c8c1297708b2b66f5b1ee44.tar.bz2
Hopefully improved compatibility with DLNA devices
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fa6d29b..27aada4 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).cpp | awk '{ p
### The C++ compiler and options:
-CXX ?= g++
+CXX ?= gcc
CXXFLAGS ?= -fPIC -g -Wall -O2 -Wextra -Woverloaded-virtual -Wno-parentheses -Wl,-R/usr/local/lib
### The directory environment:
@@ -47,7 +47,7 @@ PACKAGE = vdr-$(ARCHIVE)
### Includes and Defines (add further entries here):
-LIBS += -lupnp -lixml -lsqlite3
+LIBS += -lupnp -lixml -lsqlite3 -lavformat -lavcodec
INCLUDES += -I$(VDRDIR)/include -I/usr/include \
@@ -67,6 +67,7 @@ OBJS = $(PLUGIN).o \
database/object.o \
database/resources.o \
server/server.o \
+ misc/avdetector.o \
upnpcomponents/dlna.o \
upnpcomponents/upnpwebserver.o \
upnpcomponents/upnpservice.o \