mesa-vl.spec 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484
  1. # When bootstrapping an arch, omit the -demos subpackage.
  2. %bcond_with vulkan
  3. %bcond_with libva
  4. %bcond_with glvnd
  5. %define _unpackaged_files_terminate_build 1
  6. %define base_drivers swrast,nouveau,radeon,r200
  7. %ifarch %{ix86}
  8. %define ix86_drivers ,i915,i965
  9. %endif
  10. %ifarch x86_64
  11. %define amd64_drivers ,i915,i965
  12. %endif
  13. %define dri_drivers --with-dri-drivers=%{base_drivers}%{?ix86_drivers}%{?amd64_drivers}
  14. %ifarch %{ix86} x86_64
  15. #define with_opencl 1
  16. %if %{with vulkan}
  17. %define vulkan_drivers --with-vulkan-drivers=intel,radeon
  18. %endif
  19. %endif
  20. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  21. Summary: Mesa graphics libraries
  22. Summary(ja): Mesa グラフィックスライブラリ
  23. Name: mesa
  24. Version: 17.3.1
  25. Release: 1%{?_dist_release}
  26. License: MIT
  27. Group: System Environment/Libraries
  28. URL: http://www.mesa3d.org
  29. Source0: ftp://ftp.freedesktop.org/pub/mesa/%{version}/%{name}-%{version}.tar.xz
  30. Source1: vl_decoder.c
  31. Source2: vl_mpeg12_decoder.c
  32. Source3: Makefile
  33. # src/gallium/auxiliary/postprocess/pp_mlaa* have an ... interestingly worded license.
  34. # Source4 contains email correspondence clarifying the license terms.
  35. # Fedora opts to ignore the optional part of clause 2 and treat that code as 2 clause BSD.
  36. Source4: Mesa-MLAA-License-Clarification-Email.txt
  37. Patch1: 0001-llvm-SONAME-without-version.patch
  38. Patch2: 0002-hardware-gloat.patch
  39. Patch3: 0003-evergreen-big-endian.patch
  40. Patch4: 0004-bigendian-assert.patch
  41. # glvnd support patches
  42. # non-upstreamed ones
  43. Patch10: glvnd-fix-gl-dot-pc.patch
  44. Patch11: 0001-Fix-linkage-against-shared-glapi.patch
  45. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  46. BuildRequires: pkgconfig
  47. BuildRequires: flex, bison
  48. BuildRequires: libdrm-devel >= 2.4.60
  49. BuildRequires: libXxf86vm-devel
  50. BuildRequires: expat-devel >= 2.0
  51. BuildRequires: xorg-x11-proto-devel >= 7.4
  52. BuildRequires: xorg-x11-server-sdk
  53. BuildRequires: kernel-headers
  54. BuildRequires: makedepend
  55. BuildRequires: libXext-devel
  56. BuildRequires: libXfixes-devel
  57. BuildRequires: libXdamage-devel
  58. BuildRequires: libXi-devel
  59. BuildRequires: libXmu-devel
  60. BuildRequires: libxshmfence-devel
  61. BuildRequires: eudev-libudev-devel
  62. BuildRequires: llvm-devel >= 3.4
  63. %if 0%{?with_opencl}
  64. BuildRequires: clang-devel >= 3.3
  65. %endif
  66. BuildRequires: libxml2-python
  67. BuildRequires: libvdpau-devel >= 1.1
  68. BuildRequires: elfutils-libelf-devel
  69. BuildRequires: zlib-devel
  70. %if %{with vulkan}
  71. BuildRequires: vulkan-devel
  72. %endif
  73. %description
  74. Mesa
  75. %package libGL
  76. Summary: Mesa libGL runtime libraries
  77. Summary(ja): Mesa libGL ランタイプライブラリ
  78. Group: System Environment/Libraries
  79. Requires(post): /sbin/ldconfig
  80. Requires(postun): /sbin/ldconfig
  81. Provides: libGL
  82. Obsoletes: Mesa, XFree86-gl, XOrg-gl
  83. %description libGL
  84. Mesa libGL runtime libraries and DRI drivers.
  85. %package libGL-devel
  86. Summary: Mesa libGL development package
  87. Summary(ja): Mesa libGL 開発パッケージ
  88. Group: Development/Libraries
  89. Provides: libGL-devel
  90. Requires: mesa-libGL = %{version}-%{release}
  91. Requires: libX11-devel
  92. Requires: libXxf86vm-devel
  93. Requires: libXdamage-devel
  94. Requires: libXfixes-devel
  95. Requires: libXext-devel
  96. Requires: libdrm-devel
  97. Obsoletes: Mesa-devel, XFree86-gl-devel, XOrg-gl-devel
  98. %description libGL-devel
  99. Mesa libGL development package
  100. %package dri-drivers
  101. Summary: Mesa-based DRI drivers
  102. Summary(ja): Mesa ベースの DRI ドライバ
  103. Group: User Interface/X Hardware Support
  104. Obsoletes: mesa-libGL < 8.0.4
  105. %description dri-drivers
  106. Mesa-based DRI drivers.
  107. %package vdpau-drivers
  108. Summary: Mesa-based VDPAU drivers
  109. Summary(ja): Mesa ベースの VDPAU ドライバ
  110. Group: User Interface/X Hardware Support
  111. Requires: libvdpau
  112. %description vdpau-drivers
  113. Mesa-based VDPAU drivers.
  114. %package libEGL
  115. Summary: Mesa libEGL runtime libraries
  116. Summary(ja): Mesa libEGL ランタイムライブラリ
  117. Group: System Environment/Libraries
  118. Requires(post): /sbin/ldconfig
  119. Requires(postun): /sbin/ldconfig
  120. Requires: libdrm >= 2.4.24-1
  121. %description libEGL
  122. Mesa libEGL runtime libraries
  123. %package libEGL-devel
  124. Summary: Mesa libEGL development package
  125. Summary(ja): Mesa libEGL 開発パッケージ
  126. Group: Development/Libraries
  127. Requires: mesa-libEGL = %{version}-%{release}
  128. %description libEGL-devel
  129. Mesa libEGL development package
  130. %package libGLES
  131. Summary: Mesa libGLES runtime libraries
  132. Summary(ja): Mesa libGLES ランタイムライブラリ
  133. Group: System Environment/Libraries
  134. Requires(post): /sbin/ldconfig
  135. Requires(postun): /sbin/ldconfig
  136. Requires: libdrm >= 2.4.24-1
  137. %description libGLES
  138. Mesa GLES runtime libraries
  139. %package libGLES-devel
  140. Summary: Mesa libGLES development package
  141. Summary(ja): Mesa libGLES 開発パッケージ
  142. Group: Development/Libraries
  143. Requires: mesa-libGLES = %{version}-%{release}
  144. %description libGLES-devel
  145. Mesa libGLES development package
  146. %package libOSMesa
  147. Summary: Mesa offscreen rendering libraries
  148. Summary(ja): Mesa オフスクリーンレンダリングライブラリ
  149. Group: System Environment/Libraries
  150. Requires(post): /sbin/ldconfig
  151. Requires(postun): /sbin/ldconfig
  152. Provides: libOSMesa
  153. %description libOSMesa
  154. Mesa offscreen rendering libraries
  155. %package libOSMesa-devel
  156. Summary: Mesa offscreen rendering development package
  157. Summary(ja): Mesa オフスクリーンレンダリング開発パッケージ
  158. Group: Development/Libraries
  159. Requires: mesa-libOSMesa = %{version}-%{release}
  160. %description libOSMesa-devel
  161. Mesa offscreen rendering development package
  162. %package libgbm
  163. Summary: Mesa gbm library
  164. Summary(ja): Mesa gbm ライブラリ
  165. Group: System Environment/Libraries
  166. Provides: libgbm
  167. %description libgbm
  168. Mesa gbm runtime library.
  169. %package libgbm-devel
  170. Summary: Mesa libgbm development package
  171. Summary(ja): Mesa gbm ライブラリ開発パッケージ
  172. Group: Development/Libraries
  173. Provides: libgbm-devel
  174. Requires: mesa-libgbm = %{version}-%{release}
  175. %description libgbm-devel
  176. Mesa libgbm development package
  177. %package libglapi
  178. Summary: Mesa shared glapi
  179. Group: System Environment/Libraries
  180. Provides: libglapi
  181. %description libglapi
  182. Mesa shared glapi
  183. %package libxatracker
  184. Summary: Mesa XA state tracker for vmware
  185. Summary(ja): VMware 用 Mesa XA ステートトラッカー
  186. Group: System Environment/Libraries
  187. Provides: libxatracker
  188. %description libxatracker
  189. Mesa XA state tracker for vmware
  190. %package libxatracker-devel
  191. Summary: Mesa XA state tracker development package
  192. Summary(ja): Mesa XA ステートトラッカー開発パッケージ
  193. Group: Development/Libraries
  194. Requires: mesa-libxatracker = %{version}-%{release}
  195. Provides: libxatracker-devel
  196. %description libxatracker-devel
  197. Mesa XA state tracker development package
  198. %package source
  199. Summary: Mesa source code required to build X server
  200. Summary(ja): X サーバをビルドするために必要な Mesa ソースコード
  201. Group: Development/Libraries
  202. %description source
  203. The mesa-source package provides the minimal source code needed to
  204. build DRI enabled X servers, etc.
  205. # compat32
  206. %package -n compat32-%{name}-libGL
  207. Summary: Mesa libGL runtime libraries and DRI drivers
  208. Summary(ja): Mesa libGL ランタイプライブラリおよび DRI ドライバ
  209. Group: System Environment/Libraries
  210. Requires(post): /sbin/ldconfig
  211. Requires(postun): /sbin/ldconfig
  212. Requires: %{name}-libGL = %{version}-%{release}
  213. Requires: compat32-libdrm >= 2.4.5
  214. %description -n compat32-%{name}-libGL
  215. Mesa libGL runtime libraries and DRI drivers.
  216. %package -n compat32-%{name}-libGL-devel
  217. Summary: Mesa libGL development package
  218. Summary(ja): Mesa libGL 開発パッケージ
  219. Group: Development/Libraries
  220. Requires: compat32-%{name}-libGL = %{version}-%{release}
  221. Requires: %{name}-libGL-devel = %{version}-%{release}
  222. Requires: compat32-libX11-devel
  223. Requires: compat32-libdrm-devel
  224. %description -n compat32-%{name}-libGL-devel
  225. Mesa libGL development package
  226. %package -n compat32-%{name}-libEGL
  227. Summary: Mesa libEGL runtime libraries
  228. Summary(ja): Mesa libEGL ランタイムライブラリ
  229. Group: System Environment/Libraries
  230. Requires(post): /sbin/ldconfig
  231. Requires(postun): /sbin/ldconfig
  232. Requires: compat32-libdrm >= 2.4.24-1
  233. %description -n compat32-%{name}-libEGL
  234. Mesa libEGL runtime libraries
  235. %package -n compat32-%{name}-libEGL-devel
  236. Summary: Mesa libEGL development package
  237. Summary(ja): Mesa libEGL 開発パッケージ
  238. Group: Development/Libraries
  239. Requires: mesa-libEGL = %{version}-%{release}
  240. Requires: compat32-mesa-libEGL = %{version}-%{release}
  241. %description -n compat32-%{name}-libEGL-devel
  242. Mesa libEGL development package
  243. %package -n compat32-%{name}-libGLES
  244. Summary: Mesa libGLES runtime libraries
  245. Summary(ja): Mesa libGLES ランタイムライブラリ
  246. Group: System Environment/Libraries
  247. Requires(post): /sbin/ldconfig
  248. Requires(postun): /sbin/ldconfig
  249. Requires: compat32-libdrm >= 2.4.24-1
  250. %description -n compat32-%{name}-libGLES
  251. Mesa GLES runtime libraries
  252. %package -n compat32-%{name}-libGLES-devel
  253. Summary: Mesa libGLES development package
  254. Summary(ja): Mesa libGLES 開発パッケージ
  255. Group: Development/Libraries
  256. Requires: mesa-libGLES = %{version}-%{release}
  257. Requires: compat32-mesa-libGLES = %{version}-%{release}
  258. %description -n compat32-%{name}-libGLES-devel
  259. Mesa libGLES development package
  260. %package -n compat32-%{name}-libOSMesa
  261. Summary: Mesa offscreen rendering libraries
  262. Summary(ja): Mesa オフスクリーンレンダリングライブラリ
  263. Group: System Environment/Libraries
  264. Requires(post): /sbin/ldconfig
  265. Requires(postun): /sbin/ldconfig
  266. Requires: %{name}-libOSMesa
  267. %description -n compat32-%{name}-libOSMesa
  268. Mesa offscreen rendering libraries
  269. %package -n compat32-%{name}-libOSMesa-devel
  270. Summary: Mesa offscreen rendering development package
  271. Summary(ja): Mesa オフスクリーンレンダリング開発パッケージ
  272. Group: Development/Libraries
  273. Requires: compat32-%{name}-libOSMesa = %{version}-%{release}
  274. Requires: %{name}-libOSMesa-devel = %{version}-%{release}
  275. %description -n compat32-%{name}-libOSMesa-devel
  276. Mesa offscreen rendering development package
  277. %package -n compat32-%{name}-libxatracker
  278. Summary: Mesa XA state tracker for vmware
  279. Summary(ja): VMware 用 Mesa XA ステートトラッカー
  280. Group: System Environment/Libraries
  281. Requires(post): /sbin/ldconfig
  282. Requires(postun): /sbin/ldconfig
  283. Requires: %{name}-libxatracker
  284. %description -n compat32-%{name}-libxatracker
  285. Mesa XA state tracker for vmware
  286. %package -n compat32-%{name}-libgbm
  287. Summary: Mesa gbm library
  288. Summary(ja): Mesa gbm ライブラリ
  289. Group: System Environment/Libraries
  290. Requires: %{name}-libgbm
  291. %description -n compat32-%{name}-libgbm
  292. Mesa gbm runtime library.
  293. %package -n compat32-%{name}-libglapi
  294. Summary: Mesa shared glapi
  295. Group: System Environment/Libraries
  296. Requires: %{name}-libglapi
  297. %description -n compat32-%{name}-libglapi
  298. Mesa shared glapi
  299. %package -n compat32-%{name}-dri-drivers
  300. Summary: Mesa-based DRI drivers
  301. Summary(ja): Mesa ベースの DRI ドライバ
  302. Group: User Interface/X Hardware Support
  303. Obsoletes: mesa-libGL < 8.0.4
  304. %description -n compat32-%{name}-dri-drivers
  305. Mesa-based DRI drivers.
  306. %if %{with vulkan}
  307. %package vulkan-drivers
  308. Summary: Mesa Vulkan drivers
  309. Requires: vulkan%{_isa}
  310. %description vulkan-drivers
  311. The drivers with support for the Vulkan API.
  312. %package vulkan-devel
  313. Summary: Mesa Vulkan development files
  314. Requires: %{name}-vulkan-drivers%{?_isa} = %{?epoch:%{epoch}}%{version}-%{
  315. release}
  316. Requires: vulkan-devel
  317. %description vulkan-devel
  318. Headers for development with the Vulkan API.
  319. %endif
  320. %prep
  321. %autosetup -n %{name}-%{version} -p1
  322. cp -f %{SOURCE1} src/gallium/auxiliary/vl/vl_decoder.c
  323. cp -f %{SOURCE2} src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
  324. cp %{SOURCE4} docs/
  325. # this is a hack for S3TC support. r200_screen.c is symlinked to
  326. # radeon_screen.c in git, but is its own file in the tarball.
  327. cp -f src/mesa/drivers/dri/{radeon,r200}/radeon_screen.c
  328. %build
  329. # default to dri (not xlib) for libGL on all arches
  330. # XXX please fix upstream
  331. sed -i 's/^default_driver.*$/default_driver="dri"/' configure.ac
  332. autoreconf -vfi
  333. # C++ note: we never say "catch" in the source. we do say "typeid" once,
  334. # in an assert, which is patched out above. LLVM doesn't use RTTI or throw.
  335. #
  336. # We do say 'catch' in the clover and d3d1x state trackers, but we're not
  337. # building those yet.
  338. export CXXFLAGS="%{?with_opencl:-frtti -fexceptions} %{!?with_opencl:-fno-rtti -fno-exceptions}"
  339. export LDFLAGS="-static-libstdc++"
  340. %ifarch %{ix86}
  341. # i do not have words for how much the assembly dispatch code infuriates me
  342. %global asm_flags --disable-asm
  343. %endif
  344. # now build the rest of mesa
  345. %configure \
  346. %{?asm_flags} \
  347. %if %{with glvnd}
  348. --enable-libglvnd \
  349. %endif
  350. --disable-selinux \
  351. --enable-gallium-osmesa \
  352. --with-dri-driverdir=%{_libdir}/dri \
  353. --enable-egl \
  354. --enable-gles1 \
  355. --enable-gles2 \
  356. --disable-xvmc \
  357. --enable-vdpau \
  358. %if %{with libva}
  359. --enable-va \
  360. %endif
  361. --with-platforms=x11,drm,surfaceless \
  362. --enable-shared-glapi \
  363. --enable-gbm \
  364. %{?with_opencl:--enable-opencl --enable-opencl-icd} %{!?with_opencl:--disable-opencl} \
  365. --enable-glx-tls \
  366. --enable-texture-float=yes \
  367. %if %{with vulkan}
  368. %{?vulkan_drivers} \
  369. %endif
  370. --enable-gallium-llvm \
  371. --enable-llvm \
  372. --with-llvm-shared-libs \
  373. --enable-dri \
  374. --enable-xa \
  375. --with-gallium-drivers=svga,r300,r600,radeonsi,nouveau,swrast \
  376. %{?dri_drivers}
  377. # libtool refuses to pass through things you ask for in LDFLAGS that it doesn't
  378. # know about, like -static-libstdc++, so...
  379. sed -i 's/-fuse-linker-plugin|/-static-lib*|&/' libtool
  380. sed -i 's/-nostdlib//g' libtool
  381. sed -i 's/^predep_objects=.*$/#&/' libtool
  382. sed -i 's/^postdep_objects=.*$/#&/' libtool
  383. sed -i 's/^postdeps=.*$/#&/' libtool
  384. make %{?_smp_mflags} MKDEP=/bin/true V=1
  385. %install
  386. rm -rf $RPM_BUILD_ROOT
  387. # core libs and headers, but not drivers.
  388. make install DESTDIR=$RPM_BUILD_ROOT DRI_DIRS=
  389. # libvdpau opens the versioned name, don't bother including the unversioned
  390. rm -f %{buildroot}%{_libdir}/vdpau/*.so
  391. # likewise glvnd
  392. %if %{with glvnd}
  393. rm -f %{buildroot}%{_libdir}/libGLX_mesa.so
  394. rm -f %{buildroot}%{_libdir}/libEGL_mesa.so
  395. # XXX can we just not build this
  396. rm -f %{buildroot}%{_libdir}/libGLES*
  397. # glvnd needs a default provider for indirect rendering where it cannot
  398. # determine the vendor
  399. ln -s %{_libdir}/libGLX_mesa.so.0 %{buildroot}%{_libdir}/libGLX_indirect.so.0
  400. %endif
  401. # strip out useless headers
  402. rm -f %{buildroot}%{_includedir}/GL/w*.h
  403. # these are shipped already in vulkan-devel
  404. rm -f %{buildroot}/%{_includedir}/vulkan/vk_platform.h
  405. rm -f %{buildroot}/%{_includedir}/vulkan/vulkan.h
  406. pushd $RPM_BUILD_ROOT%{_libdir}
  407. rm -f xorg/modules/drivers/modesetting_drv.so
  408. popd
  409. # remove .la files
  410. find %{buildroot} -name '*.la' -delete
  411. # Install the source needed to build the X server. The egreps are just
  412. # stripping out unnecessary dirs; only tricky bit is the [^c] to make sure
  413. # .../dri/common is included.
  414. %define mesasourcedir %{_datadir}/mesa/source
  415. mkdir -p $RPM_BUILD_ROOT/%{mesasourcedir}
  416. ( find src -name \*.[ch] ; find include -name \*.h ) |
  417. egrep -v '^src/(glu|glw)' |
  418. egrep -v '^src/mesa/drivers/(directfb|dos|fbdev|glide|ggi|osmesa)' |
  419. egrep -v '^src/mesa/drivers/(windows|dri/[^c])' |
  420. xargs tar cf - --mode a=r |
  421. (cd $RPM_BUILD_ROOT/%{mesasourcedir} && tar xf -)
  422. # this keeps breaking, check it early. note that the exit from eu-ftr is odd.
  423. pushd %{buildroot}%{_libdir}
  424. for i in libOSMesa*.so libGL.so ; do
  425. eu-findtextrel $i && exit 1
  426. done
  427. # check that we really didn't link libstdc++ dynamically
  428. eu-readelf -d mesa_dri_drivers.so | grep -q libstdc && exit 1
  429. popd
  430. %clean
  431. rm -rf $RPM_BUILD_ROOT
  432. %check
  433. %post libGL -p /sbin/ldconfig
  434. %postun libGL -p /sbin/ldconfig
  435. %post libOSMesa -p /sbin/ldconfig
  436. %postun libOSMesa -p /sbin/ldconfig
  437. %post libEGL -p /sbin/ldconfig
  438. %postun libEGL -p /sbin/ldconfig
  439. %post libGLES -p /sbin/ldconfig
  440. %postun libGLES -p /sbin/ldconfig
  441. %post libglapi -p /sbin/ldconfig
  442. %postun libglapi -p /sbin/ldconfig
  443. %post libgbm -p /sbin/ldconfig
  444. %postun libgbm -p /sbin/ldconfig
  445. %post libxatracker -p /sbin/ldconfig
  446. %postun libxatracker -p /sbin/ldconfig
  447. %if %{build_compat32}
  448. %post -n compat32-%{name}-libGL -p /sbin/ldconfig
  449. %postun -n compat32-%{name}-libGL -p /sbin/ldconfig
  450. %post -n compat32-%{name}-libOSMesa -p /sbin/ldconfig
  451. %postun -n compat32-%{name}-libOSMesa -p /sbin/ldconfig
  452. %post -n compat32-%{name}-libEGL -p /sbin/ldconfig
  453. %postun -n compat32-%{name}-libEGL -p /sbin/ldconfig
  454. %post -n compat32-%{name}-libGLES -p /sbin/ldconfig
  455. %postun -n compat32-%{name}-libGLES -p /sbin/ldconfig
  456. %post -n compat32-%{name}-libglapi -p /sbin/ldconfig
  457. %postun -n compat32-%{name}-libglapi -p /sbin/ldconfig
  458. %post -n compat32-%{name}-libgbm -p /sbin/ldconfig
  459. %postun -n compat32-%{name}-libgbm -p /sbin/ldconfig
  460. %post -n compat32-%{name}-libxatracker -p /sbin/ldconfig
  461. %postun -n compat32-%{name}-libxatracker -p /sbin/ldconfig
  462. %endif
  463. %files libGL
  464. %defattr(-,root,root,-)
  465. %{_libdir}/libGL.so.1
  466. %{_libdir}/libGL.so.1.2*
  467. %files libGL-devel
  468. %defattr(-,root,root,-)
  469. %{_includedir}/GL/gl.h
  470. %{_includedir}/GL/gl_mangle.h
  471. %{_includedir}/GL/glext.h
  472. %{_includedir}/GL/glx.h
  473. %{_includedir}/GL/glx_mangle.h
  474. %{_includedir}/GL/glxext.h
  475. %{_includedir}/GL/glcorearb.h
  476. %dir %{_includedir}/GL/internal
  477. %{_includedir}/GL/internal/dri_interface.h
  478. %{_libdir}/libGL.so
  479. %{_libdir}/libglapi.so
  480. %{_libdir}/pkgconfig/gl.pc
  481. %{_libdir}/pkgconfig/dri.pc
  482. %files dri-drivers
  483. %defattr(-,root,root,-)
  484. %config(noreplace) %{_sysconfdir}/drirc
  485. %dir %{_libdir}/dri
  486. %{_libdir}/dri/*_dri.so
  487. %files vdpau-drivers
  488. %defattr(-,root,root,-)
  489. %{_libdir}/vdpau/libvdpau_nouveau.so.1*
  490. %{_libdir}/vdpau/libvdpau_r300.so.1*
  491. %{_libdir}/vdpau/libvdpau_r600.so.1*
  492. %{_libdir}/vdpau/libvdpau_radeonsi.so.1*
  493. %files libEGL
  494. %defattr(-,root,root,-)
  495. %{_libdir}/libEGL.so.1
  496. %{_libdir}/libEGL.so.1.*
  497. %files libEGL-devel
  498. %defattr(-,root,root,-)
  499. %dir %{_includedir}/EGL
  500. %{_includedir}/EGL/eglext.h
  501. %{_includedir}/EGL/egl.h
  502. %{_includedir}/EGL/eglplatform.h
  503. %{_includedir}/EGL/eglmesaext.h
  504. %{_includedir}/EGL/eglextchromium.h
  505. %dir %{_includedir}/KHR
  506. %{_includedir}/KHR/*.h
  507. %{_libdir}/pkgconfig/egl.pc
  508. %{_libdir}/libEGL.so
  509. %files libGLES
  510. %defattr(-,root,root,-)
  511. %{_libdir}/libGLESv1_CM.so.1
  512. %{_libdir}/libGLESv1_CM.so.1.*
  513. %{_libdir}/libGLESv2.so.2
  514. %{_libdir}/libGLESv2.so.2.*
  515. %{_libdir}/libglapi.so.0
  516. %{_libdir}/libglapi.so.0.*
  517. %files libGLES-devel
  518. %defattr(-,root,root,-)
  519. %dir %{_includedir}/GLES
  520. %{_includedir}/GLES/egl.h
  521. %{_includedir}/GLES/gl.h
  522. %{_includedir}/GLES/glext.h
  523. %{_includedir}/GLES/glplatform.h
  524. %dir %{_includedir}/GLES2
  525. %{_includedir}/GLES2/gl2platform.h
  526. %{_includedir}/GLES2/gl2.h
  527. %{_includedir}/GLES2/gl2ext.h
  528. %dir %{_includedir}/GLES3
  529. %{_includedir}/GLES3/gl3platform.h
  530. %{_includedir}/GLES3/gl3.h
  531. %{_includedir}/GLES3/gl3ext.h
  532. %{_includedir}/GLES3/gl31.h
  533. %{_includedir}/GLES3/gl32.h
  534. %{_libdir}/pkgconfig/glesv1_cm.pc
  535. %{_libdir}/pkgconfig/glesv2.pc
  536. %{_libdir}/libGLESv1_CM.so
  537. %{_libdir}/libGLESv2.so
  538. %files libOSMesa
  539. %defattr(-,root,root,-)
  540. %{_libdir}/libOSMesa.so.*
  541. %files libOSMesa-devel
  542. %defattr(-,root,root,-)
  543. %dir %{_includedir}/GL
  544. %{_includedir}/GL/osmesa.h
  545. %{_libdir}/libOSMesa.so
  546. %{_libdir}/pkgconfig/osmesa.pc
  547. %files libglapi
  548. %{_libdir}/libglapi.so.0
  549. %{_libdir}/libglapi.so.0.*
  550. %files libgbm
  551. %defattr(-,root,root,-)
  552. %{_libdir}/libgbm.so.1
  553. %{_libdir}/libgbm.so.1.*
  554. %files libgbm-devel
  555. %defattr(-,root,root,-)
  556. %{_libdir}/libgbm.so
  557. %{_includedir}/gbm.h
  558. %{_libdir}/pkgconfig/gbm.pc
  559. %files libxatracker
  560. %defattr(-,root,root,-)
  561. %{_libdir}/libxatracker.so.2
  562. %{_libdir}/libxatracker.so.2.*
  563. %files libxatracker-devel
  564. %defattr(-,root,root,-)
  565. %{_libdir}/libxatracker.so
  566. %{_includedir}/xa_tracker.h
  567. %{_includedir}/xa_composite.h
  568. %{_includedir}/xa_context.h
  569. %{_libdir}/pkgconfig/xatracker.pc
  570. # We constructed this dir carefully, so just slurp in the whole thing.
  571. %files source
  572. %defattr(-,root,root,-)
  573. %{mesasourcedir}
  574. %if %{with vulkan}
  575. %files vulkan-drivers
  576. %{_libdir}/libvulkan_intel.so
  577. %{_libdir}/libvulkan_radeon.so
  578. %ifarch x86_64
  579. %{_datadir}/vulkan/icd.d/intel_icd.x86_64.json
  580. %{_datadir}/vulkan/icd.d/radeon_icd.x86_64.json
  581. %else
  582. %{_datadir}/vulkan/icd.d/intel_icd.i686.json
  583. %{_datadir}/vulkan/icd.d/radeon_icd.i686.json
  584. %endif
  585. %files vulkan-devel
  586. %{_includedir}/vulkan/
  587. %endif
  588. # compat32
  589. %if %{build_compat32}
  590. %files -n compat32-%{name}-libGL
  591. %defattr(-,root,root,-)
  592. %{_libdir}/libGL.so.1
  593. %{_libdir}/libGL.so.1.2*
  594. #%dir %{_libdir}/dri
  595. #%{_libdir}/dri/*_dri.so
  596. %files -n compat32-%{name}-libGL-devel
  597. %defattr(-,root,root,-)
  598. %{_libdir}/libGL.so
  599. %files -n compat32-%{name}-libOSMesa
  600. %defattr(-,root,root,-)
  601. %{_libdir}/libOSMesa.so.*
  602. %files -n compat32-%{name}-libOSMesa-devel
  603. %defattr(-,root,root,-)
  604. %{_libdir}/libOSMesa.so
  605. %files -n compat32-%{name}-libEGL
  606. %defattr(-,root,root,-)
  607. %{_libdir}/libEGL.so.1
  608. %{_libdir}/libEGL.so.1.*
  609. %files -n compat32-%{name}-libEGL-devel
  610. %defattr(-,root,root,-)
  611. %{_libdir}/libEGL.so
  612. %files -n compat32-%{name}-libGLES
  613. %defattr(-,root,root,-)
  614. %{_libdir}/libGLESv1_CM.so.1
  615. %{_libdir}/libGLESv1_CM.so.1.*
  616. %{_libdir}/libGLESv2.so.2
  617. %{_libdir}/libGLESv2.so.2.*
  618. %{_libdir}/libglapi.so.0
  619. %{_libdir}/libglapi.so.0.*
  620. %files -n compat32-%{name}-libGLES-devel
  621. %defattr(-,root,root,-)
  622. %{_libdir}/libGLESv1_CM.so
  623. %{_libdir}/libGLESv2.so
  624. %{_libdir}/libglapi.so
  625. %files -n compat32-%{name}-libxatracker
  626. %defattr(-,root,root,-)
  627. %{_libdir}/libxatracker.so.2
  628. %{_libdir}/libxatracker.so.2.*
  629. %files -n compat32-%{name}-libglapi
  630. %{_libdir}/libglapi.so.0
  631. %{_libdir}/libglapi.so.0.*
  632. %files -n compat32-%{name}-libgbm
  633. %defattr(-,root,root,-)
  634. %{_libdir}/libgbm.so.1
  635. %{_libdir}/libgbm.so.1.*
  636. %files -n compat32-%{name}-dri-drivers
  637. %defattr(-,root,root,-)
  638. %dir %{_libdir}/dri
  639. %{_libdir}/dri/*_dri.so
  640. %endif
  641. %changelog
  642. * Mon Jan 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 17.3.1-1
  643. - updated to 17.3.1.
  644. - replaced all patches from rawhide.
  645. * Fri Aug 5 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.2.2-1
  646. - updated to 11.2.2.
  647. - dropped Patch99: fixed in upstream.
  648. * Thu Jun 30 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.1.4-2
  649. - rebuild with gcc-5.4.0
  650. * Thu May 12 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.1.4-1
  651. - update to 11.1.4
  652. * Thu May 05 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.1.3-1
  653. - update to 11.1.3
  654. * Sat Feb 13 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.9-2
  655. - create compat32-mesa-dri-drivers subpackage
  656. * Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.9-1
  657. - update to 11.0.9
  658. * Thu Dec 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.7-1
  659. - update to 11.0.7
  660. * Sun Nov 22 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.6-1
  661. - update to 11.0.6
  662. * Thu Nov 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.5-1
  663. - update to 11.0.5
  664. * Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0.4-1
  665. - update to 11.0.4
  666. * Tue Jul 07 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.9-1
  667. - update to 10.5.9
  668. * Thu Jun 11 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 10.5.7-2
  669. - rebuilt with llvm 3.6.1
  670. - added %%post and %%postun section for libglapi and libgbm
  671. * Wed Jun 10 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.7-1
  672. - update to 10.5.7
  673. * Fri May 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.6-1
  674. - update to 10.5.6
  675. * Sat May 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.5-1
  676. - update to 10.5.5
  677. * Sun May 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.4-1
  678. - update to 10.5.4
  679. * Sun Apr 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.5.3-1
  680. - update to 10.5.3
  681. * Sat Apr 04 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.4.7-1
  682. - update to 10.4.7
  683. * Sun Mar 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.4.6-1
  684. - update to 10.4.6
  685. * Sun Feb 22 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.4.5-1
  686. - update to 10.4.5
  687. * Sun Feb 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.4.4-1
  688. - update to 10.4.4
  689. * Sun Dec 07 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.3.5-1
  690. - update to 10.3.5
  691. * Sun Nov 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.3.4-1
  692. - update to 10.3.4
  693. * Wed Nov 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.3.3-1
  694. - update to 10.3.3
  695. * Tue Oct 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.3.2-1
  696. - update to 10.3.2
  697. * Wed Aug 27 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 10.2.6-1
  698. - update to 10.2.6
  699. * Tue Jul 15 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.2.3-2
  700. - remove pc file from compat32 package
  701. * Thu Jul 10 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 10.2.3-1
  702. - update to 10.2.3
  703. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.1.3-3
  704. - rebuild with libffi-3.0.13
  705. * Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.1.3-2
  706. - change BuildRequires: eudev-libudev-devel instead of libudev-devel
  707. * Wed May 14 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 10.1.3-1
  708. - update to 10.1.3
  709. - add BR: libxshmfence-devel
  710. * Mon Mar 24 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.4-1
  711. - update to 10.0.4
  712. * Mon Oct 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 9.2.2-1
  713. - update to 9.2.2
  714. - add BR: libvdpau-devel, elfutils-libelf-devel, zlib-devel
  715. - add BR: llvm-devel >= 3.3, libdrm-devel >= 2.4.46
  716. * Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 9.0.1-3
  717. - add Patch0 (mesa-9.0-CVE-2013-1993.patch)
  718. * Sun Dec 02 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-2
  719. - rebuild with llvm-3.1
  720. - add radeonsi driver
  721. * Wed Nov 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-1
  722. - update to mesa-9.0.1
  723. * Sat Nov 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0-1
  724. - update to mesa-9.0
  725. - split off libGLU and gl-manpages to external package
  726. - add libxatracker, libgbm
  727. * Thu Jul 12 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0.4-1
  728. - update to 8.0.4
  729. - remove BR: freeglut-devel
  730. - split DRI drivers to mesa-dri-drivers
  731. * Sat Feb 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0.1-1
  732. - update to 8.0.1
  733. - drop unneeded patches
  734. - drop old-old dri drivers
  735. - add BR: libxml2-python
  736. * Sun Jan 22 2012 NAKAMURA Kenta <kenta@vinelinux.org> 7.11.2-2
  737. - rebuilt with llvm-3.0
  738. - added Patch9: fix build with LLVM 3.0
  739. * Thu Dec 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.11.2-1
  740. - new upstram release
  741. * Thu Aug 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.11-1
  742. - update to 7.11
  743. - use r[36]00g gallium driver as default.
  744. - add BR: llvm-devel
  745. - drop xorg-x11-drv-vmwgfx
  746. - drop dri modules from compat32-mesa-libGL
  747. * Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.10.3-1
  748. - update to 7.10.3
  749. - use r300/r600 classic driver for default.
  750. - install gallium r[36]00 as r[36]00g
  751. * Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.10.2-2
  752. - add patch50 from upstream fix
  753. - enable parallel build
  754. - use standard CFLAGS
  755. * Thu Apr 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.10.2-1
  756. - update to 7.10.2
  757. * Fri Mar 25 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.10.1-2
  758. - dropped "BR: libtalloc-devel" (no longer needed).
  759. * Fri Mar 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.10.1-1
  760. - update to 7.10.1
  761. - drop osmesa16 and osmesa32
  762. - build with udev, egl and gles
  763. - enable gallium r600 driver
  764. - add libEGL/libGLES subpackage
  765. - add Patch40 to fix build failure
  766. - BR: libdrm-devel >= 2.4.24
  767. - BR: libudev-devel
  768. * Fri Jan 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.10-1
  769. - update to 7.10
  770. - split mesa-demos and glx-utils to their own source package.
  771. - add BR: libtalloc-devel
  772. * Wed Sep 22 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.8.2-1
  773. - update to 7.8.2
  774. - add Patch40,41 to fix build failure
  775. - add Source10 to build with libdrm-2.4.21
  776. - add BR: kernel-headers, xorg-x11-server-sdk
  777. * Thu Apr 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 7.8.1-2
  778. - rebuilt with gcc-4.4.3-5 on ppc
  779. - temporarily don't use "-Os" on ppc (a toolchain bug?)
  780. * Tue Apr 06 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.8.1-1
  781. - update to 7.8.1
  782. * Mon Mar 29 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.8-1
  783. - update to 7.8 release
  784. - add xorg-x11-drv-vmwgfx subpackage for VMware GFX DDX driver
  785. * Thu Mar 11 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.8-0.1.git20100217
  786. - update to 7.8 branch from git
  787. * Tue Jan 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-1
  788. - update to 7.6.1 release
  789. * Thu Dec 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-0.2.rc3
  790. - update to 7.6.1-rc3
  791. * Sat Nov 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6.1-0.1.rc1
  792. - update to 7.6.1-rc1
  793. * Tue Nov 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.6-1
  794. - new upstream release
  795. - add R: libXxf86vm-devel, libXdamage-devel, libXfixes-devel,
  796. libXext-devel and libdrm-devel to mesa-libGL-devel
  797. * Sat Sep 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4.4-1
  798. - new upstream release
  799. * Sun Jun 28 2009 NAKAMURA Kenta <kenta@vinelinux.org> 7.4.1-2
  800. - added compat32 subpackage for x86_64 arch support.
  801. * Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4.1-1
  802. - new upstream release
  803. - BR: libdrm-devel >= 2.4.9
  804. * Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3-1
  805. - new upstream release
  806. - BR: libdrm-devel >= 2.4.5
  807. - drop mach64
  808. - update patches from fedora
  809. * Tue Oct 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2-2
  810. - add BR: libdrm-devel >= 2.4.0-3
  811. * Mon Oct 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2-1
  812. - new upstreal release
  813. * Thu Sep 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-4
  814. - update to 7.1 release
  815. * Thu Jul 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-3.rc3
  816. - update to 7.1-rc3
  817. * Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-2.rc1
  818. - include missing swrast_dri.so to %%files list
  819. * Tue Jul 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-1.rc1
  820. - update to 7.1-rc1
  821. * Thu May 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.3-2
  822. - add Patch100 to disable 915tex driver
  823. * Mon May 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.3-1
  824. - new upstream release
  825. * Sun Jan 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.2-0vl1
  826. - build with freeglut
  827. * Thu Jan 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.2-0vl0
  828. - initial build for Vine Linux(bootstrap)
  829. * Tue Jan 01 2008 Dave Airlie <airlied@redhat.com> 7.0.2-2
  830. - mesa-7.0.2-stable-branch.patch: add in mesa 7.0.2 stable patches so far
  831. * Tue Jan 01 2008 Dave Airlie <airlied@redhat.com> 7.0.2-1
  832. - update to Mesa 7.0.2 final
  833. - mesa-7.0.2-rx00-vertprog-num-temps-off-by-one.patch - fixes for maniadrive
  834. - mesa-7.0.2-t_vp_build-use-less-temps.patch - fixes for maniadrive
  835. * Thu Oct 18 2007 Dave Airlie <airlied@redhat.com> 7.0.1-7
  836. - mesa-7.0.1-stable-branch.patch - Updated with more fixes from stable
  837. - mesa-7.0.1-r300-fix-writemask.patch - fix r300 fragprog writemask
  838. - mesa-7.0.1-r200-settexoffset.patch - add zero-copy TFP support for r200
  839. * Fri Sep 28 2007 Dave Airlie <airlied@redhat.com> 7.0.1-6
  840. - mesa-7.0.1-stable-branch.patch - Updated to close to 7.0.2-rc1
  841. - This contains the fixes made to the upstream Mesa stable branch
  842. including fixes for 965 vblank interrupt issues along with a fix
  843. in the kernel - remove patches that already upstream.
  844. - mesa-6.5.2-hush-synthetic-visual-warning.patch - dropped
  845. - mesa-7.0-i-already-defined-glapi-you-twit.patch - dropped
  846. - mesa-7.0.1-965-sampler-crash.patch - dropped
  847. * Thu Sep 06 2007 Adam Jackson <ajax@redhat.com> 7.0.1-5
  848. - mesa-7.0.1-965-sampler-crash.patch: Fix a crash with 965 in Torcs. (#262941)
  849. * Tue Aug 28 2007 Adam Jackson <ajax@redhat.com> 7.0.1-4
  850. - Rebuild for new libexpat.
  851. * Wed Aug 15 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-3
  852. - mesa-7.0.1-stable-branch.patch - Add patches from stable branch
  853. includes support for some Intel chipsets
  854. - mesa-7.0-use_master-r300.patch - Add r300 driver from master
  855. * Tue Aug 14 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-2
  856. - missing build requires for Xfixes-devel and Xdamage-devel
  857. * Mon Aug 13 2007 Dave Airlie <airlied@redhat.com> - 7.0.1-1
  858. - Rebase to upstream 7.0.1 release
  859. - ajax provided patches: for updated selinux awareness, build config
  860. - gl visibility and picify were fixed upstream
  861. - OS mesa library version are 6.5.3 not 7.0.1 - spec fix
  862. * Wed Jul 25 2007 Jesse Keating <jkeating@redhat.com> - 6.5.2-16
  863. - Rebuild for RH #249435
  864. * Tue Jul 24 2007 Adam Jackson <ajax@redhat.com> 6.5.2-15
  865. - Add dri_interface.h to mesa-libGL-devel, and conflict with
  866. xorg-x11-proto-devel versions that attempted to provide it.
  867. * Tue Jul 10 2007 Adam Jackson <ajax@redhat.com> 6.5.2-14
  868. - Add mesa-demos subpackage. (#247252)
  869. * Mon Jul 09 2007 Adam Jackson <ajax@redhat.com> 6.5.2-13
  870. - mesa-6.5.2-radeon-backports-231787.patch: One more fix for r300. (#231787)
  871. * Mon Jul 09 2007 Adam Jackson <ajax@redhat.com> 6.5.2-12
  872. - Don't install header files for APIs that we don't provide. (#247390)
  873. * Fri Jul 06 2007 Adam Jackson <ajax@redhat.com> 6.5.2-11
  874. - mesa-6.5.2-via-respect-my-cliplist.patch: Backport a via fix. (#247254)
  875. * Tue Apr 10 2007 Adam Jackson <ajax@redhat.com> 6.5.2-10
  876. - mesa-6.5.2-radeon-backports-231787.patch: Backport various radeon bugfixes
  877. from git. (#231787)
  878. * Wed Apr 04 2007 Adam Jackson <ajax@redhat.com> 6.5.2-9
  879. - mesa-6.5.2-bindcontext-paranoia.patch: Paper over a crash when doBindContext
  880. fails, to avoid, for example, crashing the server when using tdfx but
  881. without glide3 installed.
  882. * Thu Mar 08 2007 Adam Jackson <ajax@redhat.com> 6.5.2-8
  883. - Hush the (useless) warning about the synthetic visual not being supported.
  884. * Fri Mar 02 2007 Adam Jackson <ajax@redhat.com> 6.5.2-7
  885. - mesa-6.5.2-picify-dri-drivers.patch: Attempt to make the DRI drivers PIC.
  886. - mesa-6.5.1-build-config.patch: Apply RPM_OPT_FLAGS to OSMesa too.
  887. * Mon Feb 26 2007 Adam Jackson <ajax@redhat.com> 6.5.2-6
  888. - mesa-6.5.2-libgl-visibility.patch: Fix non-exported GLX symbols (#229808)
  889. - Require a sufficiently new libdrm at runtime too
  890. - Make the arch macros do something sensible in the general case
  891. * Tue Feb 20 2007 Adam Jackson <ajax@redhat.com> 6.5.2-5
  892. - General spec cleanups
  893. - Require current libdrm
  894. - Build with -fvisibility=hidden
  895. - Redo the way mesa-source is generated
  896. - Add %%{?_smp_mflags} where appropriate
  897. * Mon Dec 18 2006 Adam Jackson <ajax@redhat.com> 6.5.2-4
  898. - Add i915tex and mach64 to the install set.
  899. * Tue Dec 12 2006 Adam Jackson <ajax@redhat.com> 6.5.2-3
  900. - mesa-6.5.2-xserver-1.1-source-compat.patch: Add some source-compatibility
  901. defines to dispatch.h so the X server will continue to build.
  902. * Mon Dec 4 2006 Adam Jackson <ajax@redhat.com> 6.5.2-2.fc6
  903. - Fix OSMesa file listing to use %%version for DSO number. Note that this
  904. will still break on Mesa 7; oh well.
  905. - Deleted file: directfbgl.h
  906. * Sun Dec 3 2006 Kristian Høgsberg <krh@redhat.com> 6.5.2-1.fc6
  907. - Update to 6.5.2.
  908. * Mon Oct 16 2006 Kristian <krh@redhat.com> - 6.5.1-8.fc6
  909. - Add i965-interleaved-arrays-fix.patch to fix (#209318).
  910. * Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-7.fc6
  911. - Update to gl-manpages-1.0.1.tar.bz2 which doesn't use symlinks. (#184547)
  912. * Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-7.fc6
  913. - Remove . after popd; add .gz in %%files section. (#184547)
  914. * Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com>
  915. - Use better tarball for gl man pages. (#184547)
  916. * Fri Sep 29 2006 Kristian <krh@redhat.com> - 6.5.1-6.fc6
  917. - Add -fno-strict-aliasing to compiler flags for i965 driver.
  918. - Add post-6.5.1-i965-fixes.patch backport of i965 fixes from mesa CVS.
  919. * Fri Sep 29 2006 Soren Sandmann <sandamnn@redhat.com> - 6.5.1-5.fc6
  920. - Give the correct path for man page file lists.
  921. * Thu Sep 28 2006 Soren Sandmann <sandmann@redhat.com> - 6.5.1-5.fc6
  922. - Add GL man pages from X R6.9. (#184547)
  923. * Mon Sep 25 2006 Adam Jackson <ajackson@redhat.com> - 6.5.1-4.fc6
  924. - mesa-6.5.1-build-config.patch: Add -lselinux to osmesa builds. (#207767)
  925. * Wed Sep 20 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-3.fc6
  926. - Bump xorg-x11-proto-devel BuildRequires to 7.1-8 so we pick up the
  927. latest GLX_EXT_texture_from_pixmap opcodes.
  928. * Wed Sep 20 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-2.fc6
  929. - Remove mesa-6.5-drop-static-inline.patch.
  930. * Tue Sep 19 2006 Kristian Høgsberg <krh@redhat.com> 6.5.1-1.fc6
  931. - Bump to 6.5.1 final release.
  932. - Drop libGLw subpackage, it is now in Fedora Extras (#188974) and
  933. tweak mesa-6.5.1-build-config.patch to not build libGLw.
  934. - Drop mesa-6.5.1-r300-smooth-line.patch, the smooth line fallback can
  935. now be prevented by enabling disable_lowimpact_fallback in
  936. /etc/drirc.
  937. - Drop mesa-6.4.1-radeon-use-right-texture-format.patch, now upstream.
  938. - Drop mesa-6.5-drop-static-inline.patch, workaround no longer necessary.
  939. * Thu Sep 7 2006 Kristian Høgsberg <krh@redhat.com>
  940. - Drop unused mesa-modular-dri-dir.patch.
  941. * Tue Aug 29 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc2.fc6
  942. - Rebase to 6.5.1 RC2.
  943. - Get rid of redhat-mesa-driver-install and redhat-mesa-target helper
  944. scripts and clean up specfile a bit.
  945. * Mon Aug 28 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc1.2.fc6
  946. - Drop upstreamed patches mesa-6.5-texture-from-pixmap-fixes.patch and
  947. mesa-6.5-tfp-fbconfig-attribs.patch and fix
  948. mesa-6.4.1-radeon-use-right-texture-format.patch to not break 16bpp
  949. transparency.
  950. * Fri Aug 25 2006 Adam Jackson <ajackson@redhat.com> - 6.5.1-0.rc1.1.fc6
  951. - mesa-6.5.1-build-config.patch: Add i965 to x86-64 config.
  952. * Wed Aug 23 2006 Kristian Høgsberg <krh@redhat.com> - 6.5.1-0.rc1.fc6
  953. - Bump to 6.5.1 RC1.
  954. * Tue Aug 22 2006 Kristian Høgsberg <krh@redhat.com> 6.5-26.20060818cvs.fc6
  955. - Pull the vtxfmt patch into the selinux-awareness patch, handle exec
  956. mem heap init failure correctly by releasing mutex.
  957. * Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> 6.5-25.20060818cvs.fc6
  958. - mesa-6.5.1-r300-smooth-line.patch: Added, fakes smooth lines with aliased
  959. lines on R300+ cards, makes Google Earth tolerable.
  960. - mesa-6.5-force-r300.patch: Resurrect.
  961. * Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> 6.5-24.20060818cvs.fc6
  962. - mesa-6.5.1-radeon-vtxfmt-cleanup-properly.patch: Fix a segfault on context
  963. destruction when selinux is enabled.
  964. * Mon Aug 21 2006 Adam Jackson <ajackson@redhat.com> 6.5-23.20060818cvs.fc6
  965. - redhat-mesa-driver-install: Reenable installing the tdfx driver. (#203295)
  966. * Fri Aug 18 2006 Adam Jackson <ajackson@redhat.com> 6.5-22.20060818cvs.fc6
  967. - Update to pre-6.5.1 snapshot.
  968. - Re-add libOSMesa{,16,32}. (#186366)
  969. - Add BuildReq: on libXp-devel due to openmotif header insanity.
  970. * Sun Aug 13 2006 Florian La Roche <laroche@redhat.com> 6.5-21.fc6
  971. - fix one Requires: to use the correct mesa-libGLw name
  972. * Thu Jul 27 2006 Mike A. Harris <mharris@redhat.com> 6.5-20.fc6
  973. - Conditionalized libGLw inclusion with new with_libGLw macro defaulting
  974. to 1 (enabled) for now, however since nothing in Fedora Core uses libGLw
  975. anymore, we will be transitioning libGLw to an external package maintained
  976. in Fedora Extras soon.
  977. * Wed Jul 26 2006 Kristian Høgsberg <krh@redhat.com> 6.5-19.fc5.aiglx
  978. - Build for fc5 aiglx repo.
  979. * Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-19.fc6
  980. - Disable TLS dispatch, it is selinux-hostile.
  981. * Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-18.fc6
  982. - mesa-6.5-fix-glxinfo-link.patch: lib64 fix.
  983. * Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 6.5-17.fc6
  984. - mesa-6.5-fix-linux-indirect-build.patch: Added.
  985. - mesa-6.5-fix-glxinfo-link.patch: Added.
  986. - Build libOSMesa never instead of inconsistently; to be fixed later.
  987. - Updates to redhat-mesa-target:
  988. - Always select linux-indirect when not building for DRI
  989. - Enable DRI to be built on PPC64 (still disabled in the spec file though)
  990. - MIT licence boilerplate
  991. * Tue Jul 25 2006 Mike A. Harris <mharris@redhat.com> 6.5-16.fc6
  992. - Remove glut-devel dependency, as nothing actually uses it that we ship.
  993. - Added mesa-6.5-dont-libglut-me-harder-ok-thx-bye.patch to prevent libglut
  994. and other libs from being linked into glxgears/glxinfo even though they
  995. are not actually used. This was the final package linking to freeglut in
  996. Fedora Core, blocking freeglut from being moved to Extras.
  997. - Commented all of the virtual provides in the spec file to document clearly
  998. how they should be used by other developers in specifying build and runtime
  999. dependencies when packaging software which links to libGL, libGLU, and
  1000. libGLw. (#200069)
  1001. * Mon Jul 24 2006 Adam Jackson <ajackson@redhat.com> 6.5-15.fc6
  1002. - Attempt to add selinux awareness; check if we can map executable memory
  1003. and fail softly if not. Removes the need for allow_execmem from huge
  1004. chunks of the desktop.
  1005. - Disable the r300 gart fix for not compiling.
  1006. * Mon Jul 24 2006 Kristian Høgsberg <krh@redhat.com> 6.5-14.fc6
  1007. - Add mesa-6.5-r300-free-gart-mem.patch to make r300 driver free gart
  1008. memory on context destroy.
  1009. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 6.5-13.1.fc6
  1010. - rebuild
  1011. * Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-13.fc6
  1012. - Added mesa-6.5-fix-opt-flags-bug197640.patch as 2nd attempt to fix OPT_FLAGS
  1013. for (#197640).
  1014. - Ensure that redhat-mesa-driver-install creates $DRIMODULE_DESTDIR with
  1015. mode 0755.
  1016. * Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-12.fc6
  1017. - Maybe actually, you know, apply the mesa-6.5-glx-use-tls.patch as that might
  1018. help to you know, actually solve the problem. Duh.
  1019. - Use {dist} tag in Release field now.
  1020. * Wed Jul 05 2006 Mike A. Harris <mharris@redhat.com> 6.5-11
  1021. - Added mesa-6.5-glx-use-tls.patch to hopefully get -DGLX_USE_TLS to really
  1022. work this time due to broken upstream linux-dri-* configs. (#193979)
  1023. - Pass RPM_OPT_FLAGS via OPT_FLAGS instead of via CFLAGS also for (#193979)
  1024. * Mon Jun 19 2006 Mike A. Harris <mharris@redhat.com> 6.5-10
  1025. - Bump libdrm-devel dep to trigger new ExclusiveArch test with the new package.
  1026. - Use Fedora Extras style BuildRoot tag.
  1027. - Added "Requires(post): /sbin/ldconfig" and postun to all runtime lib packages.
  1028. * Mon Jun 12 2006 Kristian Høsberg <krh@redhat.com> 6.5-9
  1029. - Add mesa-6.5-fix-pbuffer-dispatch.patch to fix pbuffer marshalling code.
  1030. * Mon May 29 2006 Kristian Høgsberg <krh@redhat.com> 6.5-8
  1031. - Bump for rawhide build.
  1032. * Mon May 29 2006 Kristian Høgsberg <krh@redhat.com> 6.5-7
  1033. - Update mesa-6.5-texture-from-pixmap-fixes.patch to include new
  1034. tokens and change tfp functions to return void. Yes, a new mesa
  1035. snapshot would be nice.
  1036. * Wed May 17 2006 Mike A. Harris <mharris@redhat.com> 6.5-6
  1037. - Add "BuildRequires: makedepend" for bug (#191967)
  1038. * Tue Apr 11 2006 Kristian Høgsberg <krh@redhat.com> 6.5-5
  1039. - Bump for fc5 build.
  1040. * Tue Apr 11 2006 Adam Jackson <ajackson@redhat.com> 6.5-4
  1041. - Disable R300_FORCE_R300 hack for wider testing.
  1042. * Mon Apr 10 2006 Kristian Høgsberg <krh@redhat.com> 6.5-3
  1043. - Add mesa-6.5-noexecstack.patch to prevent assembly files from making
  1044. libGL.so have executable stack.
  1045. * Mon Apr 10 2006 Kristian Høgsberg <krh@redhat.com> 6.5-2
  1046. - Bump for fc5 build.
  1047. - Bump libdrm requires to 2.0.1.
  1048. * Sat Apr 01 2006 Kristian Høgsberg <krh@redhat.com> 6.5-1
  1049. - Update to mesa 6.5 snapshot.
  1050. - Use -MG for generating deps and some files are not yet symlinked at
  1051. make depend time.
  1052. - Drop mesa-6.4.2-dprintf-to-debugprintf-for-bug180122.patch and
  1053. mesa-6.4.2-xorg-server-uses-bad-datatypes-breaking-AMD64-fdo5835.patch
  1054. as these are upstream now.
  1055. - Drop mesa-6.4.1-texture-from-drawable.patch and add
  1056. mesa-6.5-texture-from-pixmap-fixes.patch.
  1057. - Update mesa-modular-dri-dir.patch to apply.
  1058. - Widen libGLU glob.
  1059. - Reenable r300 driver install.
  1060. - Widen libOSMesa glob.
  1061. - Go back to patching config/linux-dri, add mesa-6.5-build-config.patch,
  1062. drop mesa-6.3.2-build-configuration-v4.patch.
  1063. - Disable sis dri driver for now, only builds on x86 and x86-64.
  1064. * Fri Mar 24 2006 Kristian Høgsberg <krh@redhat.com> 6.4.2-7
  1065. - Set ARCH_FLAGS=-DGLX_USE_TLS to enable TLS for GL contexts.
  1066. * Wed Mar 01 2006 Karsten Hopp <karsten@redhat.de> 6.4.2-6
  1067. - Buildrequires: libXt-devel (#183479)
  1068. * Sat Feb 25 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-5
  1069. - Disable the expeimental r300 DRI driver, as it has turned out to cause
  1070. instability and system hangs for many users.
  1071. * Wed Feb 22 2006 Adam Jackson <ajackson@redhat.com> 6.4.2-4
  1072. - rebuilt
  1073. * Sun Feb 19 2006 Ray Strode <rstrode@redhat.com> 6.4.2-3
  1074. - enable texture-from-drawable patch
  1075. - add glut-devel dependency
  1076. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.4.2-2.1
  1077. - bump again for double-long bug on ppc(64)
  1078. * Tue Feb 07 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-2
  1079. - Added new "glx-utils" subpackage with glxgears and glxinfo (#173510)
  1080. - Added mesa-6.4.2-dprintf-to-debugprintf-for-bug180122.patch to workaround
  1081. a Mesa namespace conflict with GNU_SOURCE (#180122)
  1082. - Added mesa-6.4.2-xorg-server-uses-bad-datatypes-breaking-AMD64-fdo5835.patch
  1083. as an attempt to fix bugs (#176976,176414,fdo#5835)
  1084. - Enabled inclusion of the *EXPERIMENTAL UNSUPPORTED* r300 DRI driver on
  1085. x86, x86_64, and ppc architectures, however the 2D Radeon driver will soon
  1086. be modified to require the user to manually turn experimental DRI support
  1087. on with Option "dri" in xorg.conf to test it out and report all X bugs that
  1088. occur while using it directly to X.Org bugzilla. (#179712)
  1089. - Use "libOSMesa.so.6.4.0604*" glob in file manifest, to avoid having to
  1090. update it each upstream release.
  1091. * Sat Feb 04 2006 Mike A. Harris <mharris@redhat.com> 6.4.2-1
  1092. - Updated to Mesa 6.4.2
  1093. - Use "libGLU.so.1.3.0604*" glob in file manifest, to avoid having to update it
  1094. each upstream release.
  1095. * Tue Jan 24 2006 Mike A. Harris <mharris@redhat.com> 6.4.1-5
  1096. - Added missing "BuildRequires: expat-devel" for bug (#178525)
  1097. - Temporarily disabled mesa-6.4.1-texture-from-drawable.patch, as it fails
  1098. to compile on at least ia64, and possibly other architectures.
  1099. * Tue Jan 17 2006 Kristian Høgsberg <krh@redhat.com> 6.4.1-4
  1100. - Add mesa-6.4.1-texture-from-drawable.patch to implement protocol
  1101. support for GLX_EXT_texture_from_drawable extension.
  1102. * Sat Dec 24 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-3
  1103. - Manually copy libGLw headers that Mesa forgets to install, to fix (#173879).
  1104. - Added mesa-6.4.1-libGLw-enable-motif-support.patch to fix (#175251).
  1105. - Removed "Conflicts" lines from libGL package, as they are "Obsoletes" now.
  1106. - Do not rename swrast libGL .so version, as it is the OpenGL version.
  1107. * Tue Dec 20 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-2
  1108. - Rebuild to ensure libGLU gets rebuilt with new gcc with C++ compiler fixes.
  1109. - Changed the 3 devel packages to use Obsoletes instead of Conflicts for the
  1110. packages the files used to be present in, as this is more friendy for
  1111. OS upgrades.
  1112. - Added "Requires: libX11-devel" to mesa-libGL-devel package (#173712)
  1113. - Added "Requires: libGL-devel" to mesa-libGLU-devel package (#175253)
  1114. * Sat Dec 17 2005 Mike A. Harris <mharris@redhat.com> 6.4.1-1
  1115. - Updated MesaLib tarball to version 6.4.1 from Mesa project for X11R7 RC4.
  1116. - Added pkgconfig dependency.
  1117. - Updated "BuildRequires: libdrm-devel >= 2.0-1"
  1118. - Added Obsoletes lines to all the subpackages to have cleaner upgrades.
  1119. - Added mesa-6.4.1-amd64-assyntax-fix.patch to work around a build problem on
  1120. AMD64, which is fixed in the 6.4 branch of Mesa CVS.
  1121. - Conditionalize libOSMesa inclusion, and default to not including it for now.
  1122. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 6.4-5.1
  1123. - rebuilt
  1124. * Sun Nov 20 2005 Jeremy Katz <katzj@redhat.com> 6.4-5
  1125. - fix directory used for loading dri modules (#173679)
  1126. - install dri drivers as executable so they get stripped (#173292)
  1127. * Thu Nov 03 2005 Mike A. Harris <mharris@redhat.com> 6.4-4
  1128. - Wrote redhat-mesa-source-filelist-generator to dynamically generate the
  1129. files to be included in the mesa-source subpackage, to minimize future
  1130. maintenance.
  1131. - Fixed detection and renaming of software mesa .so version.
  1132. * Wed Nov 02 2005 Mike A. Harris <mharris@redhat.com> 6.4-3
  1133. - Hack: autodetect if libGL was given .so.1.5* and rename it to 1.2 for
  1134. consistency on all architectures, and to avoid upgrade problems if we
  1135. ever disable DRI on an arch and then re-enable it later.
  1136. * Wed Nov 02 2005 Mike A. Harris <mharris@redhat.com> 6.4-2
  1137. - Added mesa-6.4-multilib-fix.patch to instrument and attempt to fix Mesa
  1138. bin/installmesa script to work properly with multilib lib64 architectures.
  1139. - Set and export LIB_DIR and INCLUDE_DIR in spec file 'install' section,
  1140. and invoke our modified bin/installmesa directly instead of using
  1141. "make install".
  1142. - Remove "include/GL/uglglutshapes.h", as it uses the GLUT license, and seems
  1143. like an extraneous file anyway.
  1144. - Conditionalize the file manifest to include libGL.so.1.2 on DRI enabled
  1145. builds, but use libGL.so.1.5.060400 instead on DRI disabled builds, as
  1146. this is how upstream builds the library, although it is not clear to me
  1147. why this difference exists yet (which was not in Xorg 6.8.2 Mesa).
  1148. * Thu Oct 27 2005 Mike A. Harris <mharris@redhat.com> 6.4-1
  1149. - Updated to new upstream MesaLib-6.4
  1150. - Updated libGLU.so.1.3.060400 entry in file manifest
  1151. - Updated "BuildRequires: libdrm-devel >= 1.0.5" to pick up fixes for the
  1152. unichrome driver.
  1153. * Tue Sep 13 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-6
  1154. - Fix redhat-mesa-driver-install and spec file to work right on multilib
  1155. systems.
  1156. * Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-5
  1157. - Fix mesa-libGL-devel to depend on mesa-libGL instead of mesa-libGLU.
  1158. - Added virtual "Provides: libGL..." entries for each subpackage as relevant.
  1159. * Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-4
  1160. - Added the mesa-source subpackage, which contains part of the Mesa source
  1161. code needed by other packages such as the X server to build stuff.
  1162. * Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-3
  1163. - Added Conflicts/Obsoletes lines to all of the subpackages to make upgrades
  1164. from previous OS releases, and piecemeal upgrades work as nicely as
  1165. possible.
  1166. * Mon Sep 05 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-2
  1167. - Wrote redhat-mesa-target script to simplify mesa build target selection.
  1168. - Wrote redhat-mesa-driver-install to install the DRI drivers and simplify
  1169. per-arch conditionalization, etc.
  1170. * Sun Sep 04 2005 Mike A. Harris <mharris@redhat.com> 6.3.2-1
  1171. - Initial build.