From 5a93b63cc8b743587bf815c28b2843cb10e9a0de Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 19 Oct 2022 21:38:50 +0300 Subject: [PATCH] pixman rebuild --- x11/library/pixman/actions.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x11/library/pixman/actions.py b/x11/library/pixman/actions.py index 68df8e5da6..4a8827c96a 100644 --- a/x11/library/pixman/actions.py +++ b/x11/library/pixman/actions.py @@ -15,6 +15,7 @@ def setup(): # shelltools.system("sed -i 's/120/600/' test/meson.build") options = " --buildtype=release -Dloongson-mmi=disabled \ --prefix=/usr \ + --libdir=lib \ -Dvmx=disabled \ -Darm-simd=disabled \ -Dneon=disabled \ @@ -23,8 +24,10 @@ def setup(): -Dgtk=disabled" if get.buildTYPE() == "_emul32": - options += " -Dtests=disabled \ - --libdir=/usr/lib32 \ + shelltools.export("CC", "%s -m32" % get.CC()) + shelltools.export("CXX", "%s -m32" % get.CXX()) + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + options += " --libdir=lib32 \ " mesontools.configure(options)