mirror of
https://src.fedoraproject.org/rpms/mesa.git
synced 2024-11-24 17:35:18 +00:00
revert disabling of hardware drivers, disable only llvm on PPC* (#819060)
This commit is contained in:
parent
c2a3b41769
commit
b4ef8dc9c0
1 changed files with 18 additions and 4 deletions
22
mesa.spec
22
mesa.spec
|
@ -1,8 +1,16 @@
|
||||||
# S390/PPC doesn't have video cards, but we need swrast for xserver's GLX
|
%if 0%{?rhel}
|
||||||
%ifarch s390 s390x ppc ppc64
|
%define rhel_no_hw_arches ppc ppc64 ppc64p7
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# S390 doesn't have video cards, but we need swrast for xserver's GLX
|
||||||
|
%ifarch s390 s390x %{?rhel_no_hw_arches}
|
||||||
%define with_hardware 0
|
%define with_hardware 0
|
||||||
%define dri_drivers --with-dri-drivers=swrast
|
%define dri_drivers --with-dri-drivers=swrast
|
||||||
%else
|
%else
|
||||||
|
# llvm has some serious issues on PPC*, disable usage
|
||||||
|
%ifnarch ppc ppc64 ppc64p7
|
||||||
|
%define with_llvm 1
|
||||||
|
%endif
|
||||||
%define with_hardware 1
|
%define with_hardware 1
|
||||||
%define base_drivers nouveau,radeon,r200
|
%define base_drivers nouveau,radeon,r200
|
||||||
%ifarch %{ix86}
|
%ifarch %{ix86}
|
||||||
|
@ -28,7 +36,7 @@
|
||||||
Summary: Mesa graphics libraries
|
Summary: Mesa graphics libraries
|
||||||
Name: mesa
|
Name: mesa
|
||||||
Version: 8.1
|
Version: 8.1
|
||||||
Release: 0.3%{?dist}
|
Release: 0.4%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://www.mesa3d.org
|
URL: http://www.mesa3d.org
|
||||||
|
@ -64,8 +72,10 @@ BuildRequires: libXmu-devel
|
||||||
BuildRequires: elfutils
|
BuildRequires: elfutils
|
||||||
BuildRequires: python
|
BuildRequires: python
|
||||||
%if %{with_hardware}
|
%if %{with_hardware}
|
||||||
|
%if 0%{?with_llvm}
|
||||||
BuildRequires: llvm-devel >= 3.0
|
BuildRequires: llvm-devel >= 3.0
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
BuildRequires: libxml2-python
|
BuildRequires: libxml2-python
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
BuildRequires: libtalloc-devel
|
BuildRequires: libtalloc-devel
|
||||||
|
@ -313,7 +323,7 @@ export CXXFLAGS="$RPM_OPT_FLAGS"
|
||||||
--enable-gbm \
|
--enable-gbm \
|
||||||
%if %{with_hardware}
|
%if %{with_hardware}
|
||||||
--with-gallium-drivers=%{?with_vmware:svga,}r300,r600,nouveau,swrast \
|
--with-gallium-drivers=%{?with_vmware:svga,}r300,r600,nouveau,swrast \
|
||||||
--enable-gallium-llvm \
|
%{?with_llvm:--enable-gallium-llvm} \
|
||||||
%{?with_vmware:--enable-xa} \
|
%{?with_vmware:--enable-xa} \
|
||||||
%else
|
%else
|
||||||
--disable-gallium-llvm \
|
--disable-gallium-llvm \
|
||||||
|
@ -562,6 +572,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 10 2012 Karsten Hopp <karsten@redhat.com> 8.1-0.4
|
||||||
|
- revert disabling of hardware drivers, disable only llvm on PPC*
|
||||||
|
(#819060)
|
||||||
|
|
||||||
* Tue May 01 2012 Adam Jackson <ajax@redhat.com> 8.1-0.3
|
* Tue May 01 2012 Adam Jackson <ajax@redhat.com> 8.1-0.3
|
||||||
- More RHEL tweaking: no pre-DX7 drivers, no wayland.
|
- More RHEL tweaking: no pre-DX7 drivers, no wayland.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue