aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-11-23 21:38:52 +0100
committerAndreas Oberritter <obi@opendreambox.org>2010-11-23 21:38:52 +0100
commitea123678d957d0706c030a35f18026d163b0cad9 (patch)
tree0e409e88b29ce14acf1b7b5dc6d3d8aa9c6b2f0e /lib/python
parentc4d7f98e70694e471409cda6de03d0f3b5816f27 (diff)
downloadenigma2-ea123678d957d0706c030a35f18026d163b0cad9.tar.gz
enigma2-ea123678d957d0706c030a35f18026d163b0cad9.zip
DVDPlayer: add missing linker flags for libdreamdvd
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am b/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am
index 7aaec9bb..3e2ee67c 100644
--- a/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am
+++ b/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am
@@ -4,6 +4,8 @@ AM_CPPFLAGS = \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
+AM_CXXFLAGS = @LIBDDVD_CFLAGS@
+
plugindir = $(pkglibdir)/python/Plugins/Extensions/DVDPlayer
plugin_LTLIBRARIES = servicedvd.la
@@ -13,3 +15,4 @@ servicedvd_la_SOURCES = \
servicedvd.h
servicedvd_la_LDFLAGS = -avoid-version -module
+servicedvd_la_LIBADD = @LIBDDVD_LIBS@