From d55d73c6bbbfaaeef16971224a61f367a323d11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 4 Mar 2011 15:57:14 +0100 Subject: [PATCH] enable gallium-llvm only when with_hardware is set (workarounds linking failure on s390(x)) --- mesa.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mesa.spec b/mesa.spec index eba38a6..265d4d6 100644 --- a/mesa.spec +++ b/mesa.spec @@ -15,7 +15,7 @@ Summary: Mesa graphics libraries Name: mesa Version: 7.10 -Release: 0.27%{?dist} +Release: 0.28%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -267,15 +267,16 @@ mv libllvmcore*.so %{_lib} --enable-egl \ --enable-gles1 \ --enable-gles2 \ - --enable-gallium-llvm \ --disable-gallium-intel \ --disable-gallium-svga \ --disable-gallium-egl \ %if %{with_hardware} + --enable-gallium-llvm \ --enable-gallium-radeon \ --enable-gallium-r600 \ --enable-gallium-nouveau \ %else + --disable-gallium-llvm \ --disable-gallium-radeon \ --disable-gallium-r600 \ --disable-gallium-nouveau \ @@ -473,6 +474,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libOSMesa.so %changelog +* Fri Mar 04 2011 Dan HorĂ¡k 7.10-0.28 +- enable gallium-llvm only when with_hardware is set (workarounds linking + failure on s390(x)) + * Wed Feb 23 2011 Jerome Glisse 7.10-0.27 - Build without -fno-omit-frame-pointer as gcc 4.6.0 seems to lead to bogus code with that option (#679924)