summaryrefslogtreecommitdiff
path: root/recipes/libdv.recipe
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-11-13 16:53:31 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-11-13 16:53:31 +0100
commitd3124b1a1ee4eedfedd2d11ca2c669193108e343 (patch)
tree68b9079b3fc421f7dce6fa7de8ba193b5d961f2a /recipes/libdv.recipe
parentdfdb23d6e455cfbcef3ac4ff39c587e54a3baa25 (diff)
Enable the DV plugin on Windows and Android
Diffstat (limited to 'recipes/libdv.recipe')
-rw-r--r--recipes/libdv.recipe5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/libdv.recipe b/recipes/libdv.recipe
index 6480d3cf..dae2e7db 100644
--- a/recipes/libdv.recipe
+++ b/recipes/libdv.recipe
@@ -5,14 +5,15 @@ class Recipe(recipe.Recipe):
name = 'libdv'
version = '1.0.0'
licenses = [License.LGPLv2_1Plus]
+ autoreconf = True
files_libs = ['libdv']
- files_bins = ['dvconnect', 'encodedv', 'dubdv']
files_devel = ['include/libdv', 'lib/pkgconfig/libdv.pc']
def prepare(self):
if self.config.target_platform == Platform.WINDOWS:
- self.configure_options = ' --disable-xv --without-x'
+ self.configure_options = ' --disable-asm --disable-xv --without-x'
+ self.append_env = {'LDFLAGS': '-lpthread'}
if self.config.target_platform == Platform.DARWIN:
self.configure_options += ' --disable-asm --disable-xv --without-x'
if self.config.target_platform == Platform.ANDROID: