CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
mesa3d: updated to 10.4.6
authorVictor Martinez <pitillo@ono.com>
Mon, 9 Mar 2015 09:19:31 +0000 (10:19 +0100)
committerVictor Martinez <pitillo@ono.com>
Mon, 9 Mar 2015 09:19:31 +0000 (10:19 +0100)
mesa3d/.md5sum
mesa3d/0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch [new file with mode: 0644]
mesa3d/Pkgfile

index f7a692c92ebb66a15ee6c5b194c3e64aabac3617..b44dc9c1fff270c507c115a10ab93a380a569dcb 100644 (file)
@@ -1 +1,2 @@
-fd44bf89d48d1744591d9dbe0ce1d54e  MesaLib-10.4.5.tar.bz2
+89a9862f747127feb5cc06ed86ebd2be  0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch
+b4f5e94d5d1fd2e4b1f9fd34d3d28595  MesaLib-10.4.6.tar.bz2
diff --git a/mesa3d/0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch b/mesa3d/0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch
new file mode 100644 (file)
index 0000000..7184c06
--- /dev/null
@@ -0,0 +1,33 @@
+From 89f4202c6b0477eba0ec62340b8882a4a5fa6949 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= <jfonseca@vmware.com>
+Date: Wed, 3 Dec 2014 07:48:26 +0000
+Subject: [PATCH 196/196] gallivm: Update for RTDyldMemoryManager becoming an
+ unique_ptr.
+
+Trivial.
+
+Fixes https://bugs.freedesktop.org/show_bug.cgi?id=86958
+---
+ src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+index fe3c754..5210acc 100644
+--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
++++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+@@ -500,8 +500,12 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
+        MM = new ShaderMemoryManager(JMM);
+        *OutCode = MM->getGeneratedCode();
++#if HAVE_LLVM >= 0x0306
++       builder.setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager>(MM));
++#else
+        builder.setMCJITMemoryManager(MM);
+ #endif
++#endif
+    } else {
+ #if HAVE_LLVM < 0x0306
+        BaseMemoryManager* JMM = reinterpret_cast<BaseMemoryManager*>(CMM);
+-- 
+2.2.1
+
index 23e0d391e9c768bb157cf3207d04734495968aec..084edb6d29d005f46ee51524b0019233be838ff3 100644 (file)
@@ -2,17 +2,19 @@
 # URL: http://www.mesa3d.org
 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
-# Depends on: expat libdrm libxml2-python talloc xorg-dri2proto xorg-glproto xorg-libxdamage xorg-libxt xorg-libxvmc xorg-libxxf86vm xorg-makedepend
+# Depends on: elfutils expat libdrm libvdpau libxml2-python llvm talloc xorg-dri3proto xorg-glproto xorg-libxdamage xorg-libxshmfence xorg-libxt xorg-libxvmc xorg-libxxf86vm xorg-makedepend xorg-presentproto
 
 name=mesa3d
-version=10.4.5
-release=2
-source=(ftp://ftp.freedesktop.org/pub/mesa/$version/MesaLib-$version.tar.bz2)
+version=10.4.6
+release=1
+source=(ftp://ftp.freedesktop.org/pub/mesa/$version/MesaLib-$version.tar.bz2 \
+        0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch)
 
 build() {
   cd Mesa-$version
-
+  patch -p1 -i $SRC/0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch
   autoreconf --install --symlink
+
   ./configure --prefix=/usr \
               --sysconfdir=/etc \
               --disable-gallium-llvm \