ChangeLog revision d67195da
1commit 61bc4b764030bdc9a731ee74c7c56bf2b2a4bddf
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Thu Apr 7 13:43:48 2022 -0700
4
5    xdpyinfo 1.3.3
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 47770a9bd7b8af662ebaeb56911bfd4ee7ca5b9b
10Author: Adam Jackson <ajax@redhat.com>
11Date:   Thu Feb 10 12:01:57 2022 -0500
12
13    xdpyinfo: Fix printing the X.Org release version for xserver >= 21
14    
15    Without this you'd get 1.21.1.4 instead of 21.1.4.
16
17commit 0cde4d53d3fea82004ccefef5a059287a6e9e861
18Author: Alan Coopersmith <alan.coopersmith@oracle.com>
19Date:   Wed Apr 6 14:56:53 2022 -0700
20
21    gitlab CI: stop requiring Signed-off-by in commits
22    
23    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
24
25commit 46df61a5b8e7171d97614b8553221b5ea1debcdd
26Author: Thomas Kuehne <thomas@kuehne.cn>
27Date:   Sat Dec 11 18:31:12 2021 +0100
28
29    fix -Wunused-[...] compiler warnings
30    
31    xdpyinfo.c:148:1: warning: ‘silent_errors’ defined but not used [-Wunused-function]
32      148 | silent_errors(_X_UNUSED Display *dpy, _X_UNUSED XErrorEvent *ev)
33    xdpyinfo.c:155:14: warning: ‘old_handler’ defined but not used [-Wunused-variable]
34      155 | static int (*old_handler)(Display *, XErrorEvent *) = NULL;
35    
36    Signed-off-by: Thomas Kuehne <thomas@kuehne.cn>
37
38commit 4158bd9d4269b237cacc24ce458ec7751a11a2cd
39Author: Alan Coopersmith <alan.coopersmith@oracle.com>
40Date:   Sun Jan 9 13:13:41 2022 -0800
41
42    Fix spelling/wording issues
43    
44    Found by using:
45        codespell --builtin clear,rare,usage,informal,code,names
46    
47    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
48
49commit 3fb972d2d81d341187adf6b5496a2ffcba733453
50Author: Alan Coopersmith <alan.coopersmith@oracle.com>
51Date:   Sat Dec 4 11:57:10 2021 -0800
52
53    Build xz tarballs instead of bzip2
54    
55    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
56
57commit c4e733af14dfefe524d3c5e3afec1b45ec09388a
58Author: Alan Coopersmith <alan.coopersmith@oracle.com>
59Date:   Sat Dec 4 11:57:07 2021 -0800
60
61    gitlab CI: add a basic build test
62    
63    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
64
65commit 7a227dcfadefeb50a5dca333f3bb65c738567583
66Author: Alan Coopersmith <alan.coopersmith@oracle.com>
67Date:   Sun Sep 12 07:53:32 2021 -0700
68
69    Disable DMX support by default, leave --with-dmx to enable it
70    
71    Since Xserver 21 has removed DMX support, we can stop pulling in dependences
72    on libdmx on systems that won't be using it.
73    
74    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
75
76commit 67a512759f0d8d4e16585b1f04c071f3ea08b8fa
77Author: Alan Coopersmith <alan.coopersmith@oracle.com>
78Date:   Sun Mar 24 16:27:00 2019 -0700
79
80    Add explicit casts to clear implicit conversion warnings
81    
82    xdpyinfo.c:173:17: warning: implicit conversion changes signedness: 'int' to
83          'size_t' (aka 'unsigned long') [-Wsign-conversion]
84            qsort(extlist, n, sizeof(char *), StrCmp);
85            ~~~~~          ^
86    xdpyinfo.c:183:26: warning: implicit conversion changes signedness: 'int' to
87          'unsigned long' [-Wsign-conversion]
88                qe_cookies = calloc(n, sizeof(xcb_query_extension_cookie_t));
89                             ~~~~~~ ^
90    xdpyinfo.c:195:12: warning: implicit conversion loses integer precision:
91          'unsigned long' to 'uint16_t' (aka 'unsigned short') [-Wconversion]
92                                                         strlen(extlist[i]),
93                                                         ^~~~~~~~~~~~~~~~~~
94    xdpyinfo.c:1382:51: warning: implicit conversion loses integer precision:
95          'unsigned long' to 'int' [-Wshorten-64-to-32]
96            int extlen = strlen(known_extensions[i].extname) + 1;
97                ~~~~~~   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
98    
99    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
100
101commit 4fc3902a090c8ed2aff11d6e8a2c0df600d69966
102Author: Alan Coopersmith <alan.coopersmith@oracle.com>
103Date:   Sun Mar 3 11:22:22 2019 -0800
104
105    Only check for XFree86 if vendor string doesn't match X.Org
106    
107    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
108
109commit ae5c4a040680b3889c8ea332c21d2caea2d918d1
110Author: Alan Coopersmith <alan.coopersmith@oracle.com>
111Date:   Wed Nov 21 17:01:52 2018 -0800
112
113    Update configure.ac bug URL for gitlab migration
114    
115    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
116
117commit 873220f791f494ab9659ba6fcb85737c1cd4b99d
118Author: Alan Coopersmith <alan.coopersmith@oracle.com>
119Date:   Fri Nov 16 21:34:53 2018 -0800
120
121    Update README for gitlab migration
122    
123    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
124
125commit bbac7d201e78e2837e418baa3e0d16a475469c3b
126Author: Mihail Konev <k.mvc@ya.ru>
127Date:   Thu Jan 26 14:00:21 2017 +1000
128
129    autogen: add default patch prefix
130    
131    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
132
133commit 84785447ba88a93cd1c2e3edbba7bdf11e37e7b5
134Author: Emil Velikov <emil.l.velikov@gmail.com>
135Date:   Mon Mar 9 12:00:52 2015 +0000
136
137    autogen.sh: use quoted string variables
138    
139    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
140    fall-outs, when they contain space.
141    
142    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
143    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
144    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
145
146commit b9a3e30239cd890ff53f0f996cd99a1f4a7e7e12
147Author: Peter Hutterer <peter.hutterer@who-t.net>
148Date:   Tue Jan 24 10:32:07 2017 +1000
149
150    autogen.sh: use exec instead of waiting for configure to finish
151    
152    Syncs the invocation of configure with the one from the server.
153    
154    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
155    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
156
157commit 122dfb8dbff5238f5272781f940c5a6f24086137
158Author: Alan Coopersmith <alan.coopersmith@oracle.com>
159Date:   Thu Apr 16 23:00:15 2015 -0700
160
161    xdpyinfo 1.3.2
162    
163    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
164
165commit 86c2e6f13b5c77b193762ff7e0628d7957e6bf0b
166Author: Alan Coopersmith <alan.coopersmith@oracle.com>
167Date:   Tue Feb 17 23:06:01 2015 -0800
168
169    Delete unused NULLSTR macro
170    
171    Spotted by clang:
172    
173    xdpyinfo.c:145:9: warning: macro is not used [-Wunused-macros]
174            ^
175    
176    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
177
178commit 5ea2adab785079f7b87a459654696d2fff248a52
179Author: Alan Coopersmith <alan.coopersmith@oracle.com>
180Date:   Tue Feb 17 23:00:56 2015 -0800
181
182    Mark required arguments to Xlib error handler as unused
183    
184    Quiets clang warnings:
185    
186    xdpyinfo.c:151:24: warning: unused parameter 'dpy' [-Wunused-parameter]
187    silent_errors(Display *dpy, XErrorEvent *ev)
188                           ^
189    xdpyinfo.c:151:42: warning: unused parameter 'ev' [-Wunused-parameter]
190    silent_errors(Display *dpy, XErrorEvent *ev)
191                                             ^
192    
193    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
194
195commit bec84d9dd1b6d5f3fcee4cccd704759c5c18544a
196Author: Alan Coopersmith <alan.coopersmith@oracle.com>
197Date:   Mon Jun 2 22:27:58 2014 -0700
198
199    autogen.sh: Honor NOCONFIGURE=1
200    
201    See http://people.gnome.org/~walters/docs/build-api.txt
202    
203    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
204
205commit d236a8cdd4b8c3b8dd49c04d2d9d6dcbd4e6bb53
206Author: Alan Coopersmith <alan.coopersmith@oracle.com>
207Date:   Mon Jun 2 22:27:58 2014 -0700
208
209    configure: Drop AM_MAINTAINER_MODE
210    
211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
212
213commit 38ee48cebce6343c65bde078cea883373fb78b75
214Author: Alan Coopersmith <alan.coopersmith@oracle.com>
215Date:   Mon Jun 2 22:27:54 2014 -0700
216
217    config: Add missing AC_CONFIG_SRCDIR
218    
219    Regroup AC statements under the Autoconf initialization section.
220    Regroup AM statements under the Automake initialization section.
221    
222    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
223
224commit 73cd9d89408ef08b7bbe4f3fb0ae94517441b045
225Author: Alan Coopersmith <alan.coopersmith@oracle.com>
226Date:   Tue Nov 26 22:31:41 2013 -0800
227
228    Sprinkle consts in StrCmp to quiet cast warnings
229    
230    Makes gcc stop saying:
231    xdpyinfo.c: In function ‘StrCmp’:
232    xdpyinfo.c:162:20: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual]
233    xdpyinfo.c:162:39: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual]
234    
235    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
236
237commit ca6adf351b4fc317c4dfc4c8e723b84fd676d4e2
238Author: Alan Coopersmith <alan.coopersmith@oracle.com>
239Date:   Tue Nov 26 22:30:18 2013 -0800
240
241    Print which option was in error along with usage message
242    
243    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
244
245commit b980cacaa342cbbaa3012f06ffc2c9a9c21d33ee
246Author: Alan Coopersmith <alan.coopersmith@oracle.com>
247Date:   Mon May 20 18:48:42 2013 -0700
248
249    xdpyinfo 1.3.1
250    
251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
252
253commit fa36071570461e73b57583e490d794334b038f48
254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
255Date:   Sun Feb 10 19:50:21 2013 -0800
256
257    Mark num_known_extensions as a const, since the size is fixed at compile time
258    
259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
260
261commit 57a45f3b7bb745a082e459d965bee2b11e3bd7b6
262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
263Date:   Sun Feb 10 19:29:05 2013 -0800
264
265    Convert sprintf calls to snprintf
266    
267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
268
269commit f08b3613b2fd6995da264ea0a39c6d48dd28bf97
270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
271Date:   Sun Feb 10 19:10:57 2013 -0800
272
273    Rename i & count in inner loop to avoid shadowing same named vars in outer loop
274    
275    xdpyinfo.c: In function `print_dmx_info':
276    xdpyinfo.c:1282: warning: declaration of 'count' shadows a previous local
277    xdpyinfo.c:1231: warning: shadowed declaration is here
278    xdpyinfo.c:1282: warning: declaration of 'i' shadows a previous local
279    xdpyinfo.c:1232: warning: shadowed declaration is here
280    
281    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
282
283commit 97db6f80f06b753c84de0276db093205ee34b0b0
284Author: Alan Coopersmith <alan.coopersmith@oracle.com>
285Date:   Mon Jan 21 23:15:04 2013 -0800
286
287    Add xrandr to SEE ALSO section of man page
288    
289    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
290
291commit 1b9a3d5459f61abf6285df81e4a75cb472e2a40c
292Author: Alan Coopersmith <alan.coopersmith@oracle.com>
293Date:   Mon Jan 21 23:13:03 2013 -0800
294
295    Add -version option to print version number
296    
297    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
298
299commit 27c57ec56abbd175c7a3ea7c50d85e91e1940c87
300Author: Alan Coopersmith <alan.coopersmith@oracle.com>
301Date:   Mon Jan 21 23:08:43 2013 -0800
302
303    Combine usage messages into a single string
304    
305    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
306
307commit f407231c855bc0349d0f8543a9dfe9dff4b2508b
308Author: Alan Coopersmith <alan.coopersmith@oracle.com>
309Date:   Mon Jan 21 23:03:48 2013 -0800
310
311    Declare 'len' as size_t to avoid unneccessary back-and-forth conversions
312    
313    Fixes clang warnings:
314    
315    xdpyinfo.c:1463:12: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
316            int len = strlen(arg);
317                ~~~   ^~~~~~~~~~~
318    xdpyinfo.c:1465:32: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
319            if (!strncmp("-display", arg, len)) {
320                 ~~~~~~~                  ^~~
321    xdpyinfo.c:1468:47: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
322            } else if (!strncmp("-queryExtensions", arg, len)) {
323                        ~~~~~~~                          ^~~
324    xdpyinfo.c:1470:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
325            } else if (!strncmp("-ext", arg, len)) {
326                        ~~~~~~~              ^~~
327    
328    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
329
330commit ee596f7f67b203d04974fce16deadfcd122d0441
331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
332Date:   Mon Jan 21 23:02:57 2013 -0800
333
334    Mark usage() as _X_NORETURN
335    
336    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
337
338commit 5509502647a997959ec056fec23d471b73eddb5f
339Author: Jon TURNEY <jon.turney@dronecode.org.uk>
340Date:   Wed Jan 4 18:21:51 2012 +0000
341
342    Include Xwindows.h on WIN32 to avoid type clashes
343    
344    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
345    Reviewed-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
346
347commit 02376118fb58c05067054be3f2e469f461f81757
348Author: Alan Coopersmith <alan.coopersmith@oracle.com>
349Date:   Fri Oct 21 21:34:32 2011 -0700
350
351    xdpyinfo 1.3.0
352    
353    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
354
355commit 0b97213aa640aa6a05b9cb298349e45403bf7958
356Author: Alan Coopersmith <alan.coopersmith@oracle.com>
357Date:   Wed Sep 28 20:52:30 2011 -0700
358
359    Silence gcc complaint about being unable to check printf format string
360    
361    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
362
363commit 1ac4dd6c7abe6fe185c0dafb3bb592720128a737
364Author: Alan Coopersmith <alan.coopersmith@oracle.com>
365Date:   Wed Sep 28 20:50:02 2011 -0700
366
367    Remove unused function hasExtension
368    
369    Leftover from the Xprint code removed in commit 889264a52a6cf988
370    
371    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
372
373commit 24c9341f0e7b0fb7aee326a72982e59e535055e1
374Author: Alan Coopersmith <alan.coopersmith@oracle.com>
375Date:   Wed Sep 28 20:48:58 2011 -0700
376
377    Add const attributes to fix gcc -Wwrite-strings warnings
378    
379    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
380
381commit 794e32074cbf13434375afe62b86b57f266a749f
382Author: Alan Coopersmith <alan.coopersmith@oracle.com>
383Date:   Wed Sep 28 20:41:57 2011 -0700
384
385    Strip trailing whitespace
386    
387    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
388    git diff -w & git diff -b show no diffs from this change
389    
390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
391
392commit c80c86499b3e47bcba68960bcba1bd33d9394fc5
393Author: Gaetan Nadon <memsize@videotron.ca>
394Date:   Wed Jan 19 10:06:56 2011 -0500
395
396    config: move man pages into their own directory
397    
398    Use services provided by XORG_MANPAGE_SECTIONS.
399    Use standard Makefile for man pages.
400    
401    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
402
403commit 9ea60417e477a333ff0fb6074032e8e7006c7f5b
404Author: Gaetan Nadon <memsize@videotron.ca>
405Date:   Thu Jan 13 11:15:47 2011 -0500
406
407    man: remove trailing spaces and tabs
408    
409    Using s/[ \t]*$//
410    
411    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
412
413commit 7cccede7fbe736b40c7de56d1e3304cad61489a3
414Author: Gaetan Nadon <memsize@videotron.ca>
415Date:   Wed Jan 12 16:28:02 2011 -0500
416
417    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
418    
419    This silences an Autoconf warning
420
421commit e95f61e453354b0f31d18cc873a4be8b1911b098
422Author: Gaetan Nadon <memsize@videotron.ca>
423Date:   Wed Jan 12 15:29:50 2011 -0500
424
425    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
426    
427    This silences an Automake warning.
428    
429    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
430
431commit 7807192aa448d57ad8d903c445a7ba91c917b8d6
432Author: Jesse Adkins <jesserayadkins@gmail.com>
433Date:   Tue Sep 28 13:29:49 2010 -0700
434
435    Purge cvs tags.
436    
437    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
438
439commit 072fc46b2af370e78fa53426626ca3c33b74bdf2
440Author: Alan Coopersmith <alan.coopersmith@oracle.com>
441Date:   Sun Oct 3 11:47:07 2010 -0700
442
443    Use xcb for -queryExt instead of a round-trip per extension
444    
445    On a system with 30 extensions listed by xdpyinfo, truss -c
446    reports this saves quite a few system calls by batching the
447    QueryExtension requests instead of a round-trip for each one:
448    
449                          Xlib      xcb
450    writev                  40       11
451    poll                    80       22
452    recv                   117       29
453    total (*)              464      296
454    
455    (*) total includes all system calls, including many not shown since
456    their count did not change significantly.   There was one additional
457    set of open/mmap/close etc. for loading the added libX11-xcb library.
458    
459    Over a tcp connection, this reduced both the number of packets,
460    and due to tcp packet header overhead, the overall amount of data:
461    
462                          Xlib      xcb
463    TCP packets             93       35
464    TCP bytes            11554     7726
465    
466    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
467    Reviewed-by: Jamey Sharp <jamey@minilop.net>
468
469commit 30bc4b0ada659809c64f6a8292cbde3166267e8d
470Author: Alan Coopersmith <alan.coopersmith@oracle.com>
471Date:   Sun Oct 3 10:51:09 2010 -0700
472
473    xdpyinfo 1.2.0
474    
475    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
476
477commit 8f12197ace824fb47fe72725e46ff5f9ba44c39e
478Author: Alan Coopersmith <alan.coopersmith@oracle.com>
479Date:   Sun Oct 3 10:45:43 2010 -0700
480
481    Remove DPY_XPRINT_* from Makefile.am
482    
483    The definitions were removed from configure.ac by commit e4541a92f7faead53
484    
485    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
486
487commit 6932cb0e96de5e17fb637794575a9b89b65db276
488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
489Date:   Thu Sep 23 20:06:19 2010 -0700
490
491    config: Remove unnecessary calls from configure.ac
492    
493    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
494    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
495    
496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
497
498commit b9263245f854ef292ce2e60a324ba1d056c3222d
499Author: Alan Coopersmith <alan.coopersmith@oracle.com>
500Date:   Thu Sep 23 20:04:53 2010 -0700
501
502    config: upgrade to util-macros 1.8 for additional man page support
503    
504    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
505    The value of MAN_SUBST is the same for all X.Org packages.
506    
507    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
508    The existing statement can now be removed from the configuration file.
509    
510    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
511
512commit b54bc557a3a3ba87d32e330517b17fb3bbd6cd70
513Author: Gaetan Nadon <memsize@videotron.ca>
514Date:   Tue Jul 20 18:45:18 2010 -0400
515
516    config: update AC_PREREQ statement to 2.60
517    
518    Unrelated to the previous patches, the new value simply reflects
519    the reality that the minimum level for autoconf to configure
520    all x.org modules is 2.60 dated June 2006.
521    
522    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
523    
524    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
525
526commit d3487b3fd52c1361e689d28fd8fb6f6d7140825b
527Author: Gaetan Nadon <memsize@videotron.ca>
528Date:   Fri Mar 26 19:23:35 2010 -0400
529
530    xprint: remove isPrintScreen code
531    
532    The if (isPrintScreen) always evaluate to false
533    
534    Reviewed-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
535    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
536
537commit 889264a52a6cf9882b010de55d555c877dd216f3
538Author: Gaetan Nadon <memsize@videotron.ca>
539Date:   Fri Mar 26 19:20:56 2010 -0400
540
541    xprint: remove conditional code regarding xprint feature
542    
543    xprint has been removed from X Window System
544    
545    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
546
547commit e4541a92f7faead53fe855e5be5d8318b636827b
548Author: Gaetan Nadon <memsize@videotron.ca>
549Date:   Fri Mar 26 19:20:10 2010 -0400
550
551    config: remove xprint feature which is obsolete
552    
553    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
554
555commit f0b2eed8b9447038d6cf9d0d33be902398da2ca2
556Author: Gaetan Nadon <memsize@videotron.ca>
557Date:   Thu Jan 7 21:38:31 2010 -0500
558
559    COPYING: replace stub with actual copyright notice
560    
561    Refer to xdpyinfo.c
562    Copyright 1988, 1998  The Open Group
563    Copyright 2005 Hitachi, Ltd.
564    
565    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
566
567commit 4e3962ab551368c1c959ecf78b3c6cfd03cd0763
568Author: Gaetan Nadon <memsize@videotron.ca>
569Date:   Thu Nov 26 09:19:53 2009 -0500
570
571    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
572    
573    Now that the INSTALL file is generated.
574    Allows running make maintainer-clean.
575
576commit c4367264ce11abfbe64e92ab6b0807b6213ff56f
577Author: Gaetan Nadon <memsize@videotron.ca>
578Date:   Wed Oct 28 14:09:08 2009 -0400
579
580    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
581    
582    Add missing INSTALL file. Use standard GNU file on building tarball
583    README may have been updated
584    Remove AUTHORS file as it is empty and no content available yet.
585    Remove NEWS file as it is empty and no content available yet.
586
587commit c2fbd90b15cf45e2b0c5649bc575d04d09ce6f30
588Author: Gaetan Nadon <memsize@videotron.ca>
589Date:   Tue Oct 27 15:07:24 2009 -0400
590
591    Deploy the new XORG_DEFAULT_OPTIONS #24242
592    
593    This macro aggregate a number of existing macros that sets commmon
594    X.Org components configuration options. It shields the configuration file from
595    future changes.
596
597commit 6510da8afa850a92666a5377aa2642646c6ab4f1
598Author: Gaetan Nadon <memsize@videotron.ca>
599Date:   Mon Oct 26 22:08:38 2009 -0400
600
601    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
602    
603    ChangeLog filename is known to Automake and requires no further
604    coding in the makefile.
605
606commit 92f55dcd3aa216ecd861b91c22c617972aaeb4de
607Author: Gaetan Nadon <memsize@videotron.ca>
608Date:   Thu Oct 22 12:34:15 2009 -0400
609
610    .gitignore: use common defaults with custom section # 24239
611    
612    Using common defaults will reduce errors and maintenance.
613    Only the very small or inexistent custom section need periodic maintenance
614    when the structure of the component changes. Do not edit defaults.
615
616commit c991ae4f86a1abb99f3f0c38b10c922a0d5b63e8
617Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
618Date:   Wed Oct 21 12:47:20 2009 -0700
619
620    This is not a GNU project, so declare it foreign.
621    
622    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
623    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
624    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
625    > > was quite annoying to work around since 'autoreconf -fvi' replaces
626    > > it and git wants to commit it.  Should these files even be in git?
627    > > Can I nuke them for the betterment of humanity and since they get
628    > > created by autoreconf anyways?
629    >
630    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
631    
632    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
633    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
634    of the INSTALL file. It is also part of the 24206 solution.
635    
636    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
637
638commit a02c4aad3cbe284630de60f6de9c1bfc3dd6a853
639Author: Alan Coopersmith <alan.coopersmith@sun.com>
640Date:   Fri Oct 16 16:07:10 2009 -0700
641
642    xdpyinfo 1.1.0
643    
644    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
645
646commit a2f989d387ec8f6002240be53fa24e264392b693
647Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
648Date:   Tue Oct 13 11:34:11 2009 -0700
649
650    Added --without-{xf86misc,xprint} configure time options
651    
652    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
653
654commit 5d44998f53644954200f3e6adbfbef068b5755e6
655Author: Alan Coopersmith <alan.coopersmith@sun.com>
656Date:   Mon Oct 12 18:01:22 2009 -0700
657
658    Use $(AM_V_GEN) to silence man page creation too
659    
660    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
661
662commit 9ca9d19206114788da85c81a5aba2525baef80cb
663Author: Alan Coopersmith <alan.coopersmith@sun.com>
664Date:   Mon Oct 12 18:00:15 2009 -0700
665
666    Use Xxf86dga.h & xf86dgaproto.h if present, to avoid warnings from old headers
667    
668    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
669
670commit 26b3ee9b9fd5a58ef7812ecabebd78bd10d57878
671Author: Alan Coopersmith <alan.coopersmith@sun.com>
672Date:   Fri Oct 2 17:00:45 2009 -0700
673
674    Remove empty INSTALL so automake installs a real one
675    
676    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
677
678commit 22e3bfdb5d700c9f767366db39ec1dec72785929
679Author: Alan Coopersmith <alan.coopersmith@sun.com>
680Date:   Thu Oct 1 14:54:22 2009 -0700
681
682    Add README with pointers to mailing lists, bugzilla, & git
683    
684    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
685
686commit f9eaeadea17cb96ab85ee6cc0b5aa3867a832bcc
687Author: Alan Coopersmith <alan.coopersmith@sun.com>
688Date:   Mon Sep 21 16:27:55 2009 -0700
689
690    Use xf86vmproto.h instead of xf86vmstr.h if it is installed
691    
692    Clears warnings when built with xf86vidmodeproto 2.2.99.1 & later
693    
694    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
695    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
696
697commit bd89c302aa44c5a7a6e5f5d6e6f131e04b8e61c1
698Author: Alan Coopersmith <alan.coopersmith@sun.com>
699Date:   Mon Sep 21 16:22:30 2009 -0700
700
701    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
702    
703    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
704
705commit 5e33ed3a2852a84fbbeb4fb4172928053cf677bf
706Author: Alan Coopersmith <alan.coopersmith@sun.com>
707Date:   Tue Sep 1 21:54:11 2009 -0700
708
709    Move CWARNFLAGS addition to CFLAGS from configure.ac to Makefile.am
710    
711    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
712
713commit f1974e686a9622fa526268697d29ceab83edf0d0
714Author: Alan Coopersmith <alan.coopersmith@sun.com>
715Date:   Tue Sep 1 20:50:51 2009 -0700
716
717    Improved XF86-VidModeExtension printing
718    
719    - Combine common modeline printing code into single function
720    - Don't return 0 unless extension isn't supported, since that
721      makes xdpyinfo report the extension isn't supported.
722    - Don't exit immediately if some information is not available,
723      since other info may be present.
724    
725    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
726
727commit ffa604b5e6b60c5a98cc18819e70786b26b0b07c
728Author: Alan Coopersmith <alan.coopersmith@sun.com>
729Date:   Tue Sep 1 07:22:17 2009 -0700
730
731    Bug 3438: xdpyinfo reporting wrong information on xf86vidmode extension
732    
733    https://bugs.freedesktop.org/show_bug.cgi?id=3438
734    
735    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
736
737commit bb7e3c9ac00d5b3933b69470e03fadfe1800f7ae
738Author: Alan Coopersmith <alan.coopersmith@sun.com>
739Date:   Wed Feb 4 13:43:34 2009 -0800
740
741    Print Composite extension version for "-ext Composite"
742    
743    The only other information I could see to query in the Composite 0.4
744    protocol spec is the Composite Overlay Window XID, but the request to
745    get that ID has the side effect of mapping the overlay window, and
746    xdpyinfo shouldn't have side effects like that.
747    
748    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
749
750commit 3a041bbccdee28b628ce5243e77d7d3125a186d4
751Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
752Date:   Tue Jan 13 20:10:23 2009 -0200
753
754    Ansification and compile warning fixes.
755    
756      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects
757    make distcheck.
758
759commit 0fbda267334eb531b7153c3b9035fe7470302e13
760Author: Matthieu Herrb <matthieu.herrb@laas.fr>
761Date:   Fri Jun 13 12:23:03 2008 -0600
762
763    Don't print '(null)' when XF86VidModeGetMonitor() returns NULL fields.
764
765commit 53743925d1067b830dd80f9193444f5799f55e28
766Author: Adam Jackson <ajax@redhat.com>
767Date:   Wed May 21 14:19:52 2008 -0400
768
769    xdpyinfo 1.0.3
770
771commit f70bd6335967fb3992399411d33e015b0d4d8f1d
772Author: Adam Jackson <ajax@redhat.com>
773Date:   Wed May 21 14:18:57 2008 -0400
774
775    Ignore errors from xf86misc rather than crashing out.
776
777commit 2c094e502060be530a306fe7f8feed6eddf9266f
778Author: Julien Cristau <jcristau@debian.org>
779Date:   Wed Apr 30 14:37:03 2008 +0200
780
781    Handle XExtension{Keyboard,Pointer}, added in inputproto 1.4
782
783commit bbf726ad95e75c844046968a00e1340cbbe6bd8a
784Author: James Cloos <cloos@jhcloos.com>
785Date:   Thu Dec 6 15:51:05 2007 -0500
786
787    Add missing PHONY line for automatic ChangeLog generation
788
789commit 66611f2fdca348c619afb4509e860919088c6fbf
790Author: Alan Coopersmith <alan.coopersmith@sun.com>
791Date:   Thu May 24 18:24:29 2007 -0700
792
793    X.Org bug #10616: Add all the X info commands to See Also in man page
794    
795    X.Org Bugzilla #10616: <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
796    Reported upstream from
797    Debian bug #350313 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350313>
798
799commit 704cb5aad217a1818c05e3cd5334c484020150e6
800Author: Alan Coopersmith <alan.coopersmith@sun.com>
801Date:   Tue Mar 20 14:08:17 2007 -0700
802
803    Version bump: 1.0.2
804
805commit e7c95f92cb17eb971462074cfcc9b952bb466362
806Author: Alan Coopersmith <alan.coopersmith@sun.com>
807Date:   Tue Mar 20 13:34:30 2007 -0700
808
809    Clear a couple more memory leaks found by Sun Studio dbx check -leaks
810
811commit e411de3d660a5382e7cb8d31fa2fa1bc35823931
812Author: Alan Coopersmith <alan.coopersmith@sun.com>
813Date:   Tue Mar 20 13:25:06 2007 -0700
814
815    Coverity #748: IsPrintScreen: Returned without freeing storage "pscreens"
816
817commit ce6709132a322e82e915b761c0ced1bc418095ea
818Author: Alan Coopersmith <alan.coopersmith@sun.com>
819Date:   Tue Mar 20 13:21:56 2007 -0700
820
821    Coverity #749: print_XF86VidMode_info: Returned without freeing storage "modelines"
822
823commit f4001e881a9f5d57dd99326d4f501737a0ded6e6
824Author: Alan Coopersmith <alan.coopersmith@sun.com>
825Date:   Tue Mar 20 13:16:18 2007 -0700
826
827    Coverity #750: print_xinput_info() returned without freeing storage "ext"
828
829commit c896552ee94cf50f8acfccc49096e5ec564e5356
830Author: Alan Coopersmith <alan.coopersmith@sun.com>
831Date:   Tue Mar 20 13:10:33 2007 -0700
832
833    Coverity #752: XListDepths return leaked in print_xrender_info()
834
835commit ea8455a0932c21ef29e97d469b492dadc85dabdc
836Author: Ingo Bormuth <ibormuth@efil.de>
837Date:   Thu May 25 03:13:00 2006 -0800
838
839    Bug 7027: Add configure options --without-dmx --without-dga --without-xinerama
840    
841    X.Org Bug 7027: <https://bugs.freedesktop.org/show_bug.cgi?id=7027>
842    Patch #5735: <https://bugs.freedesktop.org/attachment.cgi?id=5735>
843    
844    From gentoo bug 132502: <http://bugs.gentoo.org/show_bug.cgi?id=132502>
845
846commit 2fe59be76e3a341b601838c3729d0045d49946d3
847Author: Alan Coopersmith <alan.coopersmith@sun.com>
848Date:   Tue Mar 20 10:39:36 2007 -0700
849
850    Fix line wrapping of extensions list in usage message
851
852commit 91f465babd46f1b39c6f5665e38e4aab58fc921b
853Author: Alan Coopersmith <alan.coopersmith@sun.com>
854Date:   Mon Mar 19 19:23:33 2007 -0700
855
856    Clear sparse warning: Using plain integer as NULL pointer
857
858commit 6a26c41570f1b91f14508cf3d44f4ed3c51127bd
859Author: Alan Coopersmith <alan.coopersmith@sun.com>
860Date:   Mon Mar 19 19:15:18 2007 -0700
861
862    Fix typos in comments
863
864commit 752b793aa03b67eeff6b01c7f0bdb729f00bd49b
865Author: Alan Coopersmith <alan.coopersmith@sun.com>
866Date:   Mon Mar 19 19:09:27 2007 -0700
867
868    Add support for checking sources with sparse/lint/etc.
869
870commit d66b154dce42319f73f4b0773e44c59c9cf9d7a6
871Author: Alan Coopersmith <alan.coopersmith@sun.com>
872Date:   Mon Mar 19 18:53:38 2007 -0700
873
874    renamed: .cvsignore -> .gitignore
875
876commit 767fdebc77faf1b7322e7068a420a7fc2bf4a376
877Author: Alan Coopersmith <alan.coopersmith@sun.com>
878Date:   Mon Mar 19 18:53:02 2007 -0700
879
880    Replace static ChangeLog with dist-hook to generate from git log
881
882commit 421eee53c9153cfa6bb5ea27e8b8df5f186451a3
883Author: Kevin E Martin <kem@kem.org>
884Date:   Wed Dec 21 02:29:49 2005 +0000
885
886    Update package version for X11R7 release.
887
888commit 263521ee094a1b63fd5ffdd2f81bd4c511fdb479
889Author: Adam Jackson <ajax@nwnk.net>
890Date:   Mon Dec 19 16:22:43 2005 +0000
891
892    Stub COPYING files
893
894commit 74da6a6fdc7b90a779fab59811a162fe0571992c
895Author: Kevin E Martin <kem@kem.org>
896Date:   Thu Dec 15 00:24:06 2005 +0000
897
898    Update package version number for final X11R7 release candidate.
899
900commit 58e6b96a84164845b49112bf6d76def97e909ef1
901Author: Kevin E Martin <kem@kem.org>
902Date:   Tue Dec 6 22:48:21 2005 +0000
903
904    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
905
906commit d4cf291eff395b272590ba1415cdc5744dc39694
907Author: Kevin E Martin <kem@kem.org>
908Date:   Sat Dec 3 05:49:19 2005 +0000
909
910    Update package version number for X11R7 RC3 release.
911
912commit bdf02be37894b3e1b87437a8a0186fbd57f80e38
913Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
914Date:   Mon Nov 28 22:01:41 2005 +0000
915
916    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
917        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
918
919commit 3a79f7e287e091102d56df996a19631709d99737
920Author: Eric Anholt <anholt@freebsd.org>
921Date:   Mon Nov 21 10:34:59 2005 +0000
922
923    Another pass at .cvsignores for apps.
924
925commit 1b28a57af4956be9a8e7d64dd5f0096ae43b3f6d
926Author: Eric Anholt <anholt@freebsd.org>
927Date:   Sun Nov 20 22:08:51 2005 +0000
928
929    Add/improve .cvsignore files for apps.
930
931commit d91a0552a4b3c4f40e4b2ec10936c3f212a5d3bc
932Author: Kevin E Martin <kem@kem.org>
933Date:   Sat Nov 19 07:15:36 2005 +0000
934
935    Update pkgconfig files to separate library build-time dependencies from
936        application build-time dependencies, and update package deps to work
937        with separate build roots.
938
939commit eddecbe72843f358cf902a3a2081634745e52298
940Author: Kevin E Martin <kem@kem.org>
941Date:   Wed Oct 19 02:47:53 2005 +0000
942
943    Update package version number for RC1 release.
944
945commit 4689eb41b6329fec24a7da63a203576b72b937da
946Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
947Date:   Mon Oct 17 23:56:21 2005 +0000
948
949    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
950        work better with BSD make
951
952commit 72bc207e91d9d770d17f8330cbba71a83b21d13d
953Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
954Date:   Fri Oct 14 00:25:44 2005 +0000
955
956    Use sed to fill in variables in man page
957
958commit 0df7213be00f90d227be44efbb60c8f2fdd712ff
959Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
960Date:   Fri Aug 19 00:13:45 2005 +0000
961
962    More updates for Panoramix -> Xinerama rename
963
964commit 87e9acd02968882740bfbf51b68a1ef19584f371
965Author: Adam Jackson <ajax@nwnk.net>
966Date:   Wed Aug 3 04:30:26 2005 +0000
967
968    More unique tokens for PKG_CHECK_MODULES
969
970commit 4fb83e624716886c60474f3bb443ffd730786889
971Author: Kevin E Martin <kem@kem.org>
972Date:   Fri Jul 29 21:22:32 2005 +0000
973
974    Various changes preparing packages for RC0:
975    - Verify and update package version numbers as needed
976    - Implement versioning scheme
977    - Change bug address to point to bugzilla bug entry form
978    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
979        reenable it)
980    - Fix makedepend to use pkgconfig and pass distcheck
981    - Update build script to build macros first
982    - Update modular Xorg version
983
984commit ed783e6948cf7cd937f0570e9578162e35495d45
985Author: Adam Jackson <ajax@nwnk.net>
986Date:   Wed Jul 20 19:31:52 2005 +0000
987
988    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
989        configure cache, you cache it, and the cached value is probably wrong.
990
991commit bcc095561f040a8a0cd19ed94bc800d128e9c0b1
992Author: Daniel Stone <daniel@fooishbar.org>
993Date:   Mon Jul 18 08:24:50 2005 +0000
994
995    Fail gracefully when extensions not present.
996
997commit 3b4cbb4fe34ff4de91ba6524d7750a2b55f5d67a
998Author: Keith Packard <keithp@keithp.com>
999Date:   Sat Jul 9 23:36:22 2005 +0000
1000
1001    Add .cvsignore files
1002
1003commit 1e169a60adf7d9759d3b4a4dfb381043814e121a
1004Author: Keith Packard <keithp@keithp.com>
1005Date:   Fri Jul 8 04:54:31 2005 +0000
1006
1007    Autodetect extension support. Install manual as xdpyinfo.1 Note that
1008        autodetection requires changes to xdpyinfo.c as well, which currently
1009        lives in the monolithic tree. These changes don't have any effect on
1010        monolithic builds.
1011
1012commit d89449b6eacd919005fdad3b378e64fe46591728
1013Author: Keith Packard <keithp@keithp.com>
1014Date:   Fri Jul 8 04:54:09 2005 +0000
1015
1016    Add support for modular extension autodetection (ignored in monolithic
1017        build)
1018
1019commit d99fbcde4c892e8d84e02b40ed3f5862a731e9c2
1020Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
1021Date:   Wed Jul 6 19:56:47 2005 +0000
1022
1023    Add buildsystem for xdpyinfo
1024
1025commit 1b09e416dcaed59d319b295b933506a6f54fe918
1026Author: Roland Mainz <roland.mainz@nrubsig.org>
1027Date:   Tue Apr 26 05:33:10 2005 +0000
1028
1029    //bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2555
1030        (https://bugs.freedesktop.org/attachment.cgi?id=2555) bug 2705 part II:
1031        Fix build to work with |#define BuildXprint NO| Patch by Kevin E.
1032        Martin <kem@freedesktop.org>.
1033
1034commit 5adf5a253e5434c2b0c2276ce3733cbb05282980
1035Author: Roland Mainz <roland.mainz@nrubsig.org>
1036Date:   Fri Mar 11 21:18:12 2005 +0000
1037
1038    xc/programs/twm/Imakefile
1039    xc/programs/twm/twm.c
1040    //bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2087
1041        (https://bugs.freedesktop.org/attachment.cgi?id=2087) Make twm ignore
1042        print screens to avoid that users accidentally warp on a non-video
1043        screen (which are not visible on any monitor) when the Xserver has both
1044        video and print screens. (This includes also a small cleanup of
1045        xdpyinfo where parts of the print screen test code comes from) Patch by
1046        Julien Lafon <julien.lafon@gmail.com> (MIT/X.org license).
1047
1048commit 4d275dcc29658972a3d7c2e72b812140819a10c3
1049Author: Kevin E Martin <kem@kem.org>
1050Date:   Thu Sep 2 05:50:38 2004 +0000
1051
1052    Clean up defines for Xprint support and fix BuildServersOnly build for
1053        libXaw.
1054
1055commit a667763d5b733f5ae2d8a3ca7e1e99d3deed2830
1056Author: Kristian Høgsberg  <krh@redhat.com>
1057Date:   Mon Aug 16 16:36:15 2004 +0000
1058
1059    As discussed and agreed on on the release-wranglers meeting of August 16,
1060        I'm committing the patch from bug #1060 to back out unconditional
1061        Xprint functionality.
1062    Back out Xprint changes.
1063    Revert xman to CVS of June 5, revert xlogo to CVS of May 8, revert xedit to
1064        CVS of April 25, to back out unconditional Xprint support.
1065    Fix up Xprint config logic to be like the rest of the extensions:
1066        BuildXprint is a one-stop option for disabling everything Xprint
1067        related. XprtServer controls building Xprt, BuildXprintLib controls
1068        building Xprint libs and BuildXprintClients controls building clients
1069        related to Xprint. BuiltXprint defaults to YES and the other options
1070        respects relevant settings, i.e. BuildServer and BuildServersOnly.
1071    Build Xaw regardless of BuildXprintLib setting.
1072    Only build xphelloworld, xplsprinters and xprehashprinterlist when
1073        BuildXprintClients it YES. Disable building xmore, it has always
1074        supported XawPrintShell.
1075    Make Xprint support depend on BuildXprintLib.
1076
1077commit f5e06cb6bc7ddb2b81a819f4ef1ba41f7c66ba20
1078Author: Kevin E Martin <kem@kem.org>
1079Date:   Wed Jun 30 20:06:56 2004 +0000
1080
1081    Add Distributed Multihead X (DMX) support
1082
1083commit ec6b1eb0128635b465ba46761b5d9ba3377db0e8
1084Author: Roland Mainz <roland.mainz@nrubsig.org>
1085Date:   Tue May 25 02:07:18 2004 +0000
1086
1087    Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=672 - RFE: xdpyinfo
1088        should print information about print screens
1089
1090commit 4933a7a9f75fc80afba004f0c55959d35d7ffe41
1091Author: Roland Mainz <roland.mainz@nrubsig.org>
1092Date:   Sun May 16 21:52:44 2004 +0000
1093
1094    Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=623 -
1095        RFE: "xdpyinfo" should have support for XpExtension.
1096
1097commit 0f274e479e7825d535ab04aeadd475d47e1769a5
1098Author: Egbert Eich <eich@suse.de>
1099Date:   Fri Apr 23 19:54:43 2004 +0000
1100
1101    Merging XORG-CURRENT into trunk
1102
1103commit cccbebfe7ee498cd8beae22831b50d570d623a94
1104Author: Egbert Eich <eich@suse.de>
1105Date:   Sun Mar 14 08:35:14 2004 +0000
1106
1107    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1108
1109commit 26e6d0a4c391ee1e7ec6c3ca89f0955ca9423f09
1110Author: Egbert Eich <eich@suse.de>
1111Date:   Wed Mar 3 12:13:00 2004 +0000
1112
1113    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1114
1115commit 4d33162b89fb90f764ce9bc9eed73b1c60ba631c
1116Author: Egbert Eich <eich@suse.de>
1117Date:   Thu Feb 26 13:36:17 2004 +0000
1118
1119    readding XFree86's cvs IDs
1120
1121commit d3552b39fa600adbf6229fad2e3f651d18889178
1122Author: Egbert Eich <eich@suse.de>
1123Date:   Thu Feb 26 09:24:04 2004 +0000
1124
1125    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1126
1127commit 8dad0c498789e5feb268b70daae210751b98eb24
1128Author: Kaleb Keithley <kaleb@freedesktop.org>
1129Date:   Tue Nov 25 19:29:12 2003 +0000
1130
1131    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1132
1133commit c9f38bd47df33b0681bdf2cfce02c1b78cb1a038
1134Author: Kaleb Keithley <kaleb@freedesktop.org>
1135Date:   Fri Nov 14 16:49:22 2003 +0000
1136
1137    XFree86 4.3.0.1
1138
1139commit 212617e163d792b20d025502f4138b6bdb7829a0
1140Author: Kaleb Keithley <kaleb@freedesktop.org>
1141Date:   Fri Nov 14 15:54:53 2003 +0000
1142
1143    R6.6 is the Xorg base-line
1144