summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xx/mesa/mesa.SlackBuild9
1 files changed, 6 insertions, 3 deletions
diff --git a/x/mesa/mesa.SlackBuild b/x/mesa/mesa.SlackBuild
index c86eef8..617f90f 100755
--- a/x/mesa/mesa.SlackBuild
+++ b/x/mesa/mesa.SlackBuild
@@ -21,7 +21,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PKGNAM=mesa
-VERSION=10.2.6
+VERSION=10.3.5
DEMOVERS=8.2.0
BUILD=${BUILD:-1}
@@ -77,13 +77,15 @@ find . \
# Apply patches from git (and maybe elsewhere):
# Patches obtained by:
# git checkout origin/10.2
-# git format-patch 816d37e5c59b50167e0b13c5e290a08f04ee166c.. # 10.2.4 release
+# git format-patch b14b3e678f011591ef7972fb61263bb202082add.. # 10.2.7 release
if /bin/ls $CWD/patches/*.patch 1> /dev/null 2> /dev/null ; then
for patch in $CWD/patches/*.patch ; do
patch -p1 < $patch || exit 1 ;
done
fi
+./autogen.sh
+
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
@@ -99,7 +101,7 @@ CFLAGS="$SLKCFLAGS" \
--enable-llvm-shared-libs \
--enable-egl \
--enable-texture-float \
- --disable-gallium-egl \
+ --enable-gallium-egl \
--enable-shared-glapi \
--enable-xa \
--enable-osmesa \
@@ -112,6 +114,7 @@ CFLAGS="$SLKCFLAGS" \
--enable-glx-tls \
--enable-gles1 \
--enable-gles2 \
+ --enable-vdpau \
--build=$ARCH-slackware-linux
make $NUMJOBS || make || exit 1