mirror of
https://src.fedoraproject.org/rpms/mesa.git
synced 2024-11-24 17:35:18 +00:00
Don't build vmware stuff on PPC (#815444)
This commit is contained in:
parent
bc226ca838
commit
41c41c0e31
1 changed files with 14 additions and 3 deletions
17
mesa.spec
17
mesa.spec
|
@ -11,9 +11,11 @@
|
|||
%define base_drivers nouveau,radeon,r200
|
||||
%ifarch %{ix86}
|
||||
%define ix86_drivers ,i915,i965
|
||||
%define with_vmware 1
|
||||
%endif
|
||||
%ifarch x86_64
|
||||
%define amd64_drivers ,i915,i965
|
||||
%define with_vmware 1
|
||||
%endif
|
||||
%ifarch ia64
|
||||
%define ia64_drivers ,i915
|
||||
|
@ -30,7 +32,7 @@
|
|||
Summary: Mesa graphics libraries
|
||||
Name: mesa
|
||||
Version: 8.0.2
|
||||
Release: 3%{?dist}
|
||||
Release: 4%{?dist}
|
||||
License: MIT
|
||||
Group: System Environment/Libraries
|
||||
URL: http://www.mesa3d.org
|
||||
|
@ -246,6 +248,7 @@ Provides: libwayland-egl-devel
|
|||
%description libwayland-egl-devel
|
||||
Mesa libwayland-egl development package
|
||||
|
||||
%if 0%{?with_vmware}
|
||||
%package libxatracker
|
||||
Summary: Mesa XA state tracker for vmware
|
||||
Group: System Environment/Libraries
|
||||
|
@ -264,6 +267,7 @@ Provides: libxatracker-devel
|
|||
|
||||
%description libxatracker-devel
|
||||
Mesa XA state tracker development package
|
||||
%endif
|
||||
|
||||
%package libglapi
|
||||
Summary: Mesa shared glapi
|
||||
|
@ -313,9 +317,9 @@ export CXXFLAGS="$RPM_OPT_FLAGS"
|
|||
--enable-shared-glapi \
|
||||
--enable-gbm \
|
||||
%if %{with_hardware}
|
||||
--with-gallium-drivers=svga,r300,r600,nouveau,swrast \
|
||||
--with-gallium-drivers=%{?with_vmware:svga,}r300,r600,nouveau,swrast \
|
||||
--enable-gallium-llvm \
|
||||
--enable-xa \
|
||||
%{?with_vmware:--enable-xa} \
|
||||
%else
|
||||
--disable-gallium-llvm \
|
||||
--with-gallium-drivers=swrast \
|
||||
|
@ -434,8 +438,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%endif
|
||||
%{_libdir}/dri/nouveau_dri.so
|
||||
%{_libdir}/dri/nouveau_vieux_dri.so
|
||||
%if 0%{?with_vmware}
|
||||
%{_libdir}/dri/vmwgfx_dri.so
|
||||
%endif
|
||||
%endif
|
||||
%{_libdir}/dri/swrast_dri.so
|
||||
|
||||
%files -n khrplatform-devel
|
||||
|
@ -535,6 +541,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%{_libdir}/libwayland-egl.so
|
||||
%{_libdir}/pkgconfig/wayland-egl.pc
|
||||
|
||||
%if 0%{?with_vmware}
|
||||
%files libxatracker
|
||||
%defattr(-,root,root,-)
|
||||
%doc docs/COPYING
|
||||
|
@ -552,8 +559,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%{_includedir}/xa_context.h
|
||||
%{_libdir}/pkgconfig/xatracker.pc
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Thu Apr 26 2012 Adam Jackson <ajax@redhat.com> 8.0.2-4
|
||||
- Don't build vmware stuff on PPC (#815444)
|
||||
|
||||
* Tue Apr 10 2012 Adam Jackson <ajax@redhat.com> 8.0.2-3
|
||||
- Require newer libX11 on F17+
|
||||
|
||||
|
|
Loading…
Reference in a new issue