From 8a0f1dc48618ee2155127f84d35738682a44db16 Mon Sep 17 00:00:00 2001 From: Rmys Date: Mon, 6 Aug 2018 18:35:41 +0300 Subject: [PATCH] libv4l:ver.bump --- multimedia/video/libv4l/actions.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/multimedia/video/libv4l/actions.py b/multimedia/video/libv4l/actions.py index d653184483..9c04229569 100644 --- a/multimedia/video/libv4l/actions.py +++ b/multimedia/video/libv4l/actions.py @@ -11,10 +11,17 @@ from pisi.actionsapi import get def setup(): #autotools.autoreconf("-vfi") - autotools.configure("--disable-static \ - --disable-rpath") + options = "--disable-static \ + --disable-rpath \ + " + + if get.buildTYPE() == "emul32": + options += "--disable-qv4l2" + + + autotools.configure(options) - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") def build():