libv4l:ver.bump

This commit is contained in:
Rmys
2018-08-06 18:35:41 +03:00
parent 98a93e1f16
commit 8a0f1dc486
+10 -3
View File
@@ -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():