diff options
author | Denis Loh <denis.loh@gmail.com> | 2009-10-27 20:46:39 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2009-10-27 20:46:39 +0100 |
commit | bb94419e095defbe0c8c1297708b2b66f5b1ee44 (patch) | |
tree | 7fe9cf8a96b1e0b32bbd9446c6ce81ca51ec0566 /Makefile | |
parent | c672d0018e24161434e63400f7dc23999d3f9c8a (diff) | |
download | vdr-plugin-upnp-bb94419e095defbe0c8c1297708b2b66f5b1ee44.tar.gz vdr-plugin-upnp-bb94419e095defbe0c8c1297708b2b66f5b1ee44.tar.bz2 |
Hopefully improved compatibility with DLNA devices
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 \ |