From a3523ed28147a10606f947a568bc13518f5a0325 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 16 Jan 2020 17:30:31 +0100 Subject: [PATCH] mesalib: Update from version 19.3.1 to 19.3.2 1. add option for glvnd 2. Enable Gallium driver *swr*, which supposedly better than *swrast* --- mesalib.be0 | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/mesalib.be0 b/mesalib.be0 index 4bd22ee5a..7d97bad86 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION mesalib-19.3.1-0 +# BEE_VERSION mesalib-19.3.2-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -56,10 +56,11 @@ SRCURL[0]="https://mesa.freedesktop.org/archive/mesa-${PKGVERSION}.tar.xz" mee_configure() { bee_configure \ -Dbuildtype=release \ - -Dgallium-drivers="nouveau,r600,radeonsi,svga,swrast" \ + -Dgallium-drivers="nouveau,r600,radeonsi,svga,swrast,swr" \ -Dvulkan-drivers="amd,intel" \ -Dosmesa=gallium \ - -Dvalgrind=false + -Dvalgrind=false \ + -Dglvnd=true } #mee_build() { @@ -70,14 +71,6 @@ mee_configure() { # bee_install #} -mee_install_post() { - mkdir -p ${D}${DATAROOTDIR}/mxgfx-generic/lib - ln -sf ${LIBDIR}/libGL.so.1.2.0 ${D}${DATAROOTDIR}/mxgfx-generic/lib/libGL.so.1 - - rm ${D}${LIBDIR}/libGL.so.1 - ln -sf ${DATAROOTDIR}/mxgfx/lib/libGL.so.1 ${D}${LIBDIR}/libGL.so.1 -} - ## by default this may be 'make install DESTDIR="${D}"' ###############################################################################