source: projects/specs/trunk/x/xorg-x11-server/xorg-x11-server-vl.spec @ 12451

Revision 12451, 64.6 KB checked in by tomop, 4 years ago (diff)

updated 6 packages

libX11-1.6.11-1

libepoxy-1.5.4-2

libxcb-1.14-1

pixman-0.40.0-1

xcb-proto-1.14-1

xorg-x11-server-1.20.8-2

Line 
1%bcond_with systemd
2
3%define pkgname xorg-server
4
5#define gitdate 20100319
6
7Summary:        X.Org X11 X server
8Summary(ja):    X.Org X11 X サーバ
9Name:           xorg-x11-server
10Version:        1.20.8
11Release:        2%{?_dist_release}%{?with_systemd:.systemd}
12Group:          system
13Vendor:         Project Vine
14Distribution:   Vine Linux
15
16URL:            http://www.x.org
17License:        MIT/X11
18%if 0%{?gitdate}
19Source0:        ftp://ftp.x.org/pub/individual/xserver/%{pkgname}-%{gitdate}.tar.xz
20%else
21Source0:        https://www.x.org/archive/individual/xserver/%{pkgname}-%{version}.tar.bz2
22%endif
23Source4:        10-quirks.conf
24Source10:       xserver.pamd
25Source20:       http://svn.exactcode.de/t2/trunk/package/xorg/xorg-server/xvfb-run.sh
26
27# Trivial things to never merge upstream ever:
28# This really could be done prettier.
29Patch5002: xserver-1.12.1-ssh-isnt-local.patch
30
31# security patch
32Patch9000: CVE-2020-14347.patch
33
34## Vine Patch
35# add elogind support
36Patch10000: 0001-add-elogind-support.patch
37# autodetect nvidia driver
38Patch10010: 0001-nvidia.patch
39# autodetect fglrx driver
40Patch10020: 0002-fglrx.patch
41# autodetect virtual video device (qemu) driver
42Patch10030: 0003-qemu.patch
43# finally fallback to vesa driver
44Patch10040: 0004-vesa-fallback.patch
45
46# do not disable kbd driver even if AllowEmptyInput option is on.
47Patch20000: 0005-dont-disable-kbd-if-AEI-on.patch
48
49%define moduledir       %{_libdir}/xorg/modules
50%define drimoduledir    %{_libdir}/dri
51%define sdkdir          %{_includedir}/xorg
52
53%ifarch s390 s390x
54%define with_hw_servers 0
55%else
56%define with_hw_servers 1
57%endif
58
59%if %{with_hw_servers}
60%define enable_xorg --enable-xorg
61%else
62%define enable_xorg --disable-xorg
63%endif
64
65%define kdrive --enable-kdrive --enable-xephyr --disable-xfake --disable-xfbdev
66%define xservers --enable-xvfb --enable-xnest %{kdrive} %{enable_xorg}
67
68BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
69
70# FIXME: Temporary Build deps on autotools, as needed...
71BuildRequires: automake autoconf libtool
72
73BuildRequires: pkgconfig
74BuildRequires: xorg-x11-util-macros >= 1.6.0
75
76BuildRequires: xorg-x11-proto-devel >= 7.4-9
77
78BuildRequires: xorg-x11-xtrans-devel >= 1.2.3
79BuildRequires: xorg-x11-font-utils
80BuildRequires: libXfont-devel
81BuildRequires: libXfont2-devel
82BuildRequires: libXau-devel
83BuildRequires: libxkbfile-devel
84BuildRequires: xcb-util-devel
85BuildRequires: xcb-util-keysyms-devel
86BuildRequires: xcb-util-image-devel
87BuildRequires: xcb-util-wm-devel
88BuildRequires: xcb-util-renderutil-devel
89# libXres-devel needed for something that links to libXres that I never
90# bothered to figure out yet
91BuildRequires: libXres-devel
92# libfontenc-devel needed for Xorg, but not specified by
93# upstream deps.  Build fails without it.
94BuildRequires: libfontenc-devel
95# Required for Xtst examples
96BuildRequires: libXtst-devel >= 1.1.0-2
97# libXdmcp-devel needed for Xdmx, Xnest, Xephyr
98BuildRequires: libXdmcp-devel
99# libX11-devel needed for Xdmx, Xnest, Xephyr
100BuildRequires: libX11-devel
101# libXext-devel needed for Xdmx, Xnest, Xephyr
102BuildRequires: libXext-devel
103BuildRequires: libpciaccess-devel
104BuildRequires: pixman-devel >= 0.14.0
105BuildRequires: openssl-devel
106# XXX Really?  Why would we need this, Xfont should hide it.
107BuildRequires: freetype2-devel
108
109BuildRequires: libgudev-devel
110BuildRequires: dbus-devel
111
112%if %{with systemd}
113BuildRequires: systemd-devel
114%else
115BuildRequires: eudev-libudev-devel
116%endif
117
118# DMX config utils buildreqs.
119BuildRequires: libXt-devel
120BuildRequires: libdmx-devel >= 1.1.0-2
121BuildRequires: libXmu-devel
122BuildRequires: libXrender-devel
123BuildRequires: libXi-devel
124BuildRequires: libXpm-devel
125BuildRequires: libXaw-devel >= 1.0.5
126BuildRequires: libXfixes-devel
127BuildRequires: libXdamage-devel
128BuildRequires: libXv-devel
129BuildRequires: libxshmfence-devel
130
131BuildRequires: mesa-libGL-devel >= 7.8
132BuildRequires: mesa-libEGL-devel
133BuildRequires: mesa-libgbm-devel
134BuildRequires: libepoxy-devel
135BuildRequires: mesa-source >= 7.8
136# XXX silly...
137BuildRequires: libdrm-devel >= 2.4.0-3
138%if %{with_hw_servers}
139Requires: libdrm
140%endif
141
142# Make sure libXfont has the catalogue FPE
143Requires: libXfont
144
145# All server subpackages have a virtual provide for the name of the server
146# they deliver.  The Xorg one is versioned, the others are intentionally
147# unversioned.
148
149%description
150X.Org X11 X server
151
152
153%package common
154Summary: Xorg server common files
155Summary(ja): Xorg サーバ共通ファイル
156Group: system
157
158%description common
159Common files shared among all X servers.
160
161
162%if %{with_hw_servers}
163%package Xorg
164Summary: Xorg X server
165Summary(ja): Xorg X サーバ
166Group: system
167Provides: Xorg = %{version}-%{release}
168Provides: Xserver
169# Requires: xorg-x11-drivers >= 0.99.2-4
170Requires: xorg-x11-drv-keyboard xorg-x11-drv-vesa
171Requires: xorg-x11-drv-void xorg-x11-drv-evdev
172# virtuals.  XXX fix the xkbcomp fork() upstream.
173Requires: xkbdata xkbcomp
174Requires: xorg-x11-server-common >= %{version}-%{release}
175Requires: libdrm
176Requires: system-setup-keyboard
177Obsoletes: XFree86, XOrg
178Obsoletes: xorg-x11-drv-modesetting < 0.9.1
179Obsoletes: xorg-x11-glamor < 0.6.1
180Provides: xorg-x11-glamor = %{version}-%{release}
181
182%description Xorg
183X.org X11 is an open source implementation of the X Window System.  It
184provides the basic low level functionality which full fledged
185graphical user interfaces (GUIs) such as GNOME and KDE are designed
186upon.
187%endif
188
189
190%package Xnest
191Summary: Xnest server
192Summary(ja): Xnest サーバ
193Group: system
194Obsoletes: XFree86-Xnest, XOrg-Xnest
195Requires: xorg-x11-server-common >= %{version}-%{release}
196Provides: Xnest
197
198%description Xnest
199Xnest is an X server, which has been implemented as an ordinary
200X application.  It runs in a window just like other X applications,
201but it is an X server itself in which you can run other software.  It
202is a very useful tool for developers who wish to test their
203applications without running them on their real X server.
204
205
206%package Xdmx
207Summary: Distributed Multihead X Server and utilities
208Summary(ja): 分散マルチヘッド X サーバおよびユーティリティ
209Group: system
210Requires: xorg-x11-server-common >= %{version}-%{release}
211Provides: Xdmx
212
213%description Xdmx
214Xdmx is proxy X server that provides multi-head support for multiple displays
215attached to different machines (each of which is running a typical X server).
216When Xinerama is used with Xdmx, the multiple displays on multiple machines
217are presented to the user as a single unified screen.  A simple application
218for Xdmx would be to provide multi-head support using two desktop machines,
219each of which has a single display device attached to it.  A complex
220application for Xdmx would be to unify a 4 by 4 grid of 1280x1024 displays
221(each attached to one of 16 computers) into a unified 5120x4096 display.
222
223
224%package Xvfb
225Summary: Virtual framebuffer X server.
226Summary(ja): 仮想フレームバッファ X サーバ
227Group: system
228Obsoletes: XFree86-Xvfb, XOrg-Xvfb
229Requires: xorg-x11-server-common >= %{version}-%{release}
230Provides: Xvfb
231
232%description Xvfb
233Xvfb (X Virtual Frame Buffer) is an X server that is able to run on
234machines with no display hardware and no physical input devices.
235Xvfb simulates a dumb framebuffer using virtual memory.  Xvfb does
236not open any devices, but behaves otherwise as an X display.  Xvfb
237is normally used for testing servers.
238
239
240%package Xephyr
241Summary: Xephyr X server
242Summary(ja): Xephyr X サーバ
243Group: system
244Requires: xorg-x11-server-common >= %{version}-%{release}
245Provides: Xephyr
246
247%description Xephyr
248Xephyr is an X server, which has been implemented as an ordinary
249X application.  It runs in a window just like other X applications,
250but it is an X server itself in which you can run other software.  It
251is a very useful tool for developers who wish to test their
252applications without running them on their real X server.  Unlike
253Xnest, Xephyr renders to an X image rather than relaying the
254X protocol, and therefore supports the newer X extensions like
255Render and Composite.
256
257
258%if %{with_hw_servers}
259%package sdk
260Summary: SDK for X server driver module development
261Summary(ja): X サーバドライバモジュール開発用 SDK
262Group: system
263Obsoletes: XFree86-sdk, XOrg-sdk
264Requires: xorg-x11-util-macros
265Requires: xorg-x11-proto-devel
266Requires: pixman-devel
267Requires: libpciaccess-devel
268Requires: pkgconfig
269Requires(pre): xorg-x11-filesystem
270Provides: libxf86config-devel = %{version}-%{release}
271Obsoletes: xorg-x11-glamor-devel < 0.6.1
272Provides: xorg-x11-glamor-devel = %{version}-%{release}
273
274%description sdk
275The SDK package provides the developmental files which are necessary for
276developing X server driver modules, and for compiling driver modules
277outside of the standard X11 source code tree.  Developers writing video
278drivers, input drivers, or other X modules should install this package.
279%endif
280
281
282%package source
283Summary: Xserver source code required to build VNC server (Xvnc)
284Summary(ja): VNC サーバ (Xvnc) をビルドするために必要な X サーバのソースコード
285Group: programming
286
287%description source
288Xserver source code needed to build VNC server (Xvnc)
289
290
291%prep
292%setup -q -n %{pkgname}-%{version}
293#%setup -q -n %{pkgname}-%{gitdate}
294
295%patch5002 -p1 -b .ssh-isnt-local
296
297# security patch
298%patch9000 -p1 -b .CVE-2020-14347
299
300# Vine patch
301%patch10010 -p1 -b .nvidia
302%patch10020 -p1 -b .fglrx
303%patch10030 -p1 -b .virtual-device
304%patch10040 -p1 -b .vesa-fallback
305
306# Vine
307%patch20000 -p1 -b .dont-disable-kbd
308
309# Patch5: xserver-1.8.1-pic-libxf86config.patch
310sed -i \
311        -e "/AM_CFLAGS =/a \\\\t-fPIC -fvisibility=hidden \\\\" \
312        ./hw/xfree86/parser/Makefile.am
313
314autoreconf -vif
315
316
317%build
318
319%define default_font_path "catalogue:/etc/X11/fontpath.d,built-ins"
320
321%if %{with_hw_servers}
322%define dri_flags --enable-dri2 --enable-dri3 --enable-suid-wrapper --enable-glamor
323%else
324%define dri_flags --disable-dri
325%endif
326
327export CFLAGS="%{optflags} -Wstrict-overflow -rdynamic $CFLAGS"
328%configure \
329        %{xservers} \
330        --disable-static \
331        --with-pic \
332        --with-int10=x86emu \
333        --with-default-font-path=%{default_font_path} \
334        --with-module-dir=%{moduledir} \
335        --with-os-name="Vine Linux 7" \
336        --with-vendor-web="https://www.vinelinux.org/" \
337        --with-vendor-name="Project Vine" \
338        --with-builderstring="Build ID: %{name} %{version}-%{release}" \
339        --with-xkb-output=%{_localstatedir}/lib/xkb \
340        --enable-install-libxf86config \
341        --disable-linux-acpi --disable-linux-apm \
342        --disable-xselinux --enable-record \
343        --enable-config-udev \
344        --enable-dmx \
345        %{dri_flags} \
346        --enable-systemd-logind \
347%if %{with systemd}
348        --with-systemd-daemon \
349%endif
350        ${CONFIGURE}
351
352make -s %{?_smp_mflags} LIBTOOL=/usr/bin/libtool
353
354%install
355rm -rf $RPM_BUILD_ROOT
356make install DESTDIR=$RPM_BUILD_ROOT moduledir=%{moduledir} LIBTOOL=/usr/bin/libtool
357
358
359%if %{with_hw_servers}
360rm -f $RPM_BUILD_ROOT%{_libdir}/xorg/modules/libxf8_16bpp.so
361mkdir -p $RPM_BUILD_ROOT%{_libdir}/xorg/modules/{drivers,input}
362
363mkdir -p $RPM_BUILD_ROOT%{_datadir}/xorg
364install -m 0444 hw/xfree86/common/{vesa,extra}modes $RPM_BUILD_ROOT%{_datadir}/xorg/
365
366mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
367install -m 644 %{SOURCE10} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/xserver
368
369mkdir -p $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d
370install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d
371
372mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/xorg.conf.d
373%endif
374
375# Make the source package
376%define xserver_source_dir %{_datadir}/xorg-x11-server-source
377%define inst_srcdir %{buildroot}/%{xserver_source_dir}
378mkdir -p %{inst_srcdir}/{Xext,xkb,GL,hw/{xquartz/bundle,xfree86/common}}
379mkdir -p %{inst_srcdir}/{hw/dmx/doc,man,doc,hw/dmx/doxygen}
380cp {,%{inst_srcdir}/}hw/xquartz/bundle/cpprules.in
381cp {,%{inst_srcdir}/}man/Xserver.man
382cp {,%{inst_srcdir}/}doc/smartsched
383cp {,%{inst_srcdir}/}hw/dmx/doxygen/doxygen.conf.in
384cp {,%{inst_srcdir}/}xserver.ent.in
385cp xkb/README.compiled %{inst_srcdir}/xkb
386cp hw/xfree86/xorgconf.cpp %{inst_srcdir}/hw/xfree86
387
388install -m 0755 %{SOURCE20} $RPM_BUILD_ROOT%{_bindir}/xvfb-run
389
390find . -type f | egrep '.*\.(c|h|am|ac|inc|m4|h.in|pc.in|man.pre|pl|txt)$' |
391xargs tar cf - | (cd %{inst_srcdir} && tar xf -)
392find %{inst_srcdir}/hw/xfree86 -name \*.c -delete
393
394# Remove unwanted files/dirs
395{
396    rm -f $RPM_BUILD_ROOT%{_libdir}/X11/Options
397    rm -f $RPM_BUILD_ROOT%{_bindir}/in?
398    rm -f $RPM_BUILD_ROOT%{_bindir}/ioport
399    rm -f $RPM_BUILD_ROOT%{_bindir}/out?
400    rm -f $RPM_BUILD_ROOT%{_bindir}/pcitweak
401    rm -f $RPM_BUILD_ROOT%{_mandir}/man1/pcitweak.1*
402    find $RPM_BUILD_ROOT -type f -name '*.la' | xargs rm -f -- || :
403    find $RPM_BUILD_ROOT%{_libdir}/xorg/modules -type f -name '*.a' | xargs rm -f -- || :
404%if !%{with_hw_servers}
405    rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/xorg-server.pc
406    rm -f $RPM_BUILD_ROOT%{_datadir}/aclocal/xorg-server.m4
407%endif
408}
409
410%clean
411rm -rf $RPM_BUILD_ROOT
412
413%if %{with_hw_servers}
414%pre Xorg
415{
416    pushd /etc/X11
417
418    for configfile in XF86Config XF86Config-4 ; do
419        if [ -r $configfile ]; then
420            if [ -r xorg.conf ]; then
421                mv -f $configfile $configfile.obsoleted
422            else
423                mv -f $configfile xorg.conf
424            fi
425        fi
426    done
427
428    [ -e xorg.conf ] || return 0
429
430    perl -p -i -e 's/^.*Load.*"(pex5|xie|xtt).*\n$"//gi' xorg.conf
431    perl -p -i -e 's/^\s*Driver(.*)"keyboard"/Driver\1"kbd"/gi' xorg.conf
432    perl -p -i -e 's/^.*Option.*"XkbRules".*"(xfree86|xorg)".*\n$//gi' xorg.conf
433    perl -p -i -e 's#^\s*RgbPath.*$##gi' xorg.conf
434    # lame, the nvidia driver needs to override this
435    if ! grep -q 'ModulePath.*nvidia' xorg.conf ; then
436      perl -p -i -e 's#^\s*ModulePath.*$##gi' xorg.conf
437    fi
438
439    popd
440} &> /dev/null || :
441%endif
442
443%files common
444%defattr(-,root,root,-)
445%{_mandir}/man1/Xserver.1*
446%{_libdir}/xorg/protocol.txt
447%dir %{_localstatedir}/lib/xkb
448%{_localstatedir}/lib/xkb/README.compiled
449
450%if %{with_hw_servers}
451%files Xorg
452%defattr(-,root,root,-)
453%config %attr(0644,root,root) %{_sysconfdir}/pam.d/xserver
454%{_bindir}/X
455%attr(755, root, root) %{_bindir}/Xorg
456%{_libexecdir}/Xorg
457%attr(4755, root, root) %{_libexecdir}/Xorg.wrap
458%{_bindir}/gtf
459%{_bindir}/cvt
460%dir %{_datadir}/xorg
461%{_datadir}/xorg/vesamodes
462%{_datadir}/xorg/extramodes
463%dir %{_libdir}/xorg
464%dir %{_libdir}/xorg/modules
465%dir %{_libdir}/xorg/modules/drivers
466%{_libdir}/xorg/modules/drivers/modesetting_drv.so
467%dir %{_libdir}/xorg/modules/extensions
468%{_libdir}/xorg/modules/extensions/libglx.so
469%dir %{_libdir}/xorg/modules/input
470%{_libdir}/xorg/modules/libexa.so
471%{_libdir}/xorg/modules/libfb.so
472%{_libdir}/xorg/modules/libfbdevhw.so
473%{_libdir}/xorg/modules/libglamoregl.so
474%{_libdir}/xorg/modules/libint10.so
475%{_libdir}/xorg/modules/libshadow.so
476%{_libdir}/xorg/modules/libshadowfb.so
477%{_libdir}/xorg/modules/libvbe.so
478%{_libdir}/xorg/modules/libvgahw.so
479%{_libdir}/xorg/modules/libwfb.so
480%{_mandir}/man1/gtf.1*
481%{_mandir}/man1/Xorg.1*
482%{_mandir}/man1/Xorg.wrap.1*
483%{_mandir}/man1/cvt.1*
484%{_mandir}/man4/fbdevhw.4*
485%{_mandir}/man4/exa.4*
486%{_mandir}/man4/modesetting.4.gz
487%{_mandir}/man5/Xwrapper.config.5*
488%{_mandir}/man5/xorg.conf.5*
489%{_mandir}/man5/xorg.conf.d.5*
490%dir %{_sysconfdir}/X11/xorg.conf.d
491%dir %{_datadir}/X11/xorg.conf.d
492%{_datadir}/X11/xorg.conf.d/*.conf
493%endif
494
495
496%files Xnest
497%defattr(-,root,root,-)
498%{_bindir}/Xnest
499%{_mandir}/man1/Xnest.1*
500
501
502%files Xdmx
503%defattr(-,root,root,-)
504%{_bindir}/Xdmx
505%{_bindir}/dmxaddinput
506%{_bindir}/dmxaddscreen
507%{_bindir}/dmxreconfig
508%{_bindir}/dmxresize
509%{_bindir}/dmxrminput
510%{_bindir}/dmxrmscreen
511%{_bindir}/dmxtodmx
512%{_bindir}/dmxwininfo
513%{_bindir}/vdltodmx
514%{_bindir}/dmxinfo
515%{_bindir}/xdmxconfig
516%{_mandir}/man1/Xdmx.1*
517%{_mandir}/man1/dmxtodmx.1*
518%{_mandir}/man1/vdltodmx.1*
519%{_mandir}/man1/xdmxconfig.1*
520
521
522%files Xvfb
523%defattr(-,root,root,-)
524%{_bindir}/Xvfb
525%{_bindir}/xvfb-run
526%{_mandir}/man1/Xvfb.1*
527
528
529%files Xephyr
530%defattr(-,root,root,-)
531%{_bindir}/Xephyr
532%{_mandir}/man1/Xephyr.1*
533
534
535%if %{with_hw_servers}
536%files sdk
537%defattr(-,root,root,-)
538%{_libdir}/pkgconfig/xorg-server.pc
539%dir %{_includedir}/xorg
540%{sdkdir}/*.h
541%{_datadir}/aclocal/xorg-server.m4
542%endif
543
544%files source
545%defattr(-, root, root, -)
546%{xserver_source_dir}
547
548
549%changelog
550* Fri Aug 07 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.8-2
551- added Patch9000 to fix CVE-2020-14347.
552
553* Sat May 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.8-1
554- new upstream release.
555- added systemd support (disabled as default).
556- updated Source20.
557- updated Patch10010-20000.
558
559* Fri Jan 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.19.6-2
560- added elogind support.
561- changed permission of %{_bindir}/Xorg from 4711 to 755.
562
563* Wed Feb 14 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.19.6-1
564- update to 1.19.6
565
566* Fri Jul 22 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.4-1
567- update to 1.18.4
568
569* Thu May 05 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.3-1
570- update to 1.18.3
571- remove Patch6030 (xserver-1.16.2-right-of.patch)
572- add BuildRequires: libxshmfence-devel
573- change BuildRequires: libgudev-devel instead of eudev-libgudev1-devel
574
575* Mon Nov 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.17.4-2
576- remove Patch 2014,6002,6028,6033
577
578* Tue Nov 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.17.4-1
579- update to 1.17.4
580
581* Sun Oct 25 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.17.2-1
582- update to 1.17.2
583- add BuildRequires: xcb-util-renderutil-devel
584
585* Wed Feb 11 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.4-1
586- update to 1.16.4
587  (including security fix for CVE-2015-0255)
588
589* Sun Dec 21 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.3-1
590- update to 1.16.3
591
592* Sat Nov 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.2-1
593- update to 1.16.2
594- update Patch6030 (xserver-1.16.2-right-of.patch)
595- add BuildRequires: dbus-devel, mesa-libEGL-devel, mesa-libgbm-devel, libepoxy-devel
596
597* Wed Jul 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.15.2-1
598- update to 1.15.2
599- remove Patch6011 (xserver-1.12.0-less-acpi-brokenness.patch)
600- add BuildRequires: xcb-util-devel, xcb-util-keysyms-devel, xcb-util-image-devel, xcb-util-wm-devel
601
602* Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.7-2
603- change BuildRequires: eudev-libgudev1-devel instead of libgudev1-devel
604
605* Wed Jun 11 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.7-1
606- new upstream release
607
608* Wed Apr 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.6-1
609- new upstream release
610
611* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.5-1
612- new upstream release
613
614* Sun Nov 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.4-1
615- new upstream release
616
617* Mon Sep 23 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.3-1
618- new upstream release
619
620* Mon Aug 12 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-1
621- new upstream release
622
623* Sun May 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.1-1
624- new upstream release
625- remove Patch6027 (xserver-1.12.1-displayfd.patch)
626
627* Mon Aug 27 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.4-1
628- new upstream release
629- update Patch6030 (xserver-1.12.4-right-of.patch)
630
631* Wed Jul 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.3-1
632- new upstream release
633
634* Wed May 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.2-1
635- new upstream release
636
637* Tue May 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.1.901-1
638- new upstream release
639
640* Sat Apr 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.1-1
641- new upstream release
642- update Patch2014 (xserver-1.12.1-projector-fb-size.patch)
643- update Patch5002 (xserver-1.12.1-ssh-isnt-local.patch)
644- update Patch6002 (xserver-1.12.1-mode-debug.patch)
645- update Patch6011 (xserver-1.12.0-less-acpi-brokenness.patch)
646- update Patch6027 (xserver-1.12.1-displayfd.patch)
647- update Patch6028 (xserver-1.12.1-randr-error-debugging.patch)
648- update Patch6030 (xserver-1.12.1-right-of.patch)
649- update Patch10010 (xorg-x11-server-1.12.1-nvidia.patch)
650- update Patch10020 (xorg-x11-server-1.12.1-fglrx.patch)
651- update Patch10030 (xorg-x11-server-1.12.1-qemu.patch)
652- update Patch20000 (xorg-server-1.12.1-dont-disable-kbd-if-AEI-on.patch)
653- remove Patch7005
654
655- remove Patch7005
656
657* Sun Jan 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.11.4-1
658- new upstream release
659
660* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.11.3-1
661- new upstream release
662
663* Sat Nov 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.11.2-1
664- new upstream release
665
666* Tue Nov 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.11.1.902-1
667- new upstream release
668
669* Sat Aug 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.4-1
670- new upstream release
671
672* Sun May 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.2-1
673- new upstream release
674
675* Mon Apr 25 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.1-1
676- new upstream release
677
678* Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.0-1
679- new upstream release
680- fix %%install to add xmlrules.in
681- drop Patch103,6049
682- update Patch6027,6030,20000
683- add Patch7005 (xserver-1.9.0-qxl-fallback.patch)
684
685* Sat Feb 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.4-1
686- new upstream release
687
688* Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.3-2
689- rebuild with openssl-1.0.0c
690
691* Sat Dec 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.3-1
692- new upstream release
693- drop Patch6045,6051
694
695* Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.2-1
696- new upstream release
697- update Patch6027,6030,6045,10010,10020,10030,10040
698- drop Patch6033
699- add environment variable LIBTOOL for make command
700- fix %%files
701
702* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.1-2
703- rebuild with rpm-4.8.1 for pkg-config file
704- add BuildRequires: xorg-x11-font-utils, libgudev1-devel
705
706* Tue May 11 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.1-1
707- new upstream release
708- remove upstream patch (Patch6057)
709
710* Sat Apr 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-2
711- add Patch6057 to import xorg.conf.d changes from upstream.
712  - change /etc/xorg.conf.d to /etc/X11/xorg.conf.d
713  - system provided configs should go to /usr/share/X11/xorg.conf.d
714
715* Fri Apr 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-1
716- new upstream release
717
718* Wed Mar 24 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.99.902-2.20100318
719- update to new git snapshot
720
721* Tue Mar 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.99.901-2.20100304
722- update to new git snapshot
723- cleanup spec file
724- import patch2014,6028,6049,6051 from fedora
725
726* Thu Mar 11 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.99.901-1
727- update to 1.8rc1 (1.7.99.901)
728- import patch5002,6002,6030,6033 from fedora
729- add 00-evdev.conf, 10-quirks.conf
730- build against mesa-7.8(git snapshot)
731
732* Fri Feb 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.5-1
733- new upstream release
734
735* Mon Feb 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.4-2
736- rebuild with new toolchain
737- run autoreconf
738
739* Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.4-1
740- new upstream release
741
742* Sat Dec 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.3-1
743- new upstream release
744
745* Fri Nov 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.2-1
746- new upstream release
747
748* Tue Nov 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.1-3
749- add BR: openssl-devel (<BTS:0826>)
750- build against mesa-7.6
751  - update BR: mesa-libGL-devel >= 7.6-1
752
753* Sat Nov 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.1-2
754- add R: pixman-devel, libpciaccess-devel to -sdk (<BTS:820>)
755
756* Wed Nov 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.1-1
757- new upstream release
758
759* Mon Sep 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-2
760- update Patch6012 to use vesa for poulsbo
761  - merge patch6029
762- add Patch6040 to autodetect nvidia driver
763- add Patch6041 to autodetect fglrx driver
764- add Patch6042 to autodetect virtual video driver
765- add Patch6042 to autodetect geode driver
766- add Pathc6050 to fallback to vesa driver
767- add BR: libXdamage-devel, libXv-devel
768
769* Sat Aug 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-1
770- new upstream release
771
772* Thu Jul 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.2-1
773- new upstream release
774
775* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.1-3
776- import fedora and/or upstream patch
777- remove Requires: xorg-x11-drv-mouse (we use evdev for mouse)
778
779* Sat Apr 25 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.6.1-2
780- updated Patch1003: xserver-1.6.1-pic-libxf86config.patch to build libxf86config with fPIC
781
782* Thu Apr 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.1-1
783- new upstream release
784
785* Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-1
786- new upstream releaase
787- add Patch1003 to build libxf86config with -fPIC
788- add BR: pixman-devel >= 0.14.0
789- add BR: xorg-x11-xtrans-devel >= 1.2.3
790
791* Sun Nov 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.3-2
792- rebuild with libXaw.so.7 (libXaw-1.0.5)
793
794* Sat Nov 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.3-1
795- new upstream release
796- add Patch2000
797  - do not diable kbd driver even if AllowEmptyInput is on.
798
799* Tue Oct 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.2-2
800- rebuild with libdrm-2.4.0-3, mesa-7.2
801
802* Mon Oct 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.2-1
803- new upstream release
804
805* Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.1-1
806- new upstream release
807
808* Thu Sep 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0-1
809- new upstream release
810- disable dri2 (upstream default)
811
812* Thu Jul 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.99.906-1
813- new upstream release
814
815* Thu Jul 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.99.905-3
816- add dix/protocol.txt to -source subpackage
817
818* Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.99.905-2
819- add Patch101, 1014 from fedora
820
821* Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.99.905-1
822- update to 1.4.99.905 (1.5RC5)
823- add -common subpackage
824
825* Thu Jun 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.2-1
826- new upstream release
827
828* Wed Jun 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-1
829- new upstream release
830
831* Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0.90-1
832- new versioning policy
833
834* Fri Jan 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0.90-0vl1
835- initial build for Vine Linux
836
837* Mon Sep 17 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-24
838- xserver-1.3.0-edid-quirk-backports.patch: Update the EDID quirks code
839  to match current git.
840
841* Thu Sep 06 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-23
842- xserver-1.3.0-xrandr-timestamp-buglet.patch: Make sure xrandr doesn't
843  stop working after several hours. (Marius Gedminas, #273801)
844
845* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-22
846- Bump BuildRequires: xorg-x11-xtrans-devel to pull in abstract socket
847  support.
848
849* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-21
850- xserver-1.3.0-document-fontpath-correctly.patch: Fix man page to point to
851  directories that exist. (#251203, Matト嬲 Cepl)
852
853* Wed Aug 15 2007 Dave Airlie <airlied@redhat.com> 1.3.0.0-20
854- xserver-1.3.0-newglx-offscreen-pixmaps.patch: fix zero-copy TFP again
855
856* Tue Aug 14 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-19
857- xserver-1.3.0-newglx-offscreen-pixmaps.patch: Zero-copy TFP is busted
858  on at least my laptop, so turn it off again.
859
860* Mon Aug 13 2007 Dave Airlie <airlied@redhat.com> 1.3.0.0-18
861- xserver-1.3.0-mesa7.patch: Add support for building against mesa 7.0.1
862  along with DRI zero-copy TFP hopefully
863- xserver-1.3.0-exaupgrade.patch: Add updated EXA support
864- dropped xserver-1.2.99.901-xephyr-crash-at-exit.patch - upstream
865- rebase xorg-x11-server-1.1.1-offscreen-pixmaps.patch to xserver-1.3.0-newglx-offscreen-pixmaps.patch
866- dropped xorg-x11-server-1.1.1-glcore-visual-matching.patch - fixed upstream
867
868* Thu Aug 09 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-17
869- xserver-1.3.0-default-dpi.patch: Switch default DPI to 100, on the
870  principle that 75 is almost never right and 100 is much more likely.
871
872* Thu Aug 02 2007 Dave Airlie <airlied@redhat.com> 1.3.0.0-16
873- xserver-1.3.0-add-really-slow-bcopy.patch: Speed server start on some cards
874
875* Thu Jul 12 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-15
876- xserver-1.3.0-edid-quirk-backports.patch: Backport EDID quirks from
877  master; fixes some Samsung monitors. (#232810)
878
879* Thu Jul 12 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-14
880- xserver-1.3.0-composite-version.patch: Force the server to report the
881  Composite extension version it supports, not simply the version defined
882  by the protocol headers it was built against.
883
884* Mon Jul 02 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-13
885- Add IDLETIME sync counter for great powersaving justice.
886- Conditionalise default font path for F7 spec compatibility.
887
888* Wed Jun 27 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-12
889- Tweak %%post Xorg slightly to not demolish ModulePath lines installed by
890  the nvidia driver.  (#244359)
891
892* Wed Jun 27 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-11
893- Obsolete the joystick and elo2300 drivers, they never worked and shouldn't
894  be installed.
895
896* Fri Jun 22 2007 Kristian Hテクgsberg <krh@redhat.com> - 1.3.0.0-10
897- Change the default font path to catalogue:/etc/X11/fontpath.d,built-ins
898- Drop build dependency xorg-x11-font-utils.
899
900* Mon Jun 11 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-9
901- xserver-1.3.0-reput-video.patch: Don't crash when minimizing an Xv
902  window. (#241214)
903
904* Wed Jun 06 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-8
905- xserver-1.3.0-ramdac-export.patch: Make sure the old ramdac symbols are
906  exported, since they're in-server now. (#242800)
907
908* Mon Jun 04 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-7
909- xserver-1.3.0-randrama-no-zero-screens.patch: For RANDR 1.2's fake
910  Xinerama info, don't report Xinerama as being active if there are no
911  RANDR 1.2 CRTCs active for that screen.  (#234567)
912- xserver-1.3.0-arm-iopl.patch: Add __arm__ conditionals to many #ifdefs.
913
914* Sat May 26 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-6
915- Make sdk subpackage Require: pkgconfig.  Spotted in review for
916  xorg-x11-drv-apm. (#226577)
917
918* Fri May 11 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-5
919- xserver-1.3.0-fbdevhw-magic-numbers.patch: If the fbdev driver claims to
920  have a zero pixel clock, believe it.  Fixes Xen paravirt. (#238451)
921
922* Mon May 07 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-4
923- xorg-x11-server-1.1.1-offscreen-pixmaps.patch: Fix a crash when activating
924  GLX_EXT_texture_from_pixmap without XAA.
925- xserver-1.3.0-randr12-config-hack.patch: If a Modes line is given in
926  the Screen section, and no PreferredMode option is given for a RANDR 1.2
927  monitor, use the first mode in the Modes line as the preferred mode.
928  Fixes anaconda ugliness on monitors larger than 800x600. (#238991)
929
930* Mon Apr 30 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-3
931- xserver-1.3.0-xkb-and-loathing.patch: Ignore (not just block) SIGALRM
932  around calls to Popen()/Pclose().  Fixes a hang in openoffice when
933  opening menus.
934- Modify BuildRequires to use the virtual protocol Provides.
935
936* Wed Apr 25 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-2
937- xserver-1.3.0-less-randr-fakerama.patch: Disable RANDR's fake Xinerama
938  geometry when there's more than one protocol screen. (#231257)
939
940* Mon Apr 23 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-1
941- xserver 1.3.0.
942
943* Fri Apr 13 2007 Adam Jackson <ajax@redhat.com> 1.2.99.905-5
944- xserver-rc5-to-now.patch: Updates from git.
945
946* Wed Apr 11 2007 Adam Jackson <ajax@redhat.com> 1.2.99.905-4
947- xserver-1.3.0-no-prerelease-warning.patch: Hush the useless prerelease
948  warning if we happen to be building one (and even if not).
949- xserver-1.3.0-pci-device-enable.patch: Make sure the PCI device is enabled
950  in sysfs before we start touching it, otherwise, armageddon.
951
952* Tue Apr 10 2007 Adam Jackson <ajax@redhat.com> 1.2.99.905-3
953- xserver-1.3.0-domain-obiwan.patch: Fix a PCI domain off-by-one. (#235861)
954- xserver-1.3.0-x86emu-imul-int64.patch: Fix imul in x86emu. (#235861)
955
956* Mon Apr 09 2007 Adam Jackson <ajax@redhat.com> 1.2.99.905-2
957- xserver-1.3.0-pci-bus-count.patch: Allocate the PCI bus array dynamically,
958  so as not to run off the end of it.
959- xserver-1.3.0-mmap-failure-check.patch: Check for failure when mmap'ing
960  bus memory. (#234073)
961- xserver-1.3.0-rom-search.patch: Look for the sysfs ROM file in the (flat)
962  /sys/bus/pci/devices tree, instead of the (bus-topological) /sys/devices,
963  so we don't fail to find ROMs merely because they're behind a bridge.
964- xserver-1.3.0-no-pseudocolor-composite.patch: Refuse to initialize
965  Composite when Render is missing or when the root window is using
966  a pseudocolor visual. (#217388)
967- xserver-1.3.0-xnest-exposures.patch: Fix Motif app redraw in Xnest. (#229350)
968
969* Fri Apr 06 2007 Adam Jackson <ajax@redhat.com> 1.2.99.905-1
970- xserver 1.3 RC5.
971
972* Fri Mar 30 2007 David Woodhouse <dwmw2@redhat.com> 1.2.99.903-2
973- Fix regression with PCI domains, but disjoint bus numbers (#207659)
974
975* Fri Mar 30 2007 Adam Jackson <ajax@redhat.com> 1.2.99.903-1
976- xserver 1.3 RC3.
977
978* Mon Mar 19 2007 Adam Jackson <ajax@redhat.com> 1.2.99.902-1
979- xserver 1.3 RC2.
980
981* Tue Mar 13 2007 Adam Jackson <ajax@redhat.com> 1.2.99.901-2
982- xserver-1.2.99.901-xephyr-crash-at-exit.patch: Fix yet another GLX visual
983  mess. (#231425)
984
985* Mon Mar 05 2007 Adam Jackson <ajax@redhat.com> 1.2.99.901-1
986- xserver 1.3 RC1.  RANDR 1.2 hotness in the hizzouse.
987- xserver-1.2.0-honor-displaysize.patch: Honor the DisplaySize config
988  directive again (#220248)
989- Clean up the post-install cleanup
990
991* Fri Mar 02 2007 Adam Tkac <atkac@redhat.com> 1.2.0-10
992- change permissions of files in source package to default from read-only
993
994* Mon Feb 26 2007 Adam Tkac <atkac@redhat.com> 1.2.0-9
995- Created new package (xorg-x11-server-source) which is needed to build VNC
996  server.
997
998* Fri Feb 23 2007 Adam Jackson <ajax@redhat.com> 1.2.0-8
999- xserver-1.2.0-proper-randr-version.patch: Report the RANDR version we
1000  actually implement, instead of the version defined by the protocol headers.
1001
1002* Thu Feb 22 2007 Adam Jackson <ajax@redhat.com> 1.2.0-7
1003- Various backports from git master:
1004  - xserver-1.2.0-xfixes-clientgone-check.patch: Avoids a crash when sending
1005    events to clients that just disconnected.
1006  - xserver-1.2.0-os-memory-leak.patch: Plugs a per-connection memory leak.
1007  - xserver-1.2.0-int10-rdtsc.patch: Implement rdtsc in the int10 emulator.
1008  - xserver-1.2.0-glcore-visual-count.patch: Count glcore visuals properly,
1009    fixes crash at exit.
1010
1011* Mon Feb 05 2007 Adam Jackson <ajax@redhat.com> 1.2.0-6
1012- xorg-x11-server-Red-Hat-extramodes.patch:
1013  - Add 1360x768 normal and reduced-blanking.
1014  - Add reduced-blanking versions of 1680x1050 and 1920x{1200,1080}.
1015  - Remove the >60Hz versions of 2560x1600.  Even leaving the 60Hz timing is
1016    kind of ridiculous, since every real LCD that size I've seen uses the
1017    reduced blanking timings.  But presumably if you have that nice of a
1018    monitor, you also have a video card with working DDC.
1019
1020* Sun Feb 04 2007 Adam Jackson <ajax@redhat.com> 1.2.0-5
1021- Massive spec formatting and style cleanup.
1022- Build Xdmx on all arches.
1023- Enable GL support even on non-DRI machines.
1024- Re-add DRI to ppc64.
1025- Update BuildRequires to current versions.
1026- Remove some bogus Requires.
1027
1028* Wed Jan 31 2007 Adam Jackson <ajax@redhat.com> 1.2.0-4
1029- Fix typo in SDK header. (#222487)
1030
1031* Mon Jan 29 2007 Adam Jackson <ajax@redhat.com> 1.2.0-3
1032- Fix MMX check on AMD CPUs. (#222332)
1033- Fix Xephyr keysym init on LP64. (#224311)
1034
1035* Wed Jan 24 2007 Adam Jackson <ajax@redhat.com> 1.2.0-2
1036- Delete ModulePath lines rather than attempt to munge them.  (#186338)
1037
1038* Tue Jan 23 2007 Adam Jackson <ajax@redhat.com> 1.2.0-1
1039- Xorg server 1.2.0.
1040
1041* Tue Jan 09 2007 Adam Jackson <ajax@redhat.com> 1.1.1-57
1042- xorg-xserver-1.1.0-dbe-render.diff: CVE #2006-6101
1043- xorg-x11-server-1.1.0-redhat-xephyr-only-hack.patch: Skip building the
1044  non-Xephyr kdrive servers entirely.
1045
1046* Mon Dec 18 2006 Adam Jackson <ajax@redhat.com> 1.1.1-56
1047- RHEL5 sync:
1048  - xorg-x11-server-1.1.1-maxpixclock-option.patch: Allow the maximum pixel
1049    clock of a monitor to be specified in the config file.
1050  - xorg-x11-server-1.1.1-glcore-visual-matching.patch: Fix a client crash
1051    when creating software indirect GLX contexts.
1052  - xorg-x11-server-1.1.1-vt-activate-is-a-terrible-api.patch: During server
1053    init, abort if either VT activation ioctl fails.  During shutdown, be
1054    sure to wait for the VT switch to finish before exiting.
1055
1056* Mon Dec 11 2006 Adam Jackson <ajax@redhat.com> 1.1.1-55
1057- xorg-x11-server-1.1.1-lid-close-crash.patch: Added, backport from head.
1058  (#197921)
1059
1060* Mon Dec 11 2006 Adam Tkac <atkac redhat com> 1.1.1-54.1.fc7
1061- fixed building against mesa-6.5.2
1062
1063* Fri Dec 1 2006 Adam Jackson <ajax@redhat.com> 1.1.1-54.fc7
1064- xorg-x11-server-1.1.1-xkb-vidmode-switch.patch: Fix string matching on
1065  XKB actions to be case-insensitive again.  (#216656)
1066
1067* Fri Dec 1 2006 Adam Jackson <ajax@redhat.com> 1.1.1-53.fc7
1068- xorg-x11-server-1.1.1-automake-1.10-fixes.patch: Tweak automakefiles to be
1069  1.10-compliant.
1070- Misc spec fixes.
1071
1072* Mon Nov 27 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-52.fc7
1073- RHEL5 sync:
1074  - Deliver SecurityPolicy in Xvfb when !with_hw_servers (s390, s390x)
1075  - xorg-x11-server-1.1.1-ia64-int10.patch: Fix int10 on ia64.
1076  - xorg-x11-server-1.1.1-ia64-pci-chipsets.patch: ia64 PCI chipset support.
1077- Unify the autoconfig patches.
1078- xorg-x11-server-1.1.1-xf86config-comment-less.patch: Added, makes
1079  pyxf86config not grow the config file every time it's run.
1080- Remove with_developer_utils macro.
1081
1082* Fri Nov 10 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-51.fc7
1083- xorg-x11-server-1.1.1-no-scanpci.patch: Drop scanpci, it's huge and
1084  there's no added value relative to lspci.
1085- xorg-x11-server-1.1.1-spurious-libxf1bpp-link.patch: Minor linktime
1086  fixup.  There's no reason for libxf4bpp to link against libxf1bpp.
1087
1088* Thu Nov 9 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-50.fc7
1089- Fix man page globs to not care whether it's .1.gz or .1x.gz, etc.
1090
1091* Wed Nov 8 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-49.fc7
1092- Switch to using the x86emu version of libint10 even on x86.  Unifies
1093  behaviour among CPUs and works around Xen vm86 emulation bogosity.
1094
1095* Wed Nov 8 2006 Adam Jackson <ajackson@redhat.com>
1096- Add FC7 todo list
1097- Bump Release number back to 48, got reduced somehow.
1098
1099* Fri Oct 13 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-48.fc7
1100- Do not try own /usr/lib/pkgconfig in sdk package.
1101- Drop dependency on xorg-x11-fonts-base now that we compile in
1102  'fixed' and 'cursor' fonts.
1103- Drop xorg-redhat-die-ugly-pattern-die-die-die.patch; use -br option
1104  instead.
1105
1106* Wed Oct  4 2006 Soren Sandmann <sandmann@redhat.com> - 1.1.1-47.fc6
1107- graphics-expose.patch: Call miHandleExposures() with non-translated
1108  coordinates.
1109
1110* Wed Oct  4 2006 Soren Sandmann <sandmann@redhat.com> - 1.1.1-46.fc6
1111- Fix over-zealous code deletion in graphics-expose.patch.
1112
1113* Wed Oct  4 2006 Soren Sandmann <sandmann@redhat.com> - 1.1.1-45.fc6
1114- xorg-x11-server-1.1.1-graphics-expose.patch: call
1115  miHandleExposures() in CopyArea/CopyPlane explicitly in cw to
1116  generate GraphicsExposes correctly. (#209336).
1117
1118* Mon Oct  2 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-44.fc6
1119- xorg-x11-server-1.1.1-offscreen-pixmaps.patch: Take the server lock
1120  before calling back into XAA to evict pixmaps (#204810).
1121
1122* Wed Sep 27 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-43.fc6
1123- xorg-x11-server-1.1.1-vt-activate-is-a-terrible-api.patch: Since the
1124  VT_ACTIVATE/VT_WAITACTIVE pair are never guaranteed to successfully
1125  complete, set a 5 second timeout on the WAITACTIVE, and retry the pair
1126  until we win.  (#207746)
1127- xorg-x11-server-1.1.0-pci-scan-fixes.patch: Partial revert to unbreak some
1128  (but not all) domainful machines, including Pegasos. (#207659)
1129
1130* Mon Sep 25 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-42.fc6
1131- xorg-x11-server-1.1.1-getconfig-pl-die-die-die.patch: Fix XGI cards (#208000)
1132
1133* Fri Sep 22 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-41.fc6
1134- xorg-x11-server-1.1.1-vbe-filter-less.patch: Be gentler about rejecting
1135  VESA modes early, since xf86ValidateModes should handle them just fine.
1136
1137* Wed Sep 20 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-40.fc6
1138- xorg-x11-server-1.1.1-pclose-confusion.patch: Be sure to call Pclose()
1139  on pipes created with Popen(), since the additional magic done by Popen()
1140  relative to popen() is not undone by plain pclose().  (Third base!)
1141- xorg-x11-server-1.1.1-edid-hex-dump.patch: Backport EDID hex dump code
1142  from git.
1143
1144* Wed Sep 20 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.1-39.fc6
1145- Bump xorg-x11-proto-devel BuildRequires version and add Conflict
1146  line for older mesa releases, so GLX_EXT_texture_from_pixmap opcodes
1147  match.
1148
1149* Thu Sep  7 2006 Adam Jackson <ajackson@redhat.coM> - 1.1.1-38.fc6
1150- xorg-x11-server-1.1.1-believe-monitor-rb-modes.patch: Always believe the
1151  monitor when it reports a reduced-blanking mode, even over VGA.
1152
1153* Thu Sep  7 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-37.fc6
1154- Add "built-ins" to default font path.
1155
1156* Wed Sep  6 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-36.fc6
1157- Enable builtin fallback versions of cursor and fixed fonts.
1158
1159* Tue Sep  5 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-35.fc6
1160- xorg-x11-server-1.1.1-always-mouse-thyself.patch: Fix the check to look
1161  for mouse/void drivers in the running layout, as opposed to the config file,
1162  so as not to synthesize two mouse devices.
1163
1164* Thu Aug 31 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-34.fc6
1165- xorg-x11-server-1.1.1-infer-virtual.patch: Be slightly more paranoid about
1166  setting line pitch, and rescan the mode list after pruning to re-validate
1167  the estimated virtual size.
1168
1169* Wed Aug 30 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-33.fc6
1170- Update xorg-x11-server-1.1.1-offscreen-pixmaps.patch to evict pixmap
1171  when GLX_EXT_texture_from_pixmap is first used.
1172
1173* Wed Aug 30 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-32.fc6
1174- Drop xorg-x11-server-1.1.0-gl-include-inferiors.patch now that
1175  compiz can uses the composite overlay window.
1176
1177* Mon Aug 28 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-31.fc6
1178- Update xorg-x11-server-1.1.1-offscreen-pixmaps.patch to log transitions.
1179- Update xorg-x11-server-1.1.0-tfp-damage.patch to always bind to
1180  GL_TEXTURE_RECTANGLE_ARB target.
1181
1182* Fri Aug 25 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-30.fc6
1183- xorg-x11-server-1.1.1-pci-paranoia.patch: In xf86MatchPciInstances, fail
1184  gracefully if xf86PciVideoInfo is NULL (like, on Xen).
1185
1186* Fri Aug 25 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-29.fc6
1187- Add xorg-x11-server-1.1.1-aiglx-happy-vt-switch.patch to fix VT
1188  switching (and suspend/resume) when using AIGLX. (#199692, fdo #7916).
1189- Bump mesa source and libGL BuildRequires.
1190- Update mesa-6.5.1 patch to work with 6.5.1 rc1 (slang_version_syn.h
1191  renamed to slang_pp_version_syn.h).
1192
1193* Thu Aug 24 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-28.fc6
1194- xorg-x11-server-1.1.1-infer-virtual.patch: Only flag modes as preferred
1195  if the EDID block says to.
1196- xorg-x11-server-1.1.1-mode-sort-kung-fu.patch: Enforce a sort order on
1197  modes during lookup: builtin before driver before userdef before other,
1198  and preferred modes within a class before others in that class.
1199
1200* Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-27.fc6
1201- xorg-x11-server-1.1.1-edid-quirks-list.patch: Don't set an arbitrary
1202  pixclock limit if the monitor didn't claim to have one.
1203
1204* Mon Aug 21 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-26.fc6
1205- Add Tilman Sauerbecks patch to fix AIGLX DRI locking.
1206
1207* Fri Aug 18 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-25.fc6
1208- xorg-x11-server-1.1.1-xvfb-composite-crash.patch: Fix Xvfb's -render flag
1209  to also disable the Composite extension.
1210- xorg-x11-server-1.1.1-mesa-6.5.1.patch: Update build system to account for
1211  Mesa 6.5.1 snapshots.
1212- xorg-x11-server-1.1.0-edid-mode-injection-2.patch: Add all available
1213  standard timings from EDID rather than just the first five.
1214
1215* Fri Aug 18 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-24.fc6
1216- xorg-x11-server-1.1.1-edid-quirks-list.patch: Unbreak.
1217
1218* Fri Aug 18 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-23.fc6
1219- xorg-x11-server-1.1.1-xkb-in-xnest.patch: Added. (#193431)
1220
1221* Thu Aug 17 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-22.fc6
1222- xorg-x11-server-1.1.1-infer-virtual.patch: When no modes or virtual size
1223  are given in the config file, attempt to pick a sensible one by examining
1224  the EDID modes and physical geometry.  Also generally make the server
1225  aware of driver-provided modes.
1226- xorg-x11-server-1.1.1-edid-quirks-list.patch: Redo, since the property I was
1227  checking for is both fairly common and fairly predictable. 
1228
1229* Tue Aug 15 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-21.fc6
1230- xorg-x11-server-1.1.1-fix-default-mouse-device-yet-again.patch: Added.
1231
1232* Thu Aug 10 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-20.fc6
1233- xorg-x11-server-1.1.1-always-mouse-thyself.patch: If we lack a mouse
1234  device in the config, and the user hasn't asked for any void devices,
1235  synthesize a mouse section.  (#200347)
1236- xorg-x11-server-1.1.1-edid-quirks-list.patch: Better formatting.
1237
1238* Wed Aug  9 2006 Adam Jackson <ajackson@redhat.com> - 1.1.1-19.fc6
1239- xorg-x11-server-1.1.1-builderstring.patch: Enable the builder info
1240  string at configure time;
1241- ... and use it to print the package name and version.
1242- xorg-x11-server-1.1.1-defaultdepth-24.patch: Set default depth to 24.
1243- xorg-x11-server-1.1.1-edid-quirks-list.patch: Add EDID quirks list as
1244  an experiment; needs a better solution though.
1245
1246* Tue Aug  8 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-18.fc6
1247- Update offscreen-pixmaps patch to migrate pixmaps when the compiz
1248  selection is taken.
1249
1250* Mon Aug  7 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-17.fc5.aiglx
1251- Build for fc5 aiglx repo.
1252
1253* Mon Aug  7 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-17.fc6
1254- Add xorg-x11-server-1.1.1-offscreen-pixmaps.patch to default
1255  XaaNoOffscreenPixmaps to false, for now.
1256
1257* Mon Aug  7 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-16.fc6
1258- xorg-x11-server-1.1.0-edid-mode-injection-2.patch: Off-by-one error in
1259  range storage.
1260
1261* Wed Aug  2 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-15.fc6
1262- xorg-x11-server-1.1.0-edid-mode-injection-2.patch: Allow HorizSync and
1263  VertRefresh to be overridden independently.
1264
1265* Fri Jul 28 2006 Kevin E Martin <kem@redhat.com> - 1.1.1-14.fc6
1266- xorg-x11-server-1.1.1-revert-xkb-change.patch: Revert change to xkb that
1267  broke XkbGetKeyboard().
1268
1269* Fri Jul 28 2006 Kristian Hテクgsberg <krh@redhat.com> - 1.1.1-13.fc5.aiglx
1270- Add conflicts for ABI incompatible version of xorg-x11-drv-i810 and
1271  xorg-x11-drv-ati.
1272
1273* Fri Jul 28 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-13.fc6
1274- Comment out the 848x480 modes from the extramodes patch.  Any panel that
1275  wants it should be doing EDID injection by now, and it screws up
1276  autoconfig by _just_ fitting in the ranges for 800x600.
1277
1278* Wed Jul 26 2006 Mike A. Harris <mharris@redhat.com> 1.1.1-12.fc6
1279- Added "1920x1080" CVT modes to Red-Hat-extramodes patch for (#195272)
1280- Sorted the extramodes file by X res, then Y res for ease of maintenance.
1281
1282* Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-11.fc6
1283- Add selinux{,-devel} buildreqs.
1284
1285* Tue Jul 25 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-10.fc6
1286- xorg-x11-server-1.1.1-selinux-awareness.patch: Added for new Mesa
1287  selinux code.
1288- xorg-x11-server-1.1.1-Xdmx-render-fix-fdo7482.patch: Backport a Render
1289  fix for Xdmx.
1290- xorg-x11-server-1.1.1-no-composite-in-xnest.patch: Disable Composite in
1291  Xnest, as it's known not to work.
1292- Fix default font path to match the config file we used to generate.
1293- Fix default module set to match the config file we used to generate.
1294- Disable use of TLS GLX dispatch to match Mesa selinux nonsense.
1295
1296* Mon Jul 24 2006 Mike A. Harris <mharris@redhat.com> 1.1.1-8.fc6
1297- Added "1440x900@60" CVT mode to Red-Hat-extramodes patch for (#179865)
1298
1299* Fri Jul 21 2006 Mike A. Harris <mharris@redhat.com>
1300- Added "1152x864 @ 100.00" GTF mode to Red-Hat-extramodes patch (#49264)
1301
1302* Fri Jul 21 2006 Mike A. Harris <mharris@redhat.com> 1.1.1-7.fc6
1303- Only ship pcitweak manpage if we are building it (#199653)
1304- Fix dist tag usage (Was {dist}, should be {?dist})
1305- Added xorg-x11-server-libxf86config-dont-write-empty-sections.patch to
1306  prevent config file parser/writer from writing out empty sections (#198653)
1307- Add dependency on xorg-x11-fonts-base to all X server subpackages (#186091)
1308
1309* Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> 1.1.1-6.fc6
1310- Saner defaults for hsync/vrefresh on monitors that can't be probed
1311
1312* Thu Jul 13 2006 Kristian Hテクgsberg <krh@redhat.com>  1.1.1-5.fc6
1313- Tag as 1.1.1-5.fc6.
1314
1315* Wed Jul 12 2006 Kristian Hテクgsberg <krh@redhat.com>  1.1.1-5.fc5.aiglx
1316- Enable composite by default.
1317- Split spiffiffity patch into one patch per change:
1318  xorg-x11-server-1.1.0-no-move-damage.patch and
1319  xorg-x11-server-1.1.0-dont-backfill-bg-none.patch.
1320
1321* Wed Jul 12 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-4.fc6
1322- Restore placing the raw EDID block on the root window.
1323
1324* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.1.1-3.1.fc6
1325- rebuild
1326
1327* Tue Jul 11 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-3.fc6
1328- Enable DPMS by default.
1329
1330* Tue Jul 11 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-2.fc6
1331- Remove nonsensical runtime perl dependency.
1332
1333* Sat Jul 08 2006 Adam Jackson <ajackson@redhat.com> 1.1.1-1.fc6
1334- Update to 1.1.1.
1335
1336* Sat Jul 08 2006 Kristian Hテクgsberg <krh@redhat.com>  1.1.0-27.fc6
1337- Enable TLS for GLX to match the mesa build config.
1338
1339* Fri Jul 07 2006 Kristian Hテクgsberg <krh@redhat.com>  1.1.0-26
1340- Add xorg-x11-server-1.1.0-mesa-copy-sub-buffer.patch to hook up the
1341  GLX_MESA_copy_sub_buffer extension.
1342
1343* Fri Jun 30 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-25.fc6
1344- Start using the new %%{dist} tag <http://fedoraproject.org/wiki/DistTag>
1345  experimentally in the package Release field to help prevent problems like
1346  (#197266) from occuring in the future.
1347
1348* Wed Jun 28 2006 Mike A. Harris <mharris@redhat.com>
1349- Disable build dependency on zlib-devel now that we are not uselessly linking
1350  against it.
1351
1352* Tue Jun 27 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-24
1353- Don't (uselessly) link the server against zlib.
1354- Fix the 1680x1050 modes to be the CVT timings instead of GTF.
1355
1356* Mon Jun 26 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-23
1357- Fix an open-coded check for reduced-blanking modes to only apply to analog
1358  connectors.
1359- Reorder the EDID patches slightly.
1360
1361* Tue Jun 20 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-22
1362- Added xorg-xserver-1.1.0-setuid.diff to fix potential security issue (#196094)
1363- Disable DRI on ppc64 builds.
1364- Conditionalize inclusion of DRI related X server modules to with_dri builds.
1365
1366* Tue Jun 20 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-21
1367- Update xorg-x11-server-1.1.0-tfp-damage.patch to use glTexSubImage2D
1368  to only update the part of the texture that changed, based on damage
1369  regions.
1370
1371* Mon Jun 19 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-20
1372- Remove with_xnest_server conditional, and fix more BuildRequires to pull
1373  in libX11-devel, libXext-devel, zlib-devel, etc. for Xnest and Xephyr.
1374- Remove unwanted files leftover in buildroot for s390/s390x builds.
1375- Add Xserver.1x manpage to multiple subpackages, as it applies equally to
1376  Xorg, Xnest, Xvfb, Xephyr.
1377
1378* Mon Jun 19 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-19
1379- Add with_xnest_server conditional and disable on s390, since Xnest
1380  fails to build on there (Xlib doesn't get added to the link line).
1381- Add -f to removal of xorgconfig and others which may or may not be built.
1382
1383* Mon Jun 19 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-18
1384- Add xorg-x11-server-1.1.0-convolution-filter-fix.patch and
1385  xorg-x11-server-1.1.0-tfp-damage.patch backported to make compiz go
1386  faster and make compiz shadows work.
1387
1388* Mon Jun 19 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-17
1389- Disable filling in monitor gamma info from EDID momentarily, since drivers
1390  will use that field to set the card's gamma ramp.
1391- Backport some stuff from git: cw crash fix, faster pci scanning, some
1392  log message cleanup.
1393
1394* Fri Jun 16 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-16
1395- Enable spec support for s390, s390x, alpha, sparc, and sparc64 architectures.
1396- Add with_hw_servers conditional to disable hardware servers on s390/s390x.
1397- Add with_dmx_server to disable DMX on s390/s390x.
1398- Added "release" number to "BuildRequires: freetype-devel >= 2.1.9-1" for
1399  dependency futureproofing.
1400- Force "--disable-dri" on s390/s390x, to attempt to work around ./configure
1401  failure to find libdrm, which should not be needed on s390 builds anyway.
1402
1403* Thu Jun 15 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-15
1404- Add loader infrastructure for publishing PCI ID lists in the drivers, and
1405  autodetecting drivers based on that.  Currently unused since no drivers
1406  publish such a list yet.
1407- Fix mouse autoconfig to use /dev/input/mice instead of /dev/mouse.
1408
1409* Wed Jun 14 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-14
1410- Change selection atom to _COMPIZ_GL_INCLUDE_INFERIORS in
1411  xorg-x11-server-1.1.0-gl-include-inferiors.patch.
1412
1413* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> 1.1.0-13
1414- put back my -fPIC patch, libxf86config isn't built with fPIC otherwise
1415
1416* Tue Jun 13 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-12
1417- Add EDID mode autodetection.
1418
1419* Mon Jun 12 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-11
1420- Add xorg-x11-server-1.1.0-gl-include-inferiors.patch to let GL
1421  rendering include child windows.
1422
1423* Mon Jun 12 2006 Adam Jackson <ajax@redhat.com> 1.1.0-10
1424- Misc build fixes for ppc64.
1425
1426* Mon Jun 12 2006 Adam Jackson <ajax@redhat.com> 1.1.0-9
1427- --enable-xorg on ppc64 too.
1428- Re-add cvt, got dropped somehow.
1429
1430* Fri Jun 09 2006 Kristian Hテクgsberg <krh@redhat.com> 1.1.0-8
1431- Add our friend, libtool, to BuildRequires.
1432
1433* Thu Jun 08 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-7
1434- Change "BuildRequires: freetype-devel >= 2.1.10" to 2.1.9, as Xorg 7.0
1435  contains 2.1.9 in "extras" and 7.1 does not appear to have a requirement on
1436  a newer freetype.
1437- Janitorial cleanups for spec file changelog consistency.
1438- Call aclocal before automake, otherwise automake >= 1.9.6 is required in
1439  order to rebuild the package.
1440- Build 1.1.0-4, 1.1.0-5, and 1.1.0-6 appear to have failed in brew but nobody
1441  fixed them.  It appears automake 1.9 breaks the build.
1442
1443* Wed Jun 07 2006 Jeremy Katz <katzj@redhat.com> 1.1.0-6
1444- BR automake and autoconf
1445
1446* Wed Jun 07 2006 Jeremy Katz <katzj@redhat.com> 1.1.0-5
1447- build on ppc64 so that we have an X server there
1448
1449* Tue Jun 06 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-4
1450- Hack the kdrive makefile to only attempt to build Xephyr, avoids linking
1451  sixteen extra servers just to delete them.
1452- Move cvt to the default install set, same as gtf.
1453
1454* Mon Jun 05 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-3
1455- Drop the libxf86config -fPIC patch, just build the whole thing with
1456  --with-pic instead.  Add void and evdev to the required driver list for
1457  upcoming autoconfig magic.
1458
1459* Thu May 25 2006 Mike A. Harris <mharris@redhat.com> 1.1.0-2
1460- Add "Requires: xorg-x11-proto-devel >= 7.1-1" to sdk for numerous (52) bug
1461  reports of drivers failing to build with mock.
1462
1463* Tue May 23 2006 Adam Jackson <ajackson@redhat.com> 1.1.0-1
1464- Xorg 7.1 final.
1465
1466* Tue May 23 2006 Mike A. Harris <mharris@redhat.com> 1.0.99.903-2
1467- Disable dependency on xorg-x11-drivers package, for OLPC.  (#191781)
1468- Add "BuildRequires: freetype-devel >= 2.1.10" for bug (#192021)
1469
1470* Fri May 12 2006 Adam Jackson <ajackson@redhat.com> 1.0.99.903-1
1471- Update to 7.1RC3, plus experimental fix for fdo bug #6827.
1472
1473* Mon May 01 2006 Adam Jackson <ajackson@redhat.com> 1.0.99.902-1
1474- Update to 7.1RC2 plus fix for CVE 2006-1526.  Disable the fastpathing
1475  patch for fdo bug #4320 since that should be covered in the generic
1476  Render code now.
1477
1478* Mon Apr 24 2006 Adam Jackson <ajackson@redhat.com> 1.0.99.901-6
1479- Backport a Render crash fix from HEAD.
1480
1481* Thu Apr 13 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.901-5
1482- Update spiffiffity patch to only suppress move damage events for
1483  manually redirected windows.
1484
1485* Wed Apr 12 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.901-4
1486- Bump for rawhide build.
1487
1488* Wed Apr 12 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.901-3
1489- Add xorg-x11-server-1.0.99.901-cow-fix.patch to fix crash when
1490  releasing the COW.
1491
1492* Tue Apr 11 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.901-2
1493- Bump for fc5 build.
1494
1495* Sat Apr 08 2006 Adam Jackson <ajackson@redhat.com> 1.0.99.901-1
1496- Update to 7.1 RC1.
1497
1498* Thu Apr 06 2006 Adam Jackson <ajax@redhat.com> 1.0.99.2-2
1499- Remove LBX to match upstream policy.
1500- Add Xephyr server.
1501
1502* Tue Apr 04 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.2-1
1503- Update to 1.0.99.2 snapshot and go back to using mesa-source package.
1504- Drop xorg-server-1.0.99-composite-visibility.patch.
1505- Drop xorg-server-1.0.1-backtrace.patch.
1506- Drop xorg-server-0.99.3-rgb.txt-dix-config-fix.patch.
1507- Add xorg-server-1.0.99.2-spiffiffity.patch.
1508
1509* Thu Mar 23 2006 Kristian Hテクgsberg <krh@redhat.com>
1510- Pass --with-dri-driver-path so we're sure to point it to the right path.
1511
1512* Wed Mar 22 2006 Soren Sandmann <sandmann@redhat.com> 1.0.99.1-2
1513- Add xorg-server-1.0.99-composite-visibility.patch to get rid of flashing
1514  titlebars in compositing metacity.
1515
1516* Tue Mar 21 2006 Kristian Hテクgsberg <krh@redhat.com> 1.0.99.1-1
1517- Update to 1.0.99.1 snapshot.
1518
1519* Mon Mar 06 2006 Jeremy Katz <katzj@redhat.com> 1.0.1-8
1520- build libxf86config with -fPIC (#181292)
1521- fix sgi 1600sw extra mode (#182430)
1522
1523* Wed Feb 22 2006 Jeremy Katz <katzj@redhat.com> 1.0.1-7
1524- install randrstr.h as part of sdk as required for building some drivers
1525
1526* Tue Feb 21 2006 Mike A. Harris <mharris@redhat.com>
1527- Added xorg-server-1.0.1-backtrace.patch which enables the Xorg server's
1528  built in backtrace support by default, as it was inadvertently disabled in
1529  7.0.
1530
1531* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-6.1
1532- bump again for double-long bug on ppc(64)
1533
1534* Wed Feb 08 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-6
1535- Added xorg-x11-server-1.0.1-Red-Hat-extramodes.patch which is a merger of
1536  XFree86-4.2.99.2-redhat-custom-modelines.patch and
1537  xorg-x11-6.8.2-laptop-modes.patch from FC4 for (#180301)
1538- Install a copy of the vesamodes and extramodes files which contain the list
1539  of video modes that are built into the X server, so that the "rhpxl" package
1540  does not have to carry around an out of sync copy for itself. (#180301)
1541
1542* Tue Feb 07 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-5
1543- Updated "BuildRequires: mesa-source >= 6.4.2-2" to get fix for (#176976)
1544
1545* Mon Feb 06 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-4
1546- Fix brown paper bag error introduced in rpm post script in 1.0.1-4.
1547
1548* Mon Feb 06 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-3
1549- Added xorg-x11-server-1.0.1-composite-fastpath-fdo4320.patch with changes
1550  suggested by ajax to fix (fdo#4320).
1551- Cosmetic cleanups to satiate the banshees.
1552
1553* Sun Feb 05 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
1554- Added xorg-x11-server-1.0.1-fbpict-fix-rounding.patch from CVS HEAD.
1555- Added xorg-x11-server-1.0.1-SEGV-on-null-interface.patch which prevents a
1556  SEGV on null interfaces (#174279,178986)
1557
1558* Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-1
1559- Updated to xserver 1.0.1 from X11R7.0
1560
1561* Thu Dec 22 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-3
1562- Added "Provides: libxf86config-devel = %{version}-%{release}" to sdk package.
1563
1564* Wed Dec 21 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-2
1565- Added xserver-1.0.0-parser-add-missing-headers-to-sdk.patch to provide the
1566  necessary libxf86config.a headers to be able to use the library. (#173084)
1567
1568* Sat Dec 17 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
1569- Updated to xserver 1.0.0 from X11R7 RC4
1570- Removed the following patches, which are now integrated upstream:
1571  - xorg-server-0.99.3-rgb.txt-dix-config-fix.patch,
1572  - xorg-server-0.99.3-fbmmx-fix-for-non-SSE-cpu.patch
1573- Changed manNx directories to manN to match upstream defaults.
1574- Added libxf86config.a to sdk subpackage.
1575- Updated build dependency of "mesa-libGL-devel >= 6.4.1-1"
1576- Added "BuildRequires: xorg-x11-font-utils >= 1.0.0-1" to be able to query
1577  the fontdir from fontutil.pc which is implemented currently by a custom
1578  patch.
1579- Enable xtrap, xcsecurity, xevie, and lbx on all builds, not just DRI builds.
1580- Fix sdk installation path, so that drivers can find the files again.
1581- Update file manifest, to deal with X server modules that have moved to
1582  a subdir, etc.
1583
1584* Mon Nov 28 2005 Kristian Hテクgsberg <krh@redhat.com>
1585- Add a few missing BuildRequires.
1586
1587* Fri Nov 25 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-9
1588- Added "Requires: xorg-x11-drivers >= 0.99.2-4" as a dependency of the Xorg
1589  subpackage, to ensure that anaconda installs all of the drivers during OS
1590  installs and upgrades, as requested by Jeremy Katz.
1591
1592* Fri Nov 25 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-8
1593- Added xorg-server-0.99.3-rgb.txt-dix-config-fix.patch which fixes the
1594  --with-rgb-path option to actually *work*.
1595- Updated libdrm dep to 1.0.5
1596
1597* Wed Nov 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-7
1598- Update xorg-x11-server-utils dep to 0.99.2-5 to ensure rgb.txt is installed
1599  in correct location - _datadir/X11/rgb
1600- Added --with-rgb-path configure option to specify _datadir/X11/rgb so the
1601  X server finds the rgb.txt database properly, for bugs (#173453, 173435,
1602  173428, 173483, 173734, 173737, 173594)
1603- Added xorg-server-0.99.3-fbmmx-fix-for-non-SSE-cpu.patch to prevent SSE/MMX
1604  code from being activated on non-capable VIA CPU. (#173384,fdo#5093)
1605
1606* Thu Nov 17 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-6
1607- Add the missing rpm pre script from monolithic xorg-x11 packaging,
1608  clean it up a bit, reorder it for slight performance gain.
1609- Add some perl magic to pre script to remove RgbPath from xorg.conf,
1610  in order to fix bug (#173036, 173435, 173453, 173428)
1611- Add more perl magic to pre script to update ModulePath to the new
1612  location if it is specified in xorg.conf.
1613- Added xorg-x11-server-0.99.3-init-origins-fix.patch ported from monolithic
1614  xorg-x11 package to fix Xinerama bug.
1615- Added xorg-redhat-die-ugly-pattern-die-die-die.patch to kill the ugly grey
1616  stipple once again for bug (#173423).
1617- Added "BuildRequires: libdrm-devel" for DRI enabled builds.
1618
1619* Mon Nov 14 2005 Jeremy Katz <katzj@redhat.com> 0.99.3-5
1620- Xorg server should be suid for users to be able to run startx (#173064)
1621
1622* Mon Nov 14 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-4
1623- Added temporary "BuildRequires: libXfont-devel >= 0.99.2-3" and
1624  "Requires: libXfont-devel >= 0.99.2-3" to ensure early-testers of
1625  pre-rawhide modular X have installed the work around for (#172997).
1626- Added implementation specific "Requires: xkbdata" to Xorg subpackage, as
1627  we want to ensure the xkb data files are present, but allow us the option
1628  of easily switching implementations to "xkeyboard-config" at a future
1629  date, if we decide to go that route.
1630- Re-enable _smp_mflags during build.
1631- Added "Requires: xorg-x11-drv-vesa" to Xorg subpackage (#173060)
1632
1633* Mon Nov 14 2005 Jeremy Katz <katzj@redhat.com> 0.99.3-3
1634- provide Xserver
1635- add another requires for basic bits
1636
1637* Sun Nov 13 2005 Jeremy Katz <katzj@redhat.com> 0.99.3-2
1638- add some deps to the Xorg subpackage for base fonts, keyboard and mouse
1639  drivers, and rgb.txt that the server really wont work without
1640
1641* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.3-1
1642- Update to xorg-server-0.99.3 from X11R7 RC2.
1643- Add xorg-server.m4 to sdk subpackage, and "X" symlink to Xorg subpackage.
1644
1645* Thu Nov 10 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-4
1646- Added "Requires: xkbcomp" for Xorg server, as it invokes it internally.
1647
1648* Wed Nov 09 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-3
1649- Added "BuildRequires: libXtst-devel" for Xtst examples.
1650
1651* Mon Nov 07 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-2
1652- Added versioning to Xorg virtual Provide, to allow config tools and driver
1653  packages to have version based requires.
1654
1655* Thu Oct 27 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
1656- Update to xorg-server-0.99.2 from X11R7 RC1.
1657- Add "BuildRequires: xorg-x11-util-macros >= 0.99.1".
1658- Add "BuildRequires: mesa-source >= 6.4-4" for DRI builds.
1659- Added dmx related utilities to Xdmx subpackage.
1660- Individually list each X server module in file manifest.
1661- Hack man1 manpages to be installed into man1x.
1662- Add the following ./configure options --disable-dependency-tracking,
1663  --enable-composite, --enable-xtrap, --enable-xcsecurity, --enable-xevie,
1664  --enable-lbx, --enable-dri, --with-mesa-source, --with-module-dir,
1665  --with-os-name, --with-os-vendor, --with-xkb-output, --disable-xorgcfg
1666- Added getconfig, scanpci et al to Xorg subpackage
1667- Added inb, inl, inw, ioport, outboutl, outw, pcitweak utils to Xorg package
1668  conditionally, defaulting to "off".  These utilities are potentially
1669  dangerous and can physically damage hardware and/or destroy data, so are
1670  not shipped by default.
1671- Added "BuildRequires: libdmx-devel" for dmx utilities
1672- Added "BuildRequires: libXres-devel" for Xres examples
1673- Added {_libdir}/xserver/SecurityPolicy to Xorg subpackage for XSECURITY
1674
1675* Mon Oct 03 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2.cvs20050830.2
1676- Fix license tag to be "MIT/X11"
1677- Change Xdmx subpackage to Obsolete xorg-x11-Xdmx instead of xorg-x11-Xnest
1678
1679* Sun Oct 02 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2.cvs20050830.1
1680- Update BuildRequires for new library package naming (libX...)
1681- Use Fedora Extras style BuildRoot tag
1682- Invoke make with _smp_mflags to take advantage of SMP systems
1683
1684* Tue Aug 30 2005 Kristian Hogsberg <krh@redhat.com> 0.99.1-2.cvs20050830
1685- Go back to %spec -n, use new cvs snapshot that supports overriding
1686  moduledir during make install, use %makeinstall.
1687- Drop %{moduledir}/multimedia globs.
1688
1689* Fri Aug 26 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2.cvs20050825.0
1690- Added build dependency on xorg-x11-libfontenc-devel, as the build fails
1691  half way through without it, even though upstream dependencies do not
1692  specify it as required.
1693
1694* Tue Aug 23 2005 Kristian Hogsberg <krh@redhat.com> 0.99.1-1
1695- Initial spec file for the modular X server.
Note: See TracBrowser for help on using the repository browser.