1commit 13826f0412926eb4659bca21a6f0e179c7a45f11
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun Apr 9 09:59:46 2023 -0700
4
5    xwininfo 1.1.6
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 9a5623e2ffc6995b2c6edf379f191d76d7b4444a
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Feb 25 13:06:06 2023 -0800
12
13    Add option to use libxcb-errors to improve X protocol error messages
14    
15    Requires passing --with-xcb-errors to configure
16    
17    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
18
19commit a60fe9c681990e0710e81ce88839aef2247e0d28
20Author: Alan Coopersmith <alan.coopersmith@oracle.com>
21Date:   Sun Nov 13 15:43:57 2022 -0800
22
23    Variable scope reduction as recommended by cppcheck
24    
25    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
26
27commit a4505ad3a938cfecb501b1ce806aa39ead42ec81
28Author: Alan Coopersmith <alan.coopersmith@oracle.com>
29Date:   Sun Nov 13 15:19:02 2022 -0800
30
31    Silence -Wdiscarded-qualifiers warning on systems with non-const iconv
32    
33    xwininfo.c: In function ‘print_utf8’:
34    xwininfo.c:1914:26: warning: initialization discards ‘const’ qualifier
35     from pointer target type [-Wdiscarded-qualifiers]
36      ICONV_CONST char *inp = u8str;
37                              ^~~~~
38    
39    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
40
41commit 41ea77d4b64413648dd2fb61c42bf7b980b17783
42Author: Alan Coopersmith <alan.coopersmith@oracle.com>
43Date:   Thu Jul 28 17:30:21 2022 -0700
44
45    gitlab CI: stop requiring Signed-off-by in commits
46    
47    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
48
49commit 90fe017c5db9ead2e8fe64bfc1d146268a2eae97
50Author: Alan Coopersmith <alan.coopersmith@oracle.com>
51Date:   Sun Apr 10 13:59:59 2022 -0700
52
53    Window_With_Name(): make sure cookies.get_net_wm_name is set
54    
55    Reported by Oracle Parfait:
56    
57    Error: Uninitialised memory
58       Uninitialised memory [uninitialised-mem] (CWE 456):
59          Possible access to uninitialised memory referenced by 'cookies'
60            at line 289 of dsimple.c in function 'recursive_Window_With_Name'.
61            called at line 420 in function 'Window_With_Name' with cookies = &cookies.
62            Path avoiding write at line 416
63            Write does not overlap at line 417
64            Write does not overlap at line 418
65              cookies allocated at line 410
66              cookies passed in at line 276 in function 'recursive_Window_With_Name'
67    
68    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
69
70commit f8ff22d7d00a96ab43bab7accbd2fcc01a1b5e0c
71Author: Alan Coopersmith <alan.coopersmith@oracle.com>
72Date:   Tue Dec 7 15:56:32 2021 -0800
73
74    Build xz tarballs instead of bzip2
75    
76    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
77
78commit 9882388975f299bbff8788326e698752dd32c73c
79Author: Alan Coopersmith <alan.coopersmith@oracle.com>
80Date:   Tue Dec 7 15:56:29 2021 -0800
81
82    gitlab CI: add a basic build test
83    
84    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
85
86commit 985a3a70918038bf2569e0a5ebe3fa14d720e4de
87Author: Alan Coopersmith <alan.coopersmith@oracle.com>
88Date:   Sun Jul 14 13:51:36 2019 -0700
89
90    xwininfo 1.1.5
91    
92    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
93
94commit 1a50edf62c9511a2bee8b7cc3b72e5185f7b593f
95Author: Alan Coopersmith <alan.coopersmith@oracle.com>
96Date:   Sun Jun 9 10:21:39 2019 -0700
97
98    Clear -Wsign-compare warnings from gcc 7.3
99    
100    dsimple.c: In function ‘recursive_Window_With_Name’:
101    dsimple.c:298:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
102       if ((namelen == prop_name_len) &&
103                    ^~
104    dsimple.c:336:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
105       if ((namelen == prop_name_len) &&
106                    ^~
107    dsimple.c:371:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
108         for (i = 0; i < nchildren; i++) {
109                       ^
110    dsimple.c:380:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
111         for (i = 0; i < nchildren; i++) {
112                       ^
113    dsimple.c:390:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
114      for (/* keep previous i */; i < nchildren; i++) {
115                                    ^
116    dsimple.c: In function ‘Get_Atom’:
117    dsimple.c:616:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
118         if (a->atom == -1) /* internal error */
119                     ^~
120    
121    xwininfo.c: In function ‘wm_size_hints_reply’:
122    xwininfo.c:730:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
123         if (length > sizeof(wm_size_hints_t))
124                    ^
125    xwininfo.c: In function ‘Display_Event_Mask’:
126    xwininfo.c:1229:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
127         for (bit=0, bit_mask=1; bit < sizeof(long)*8; bit++, bit_mask <<= 1)
128                                     ^
129    xwininfo.c: In function ‘wm_hints_reply’:
130    xwininfo.c:1633:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
131         if (length > sizeof(wm_hints_t))
132                    ^
133    xwininfo.c: In function ‘is_valid_utf8’:
134    xwininfo.c:1843:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
135         for (i = 0; i < len; i++) {
136                       ^
137    
138    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
139
140commit 58213a0cd39dc4ba044f48fab52ed3256ab9a9bd
141Author: Stéphane Aulery  <lkppo@free.fr>
142Date:   Wed Jul 3 00:29:17 2013 +0200
143
144    Improve manpage and -h option
145    
146     - Rename windows and display args.
147     - Mention of short (-d) -display option.
148    
149    Signed-off-by: Stéphane Aulery <lkppo@free.fr>
150    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
151
152commit d19200c0b0ff638edbb16555e711d2353625bd4a
153Author: Alan Coopersmith <alan.coopersmith@oracle.com>
154Date:   Wed Nov 21 17:21:49 2018 -0800
155
156    Update configure.ac bug URL for gitlab migration
157    
158    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
159
160commit 015b29ca761102c95c722928557336e101a4a6e1
161Author: Alan Coopersmith <alan.coopersmith@oracle.com>
162Date:   Fri Nov 16 23:32:24 2018 -0800
163
164    Update README for gitlab migration
165    
166    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
167
168commit f8c9f340421883f659b820214ddf8a21d5022a3a
169Author: David Hill <dhill@mindcry.org>
170Date:   Wed Dec 11 04:05:19 2013 +0000
171
172    In Find_Client, if (win == XCB_WINDOW_NONE), roots should be freed.
173    
174    https://bugs.freedesktop.org/show_bug.cgi?id=72583
175    
176    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
177
178commit 919665db8ceb8e2c38a1a4ce4686eb224ddf5234
179Author: Alan Coopersmith <alan.coopersmith@oracle.com>
180Date:   Fri Mar 9 20:41:31 2018 -0800
181
182    xwininfo 1.1.4
183    
184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
185
186commit e3c764b14da65c5d3afcd19f920705b397aa765c
187Author: Mihail Konev <k.mvc@ya.ru>
188Date:   Thu Jan 26 14:00:21 2017 +1000
189
190    autogen: add default patch prefix
191    
192    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
193
194commit 4edd69d5f9abd111e6b52f600696f84e023f6249
195Author: Emil Velikov <emil.l.velikov@gmail.com>
196Date:   Mon Mar 9 12:00:52 2015 +0000
197
198    autogen.sh: use quoted string variables
199    
200    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
201    fall-outs, when they contain space.
202    
203    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
204    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
205    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
206
207commit 30488a8c7ef5f24ce445a268b168a9a5646b9f7d
208Author: Peter Hutterer <peter.hutterer@who-t.net>
209Date:   Tue Jan 24 10:32:07 2017 +1000
210
211    autogen.sh: use exec instead of waiting for configure to finish
212    
213    Syncs the invocation of configure with the one from the server.
214    
215    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
216    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
217
218commit 0c49f8f2bd56b1e77721e81030ea948386dcdf4e
219Author: Olivier Fourdan <ofourdan@redhat.com>
220Date:   Tue Jan 6 11:57:33 2015 +0100
221
222    xwininfo: do not segfault on IO error
223    
224    If the connection to the X server is lost while waiting for
225    the user to select a window interactively, xwininfo segfaults.
226    
227    This is a regression introduced with the port to XCB, because
228    xcb_wait_for_event() can return NULL in case of an IO error and
229    xwininfo does not check for the actual returned value.
230    
231    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
232    Reviewed-by: Adam Jackson <ajax@redhat.com>
233    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
234
235commit 017b3736489985999d8dcf4d9e473e1fd6dd3647
236Author: Alan Coopersmith <alan.coopersmith@oracle.com>
237Date:   Tue Jun 3 23:58:54 2014 -0700
238
239    Add -version option to print program version
240    
241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
242
243commit d41d834d8b2be86eb56802de12c2399c7ff0919f
244Author: Alan Coopersmith <alan.coopersmith@oracle.com>
245Date:   Tue Jun 3 23:56:08 2014 -0700
246
247    Print which option was in error along with usage message
248    
249    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
250
251commit d5417f2eb09e7061801f63ce77e3441d80e5e4a1
252Author: Alan Coopersmith <alan.coopersmith@oracle.com>
253Date:   Sat May 31 21:39:32 2014 -0700
254
255    autogen.sh: Honor NOCONFIGURE=1
256    
257    See http://people.gnome.org/~walters/docs/build-api.txt
258    
259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
260
261commit 301f9c7970548539a2679cc3e354680a60733a68
262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
263Date:   Sat May 31 21:38:41 2014 -0700
264
265    configure: Drop AM_MAINTAINER_MODE
266    
267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
268
269commit ba0d1b0da21d2dbdd81098ed5778f3792b472e13
270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
271Date:   Fri May 17 21:04:26 2013 -0700
272
273    xwininfo 1.1.3
274    
275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
276
277commit 3e60a26559221e561770710a8c4ed0b8ebc31afb
278Author: Alan Coopersmith <alan.coopersmith@oracle.com>
279Date:   Sat Jan 12 13:52:08 2013 -0800
280
281    Quiet some clang warnings about implicit int <-> size_t conversions
282    
283    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
284
285commit f7b55bdf674fc790e879a2e25ef83925dd8379d6
286Author: Pierre-Loup A. Griffais <pgriffais@nvidia.com>
287Date:   Tue Oct 9 20:33:10 2012 -0700
288
289    xwininfo: report the Visual class of the selected Window
290    
291    Not of the root window.
292    
293    Signed-off-by: Pierre-Loup A. Griffais <pgriffais@nvidia.com>
294    Signed-off-by: Julien Cristau <jcristau@debian.org>
295
296commit aedc2ecc4de61211f5f6b8f27bd8681d0ab744dc
297Author: Alan Coopersmith <alan.coopersmith@oracle.com>
298Date:   Sat Aug 25 14:05:18 2012 -0700
299
300    Print more detailed error messages when xcb_connect fails
301    
302    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
303    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
304
305commit 4176bffd0261d7734617dc73ae6013e86dbb841d
306Author: David Venz <david.venz@gmail.com>
307Date:   Sat Aug 25 12:06:22 2012 -0700
308
309    Bug 53242 - xwininfo segfaults on invalid screen
310    
311    Check number of screen entries before iterating past the end of the list
312    
313    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
314    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
316
317commit 53564df46e7f8e443c46b00080ea46c878c34263
318Author: Thomas Klausner <wiz@NetBSD.org>
319Date:   Sun Aug 26 00:07:52 2012 +0200
320
321    Get rid of a number of warnings.
322    
323    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
324    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
325    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
326
327commit 1279ed652f9f3408211c78b7bf8a0aef6b8488df
328Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
329Date:   Sat Aug 25 12:16:29 2012 -0700
330
331    Remove dead code (size_t is always >= 0)
332    
333    xwininfo.c:1886:15: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
334        if (inlen < 0) {
335            ~~~~~ ^ ~
336    
337    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
338
339commit fa40ecdfb5cd068ba531b4439df5bbf660469d3a
340Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
341Date:   Sat Aug 25 12:15:02 2012 -0700
342
343    Declare usage() as _X_NORETURN
344    
345    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
346
347commit 5037f79e8f6a36d3c524a2dd8150cf96c31b7106
348Author: Gaetan Nadon <memsize@videotron.ca>
349Date:   Wed Jan 25 09:48:54 2012 -0500
350
351    configure.ac: regroup statements and comment
352    
353    Add missing AC_CONFIG_SRCDIR([Makefile.am])
354    
355    Move AC_USE_SYSTEM_EXTENSIONS higher up in Autoconf init section
356    which must come before XORG_DEFAULT_OPTIONS
357    
358    Move XORG_DEFAULT_OPTIONS to its usual place with X.Org macros
359    Note that AC_FUNC_STRNLEN calls AC_REQUIRE(AC_USE_SYSTEM_EXTENSIONS)
360    
361    Comment the strnlen function replacement.
362    http://pubs.opengroup.org/onlinepubs/9699919799/functions/strlen.html
363    
364    No functional changes. Following the layout in
365    http://www.x.org/wiki/NewModuleGuidelines
366    
367    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
368
369commit 19a7184f76ee3c17586ad65a8424966dde5b91c3
370Author: Gaetan Nadon <memsize@videotron.ca>
371Date:   Fri Jan 20 20:14:05 2012 -0500
372
373    Revert "make: remove $(LIBOBJS) dead code"
374    
375    AC_FUNC_STRLEN is one of the functions that call AC_LIBOBJ
376    which sets $LIBOBJ.
377    
378    This reverts commit 3f3606b0e8de8f38f467126f07277e33a9285e53.
379
380commit 3f3606b0e8de8f38f467126f07277e33a9285e53
381Author: Gaetan Nadon <memsize@videotron.ca>
382Date:   Fri Jan 20 15:10:15 2012 -0500
383
384    make: remove $(LIBOBJS) dead code
385    
386    Starting at Autoconf 2.53, the use of LIBOBJS is an error.
387    http://www.gnu.org/software/autoconf/manual/autoconf.html#
388    AC_005fLIBOBJ-vs-LIBOBJS
389    
390    There are no system functions to override in this module.
391    
392    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
393
394commit 42d2c1e32167a33c0f2de04cea0c7bb8001dbe43
395Author: Guillem Jover <guillem@hadrons.org>
396Date:   Tue Oct 4 07:04:38 2011 +0200
397
398    Use format string literals instead of variables to print atom names
399    
400    This allows the compiler to check the format against the argument types.
401    
402    Signed-off-by: Guillem Jover <guillem@hadrons.org>
403    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
404
405commit 8ce8a54e75248164e17626c0866adbd636e42a7b
406Author: Guillem Jover <guillem@hadrons.org>
407Date:   Tue Oct 4 07:03:30 2011 +0200
408
409    Refactor atom name printing into a new Display_Atom_Name function
410    
411    Signed-off-by: Guillem Jover <guillem@hadrons.org>
412    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
413
414commit c1b6da1bc7e5ba715bbea52a24449cc91c26dfb3
415Author: Guillem Jover <guillem@hadrons.org>
416Date:   Tue Oct 4 07:04:38 2011 +0200
417
418    Use format string literals instead of variables to print window ids
419    
420    This allows the compiler to check the format against the argument types.
421    
422    Signed-off-by: Guillem Jover <guillem@hadrons.org>
423    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
424
425commit d11e467728a7c7cb7b5b7a8e07cd543172c20aa1
426Author: Guillem Jover <guillem@hadrons.org>
427Date:   Tue Oct 4 05:40:45 2011 +0200
428
429    Move leading ": " out from buffer to the error string printer
430    
431    Besides slightly reducing the binary size, this will be helpful when/if
432    i18n support is added to translate the strings.
433    
434    Signed-off-by: Guillem Jover <guillem@hadrons.org>
435    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
436
437commit 73bb1135d599d8a55e883bd61619707ede658717
438Author: Alan Coopersmith <alan.coopersmith@oracle.com>
439Date:   Wed Sep 28 21:16:52 2011 -0700
440
441    Add const attributes to fix gcc -Wwrite-strings warnings
442    
443    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
444
445commit 23fc2d9c1cc91ac902ebf05dcbaa6062ff8f0dcc
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Wed Sep 28 21:14:37 2011 -0700
448
449    Strip trailing whitespace
450    
451    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
452    git diff -w & git diff -b show no diffs from this change
453    
454    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
455
456commit 1410b0f0a9d50973ebfdcc696994ccbd91cea3ae
457Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
458Date:   Wed Aug 24 23:08:58 2011 -0500
459
460    Use AM_ICONV
461    
462    AC_SEARCH_LIBS does not detect GNU libiconv because its symbols are
463    exported in the "libiconv" namespace instead of "iconv".  The AM_ICONV
464    macro correctly detects both glibc and GNU libiconv, defines HAVE_ICONV,
465    ICONV_CONST, and LIBICONV depending on the system.  The config.rpath
466    file is required by this macro.
467    
468    This adds a dependency on the aclocal macros from gettext (gettext-devel
469    in some distros) when building from git, but not when building from a
470    tarball.
471    
472    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
473    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
474
475commit 1c58b461a84a8e75c53ce863470a5c8d8201261b
476Author: Alan Coopersmith <alan.coopersmith@oracle.com>
477Date:   Wed Jun 29 21:25:38 2011 -0700
478
479    xwininfo 1.1.2
480    
481    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
482
483commit 7cdc6223e7d7f79050df680d3b6d06653d75dd46
484Author: Alan Coopersmith <alan.coopersmith@oracle.com>
485Date:   Fri Jun 17 21:44:39 2011 -0700
486
487    Update to xcb-icccm 0.3.8 API
488    
489    Changes all names to the xcb_icccm_* namespaced versions.
490    Requires xcb-icccm 0.3.8 (from new xcb-util-wm package) if used.
491    Still disabled by default, only enabled with --with-xcb-icccm
492    
493    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
494
495commit 456b0fafa73f1227adf07ee924b316cbf9fe83cb
496Author: Alan Coopersmith <alan.coopersmith@oracle.com>
497Date:   Tue Jun 7 23:00:06 2011 -0700
498
499    When matching window names, ensure name lengths match too
500    
501    Prevents strncmp returning on partial matches when one is shorter.
502    https://bugs.freedesktop.org/show_bug.cgi?id=37710
503    
504    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
505    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
506
507commit ee3b33c9e757b8d7f9f4c9761f3c66826adc4f59
508Author: Gaetan Nadon <memsize@videotron.ca>
509Date:   Wed Jan 19 10:06:57 2011 -0500
510
511    config: move man pages into their own directory
512    
513    Use services provided by XORG_MANPAGE_SECTIONS.
514    Use standard Makefile for man pages.
515    
516    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
517
518commit 584ab8bd1cb267510d8966357aaab100fac575be
519Author: Gaetan Nadon <memsize@videotron.ca>
520Date:   Thu Jan 13 11:15:48 2011 -0500
521
522    man: remove trailing spaces and tabs
523    
524    Using s/[ \t]*$//
525    
526    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
527
528commit 0d00fa84560e5fbf09f2674078e205243f51787a
529Author: Gaetan Nadon <memsize@videotron.ca>
530Date:   Wed Jan 12 16:28:02 2011 -0500
531
532    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
533    
534    This silences an Autoconf warning
535
536commit 65fe1630ad2cabdb9bf46333925aabdc7f61dc06
537Author: Tim van der Molen <tbvdm@xs4all.nl>
538Date:   Sun Jan 9 18:21:30 2011 +0100
539
540    Fix for invalid free if window has a _NET_WM_NAME property.
541    
542    In this case xcb_get_wm_name_reply() is not called, so reorganize the
543    code to not free a result which never was allocated.
544    
545    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
546    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
547
548commit 064e52f367a2b55e6c32c778684da946c319ca81
549Author: Alan Coopersmith <alan.coopersmith@oracle.com>
550Date:   Fri Jan 7 20:27:10 2011 -0800
551
552    xwininfo.c:282: warning: no previous prototype for 'usage'
553    
554    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
555
556commit 98d5614d4688013e2fe7447eab723e0a43ee27b8
557Author: Alan Coopersmith <alan.coopersmith@oracle.com>
558Date:   Sat Oct 30 11:58:33 2010 -0700
559
560    xwininfo 1.1.1
561    
562    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
563
564commit ca6412a29ec5b7b646b8a48bac940af2762ed54d
565Author: Alan Coopersmith <alan.coopersmith@oracle.com>
566Date:   Sat Oct 30 11:53:28 2010 -0700
567
568    config: Remove unnecessary calls from configure.ac
569    
570    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
571    
572    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
573
574commit 3a3003dcd0737c721e8f35953a5871a50209b5d4
575Author: Julien Cristau <jcristau@debian.org>
576Date:   Thu Oct 21 12:59:11 2010 +0200
577
578    Work around xcb_translate_coordinates sign bug
579    
580    xcb_translate_coordinates_reply_t has unsigned dst_{x,y}, so explicitly
581    cast them to int16_t to get the right values.
582    Reported on irc by frostwork.
583    
584    xcb-proto was fixed in commit 661fe8dd.
585    
586    Signed-off-by: Julien Cristau <jcristau@debian.org>
587    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
588
589commit 4ec65f24a0abaaf6ec1a0c930fc79b3fc5e1baf6
590Author: Tomas Chvatal <scarabeus@gentoo.org>
591Date:   Mon Sep 27 14:56:14 2010 +0200
592
593    Fix build error when building --with-xcb-icccm
594    
595            xwininfo.c:633:34: error: incompatible types when assigning to type xcb_get_property_cookie_t from type int
596    
597    Signed-off-by: Tomas Chvatal <scarabeus@gentoo.org>
598    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
599
600commit aac89e8e81faca5d6eb830cd65591619a26ec17a
601Author: Alan Coopersmith <alan.coopersmith@oracle.com>
602Date:   Sun Sep 26 18:35:40 2010 -0700
603
604    xwininfo 1.1.0
605    
606    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
607
608commit abcf5e76c7dfc951832fda6845ace426b9ddebce
609Author: Alan Coopersmith <alan.coopersmith@oracle.com>
610Date:   Sun Sep 26 18:30:08 2010 -0700
611
612    config: upgrade to util-macros 1.8 for additional man page support
613    
614    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
615    The value of MAN_SUBST is the same for all X.Org packages.
616    
617    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
618    Enables use of platform appropriate version of sed.
619    
620    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
621
622commit b6c84ba0aab5b95883a4f5759ec100b387314ec5
623Author: Gaetan Nadon <memsize@videotron.ca>
624Date:   Tue Jul 20 18:45:18 2010 -0400
625
626    config: update AC_PREREQ statement to 2.60
627    
628    Unrelated to the previous patches, the new value simply reflects
629    the reality that the minimum level for autoconf to configure
630    all x.org modules is 2.60 dated June 2006.
631    
632    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
633    
634    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
635
636commit 8263f19cf9002c7b5f2967a2bde7af4ed117c1e5
637Author: Jeremy Huddleston <jeremyhu@apple.com>
638Date:   Sat Jul 10 10:19:14 2010 -0700
639
640    strnlen: Fix building on systems without strnlen(3)
641    
642    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
643
644commit 3fa31068bcae6a5bee7fbd41788e13d6d56da8c0
645Author: Alan Coopersmith <alan.coopersmith@oracle.com>
646Date:   Wed Jun 30 18:38:57 2010 -0700
647
648    Make iconv() usage optional
649    
650    Allows building without iconv, though character set conversion will not
651    be supported in that case.
652    
653    Handles UTF8_STRING validation and output for UTF-8 locales without iconv
654    (using is_valid_utf8() function copied from X.Org's app/xprop/xprop.c)
655    
656    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
657    Reviewed-by: James Cloos <cloos@jhcloos.com>
658
659commit 6a4f77d4ac1737dd49f3462d98e0f7e41e50ab18
660Author: Alan Coopersmith <alan.coopersmith@oracle.com>
661Date:   Tue Jun 29 22:51:38 2010 -0700
662
663    Add some EWMH hints to the -wm output
664    
665    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
666    Reviewed-by: James Cloos <cloos@jhcloos.com>
667
668commit baf759d33b4b360fef2b2c61094ef109bec708fa
669Author: Alan Coopersmith <alan.coopersmith@oracle.com>
670Date:   Tue Jun 29 17:56:07 2010 -0700
671
672    Handle non-latin-1 window names
673    
674    Uses _NET_WM_NAME to get UTF-8 encoding, iconv to convert to current locale
675    Warns that COMPOUND_TEXT WM_NAMEs aren't supported if _NET_WM_NAME isn't set
676    Adds local atom caching code to dsimple.c and uses it in all three *.c
677    
678    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
679    Reviewed-by: James Cloos <cloos@jhcloos.com>
680
681commit 6ec3573d7876fa62d2a81057ce0d16ed328fad1f
682Author: Alan Coopersmith <alan.coopersmith@oracle.com>
683Date:   Fri Jun 25 21:41:21 2010 -0700
684
685    Make xcb-icccm dependency be optional and off-by-default
686    
687    Changes to the xcb-icccm API/ABI are under discussion, so for now default
688    to using local property handling code modeled after the current API, with
689    a --with-xcb-icccm to enable use of the API for testing/development.
690    
691    Once the API/ABI is stable & released, this set of changes should be
692    removed and the xcb-icccm API just used directly.
693    
694    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
695    Reviewed-by: James Cloos <cloos@jhcloos.com>
696
697commit 96f19bade9ce4940642d580f4c52e2bc0e3539ab
698Author: Alan Coopersmith <alan.coopersmith@oracle.com>
699Date:   Sun Jun 13 12:42:34 2010 -0700
700
701    Convert from Xlib to xcb
702    
703    Testing was done with a simple GNOME 2.28 session with a number of
704    applications open (gnome-terminal, VirtualBox, Firefox).
705    
706    Primary test case was xwininfo -root -all, which listed 114 children of
707    the root window.   Output was identical to Xlib version (after applying
708    the fix to libxcb_icccm for always null-terminating wm_class properties).
709    
710    Over a local connection on the same machine:
711    
712    Xlib:   0.00u 0.01s 0:00.05 20.0%
713    xcb:    0.00u 0.00s 0:00.02 0.0%
714    
715    (i.e. barely measurable difference - I had more variation between
716     repeated runs of the command)
717    
718    Introducing latency by running over ssh -X from California to Beijing
719    and back:
720    
721    Xlib:   0.03u 0.02s 8:19.12 0.0%
722    xcb:    0.00u 0.00s 0:45.26 0.0%
723    
724    Memory size when exit() is called:
725    
726    Xlib:
727     Address  Kbytes     RSS    Anon  Locked Mode   Mapped File
728    08043000      20      20      20       - rw---    [ stack ]
729    08400000     144     144     144       - rw---    [ heap ]
730    total Kb    8972    8640     316       -
731    
732    xcb:
733     Address  Kbytes     RSS    Anon  Locked Mode   Mapped File
734    08045000      12      12      12       - rwx--    [ stack ]
735    0806C000     100     100     100       - rwx--    [ heap ]
736    total Kb    7980    7692     288       -
737    
738    Bytes sent & received (counted by proxying via xscope):
739    
740    Xlib: Client --> Server: 21380 bytes   Client <-- Server:  54124 bytes
741    xcb:  Client --> Server: 21114 bytes   Client <-- Server:  53160 bytes
742    
743    (The Xlib code didn't save any replies, so re-requested a couple of things
744     when running with -all - I fixed that while porting to xcb, but the same
745     could be done with Xlib easily too.)
746    
747    Not yet handled: WM_NAME properties that need to be converted from another
748    character encoding.
749    
750    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
751    Reviewed-by: James Cloos <cloos@jhcloos.com>
752
753commit 123ff05c2e2bbdb9d7d6d958d9f096cf854b8360
754Author: Alan Coopersmith <alan.coopersmith@oracle.com>
755Date:   Mon Jun 7 01:00:33 2010 -0700
756
757    Delay generating unknown code string until we know we need it
758    
759    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
760
761commit 369c37a62cdd2841a3e8778674029841231f45ad
762Author: Alan Coopersmith <alan.coopersmith@oracle.com>
763Date:   Sun Jun 6 16:57:22 2010 -0700
764
765    Use _X_NORETURN from xproto 7.0.17
766    
767    Also throw in _X_ATTRIBUTE_PRINTF while we're here.
768    
769    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
770
771commit c72551c9e8805d44ee76f6723cada6843657031b
772Author: Alan Coopersmith <alan.coopersmith@oracle.com>
773Date:   Sun Jun 6 16:06:07 2010 -0700
774
775    Make spacing more consistent
776    
777    Different functions had 2, 4, 6, or 8 spaces per indent level,
778    standardized on 4 spaces.   Also more consistenly put spaces before parens.
779    
780    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
781
782commit 6001e8721f232aa1f8b584d903edcea148b0ebc5
783Author: Alan Coopersmith <alan.coopersmith@oracle.com>
784Date:   Sun Jun 6 14:16:39 2010 -0700
785
786    Remove #ifdef NO_I18N code branches
787    
788    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
789
790commit 44a6d871e2baec9724f131778887c834133a4dc5
791Author: Alan Coopersmith <alan.coopersmith@oracle.com>
792Date:   Sun Jun 6 14:12:24 2010 -0700
793
794    Remove RCS/CVS id tags
795    
796    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
797
798commit 98bb85ea5fd3e2b5e077d89c6bf6e16b8829481a
799Author: Alan Coopersmith <alan.coopersmith@oracle.com>
800Date:   Sun Jun 6 14:11:13 2010 -0700
801
802    mark window_id_format as a const string
803    
804    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
805
806commit 725c5bbb58e6fb2c8775512d194367e3d677ee43
807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
808Date:   Sun Jun 6 14:05:53 2010 -0700
809
810    Collapse some series of multiline printfs into single strings/calls
811    
812    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
813
814commit 969b179b3bfe2dd11f3426fc30cab3ac337b84d5
815Author: Alan Coopersmith <alan.coopersmith@sun.com>
816Date:   Fri Jan 15 13:10:39 2010 -0800
817
818    Update Sun license notices to current X.Org standard form
819    
820    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
821
822commit b0c1a61df072c92db646257b1048798df0f1c64d
823Author: Gaetan Nadon <memsize@videotron.ca>
824Date:   Thu Nov 26 09:19:55 2009 -0500
825
826    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
827    
828    Now that the INSTALL file is generated.
829    Allows running make maintainer-clean.
830
831commit 414b61fcc45836ea0739b32abd0eff8c4a863f8d
832Author: Gaetan Nadon <memsize@videotron.ca>
833Date:   Wed Oct 28 14:09:09 2009 -0400
834
835    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
836    
837    Add missing INSTALL file. Use standard GNU file on building tarball
838    README may have been updated
839    Remove AUTHORS file as it is empty and no content available yet.
840    Remove NEWS file as it is empty and no content available yet.
841
842commit 458d8ae3b990c64630b0ca56f88a2955c9470681
843Author: Gaetan Nadon <memsize@videotron.ca>
844Date:   Mon Oct 26 22:08:39 2009 -0400
845
846    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
847    
848    ChangeLog filename is known to Automake and requires no further
849    coding in the makefile.
850
851commit dd4df8d8ec6a4cb34af8ddfd65277ae602d6cdc8
852Author: Gaetan Nadon <memsize@videotron.ca>
853Date:   Thu Oct 22 12:34:16 2009 -0400
854
855    .gitignore: use common defaults with custom section # 24239
856    
857    Using common defaults will reduce errors and maintenance.
858    Only the very small or inexistent custom section need periodic maintenance
859    when the structure of the component changes. Do not edit defaults.
860
861commit d245ffee6e947b275b21a7a47716410c41154d4a
862Author: Gaetan Nadon <memsize@videotron.ca>
863Date:   Sun Sep 27 15:41:05 2009 -0400
864
865    Makefile.am: do not include autogen.sh in distribution #24183
866    
867    This is a private build script that should not be distributed
868
869commit a61af405625b9a284497d7b4e56ef9719d3ae14f
870Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
871Date:   Wed Oct 21 12:47:22 2009 -0700
872
873    This is not a GNU project, so declare it foreign.
874    
875    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
876    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
877    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
878    > > was quite annoying to work around since 'autoreconf -fvi' replaces
879    > > it and git wants to commit it.  Should these files even be in git?
880    > > Can I nuke them for the betterment of humanity and since they get
881    > > created by autoreconf anyways?
882    >
883    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
884    
885    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
886    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
887    of the INSTALL file. It is also part of the 24206 solution.
888    
889    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
890
891commit 1569f4d692443bf0658dbe12902f995693b13dcf
892Author: Alan Coopersmith <alan.coopersmith@sun.com>
893Date:   Mon Oct 12 16:08:57 2009 -0700
894
895    xwininfo 1.0.5
896    
897    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
898
899commit 28b34ed17506540a793a85e03c01a7b4d9aa3588
900Author: Alan Coopersmith <alan.coopersmith@sun.com>
901Date:   Mon Oct 12 16:06:55 2009 -0700
902
903    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
904    
905    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
906
907commit b6837aadf7a2c30fb8c2c811d45c48047e0769e8
908Author: Alan Coopersmith <alan.coopersmith@sun.com>
909Date:   Mon Oct 12 15:58:09 2009 -0700
910
911    Fill in COPYING file
912    
913    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
914
915commit 98ac096e2edae243ce2119fb70112c3c6b2bb688
916Author: Alan Coopersmith <alan.coopersmith@sun.com>
917Date:   Thu Oct 1 14:54:32 2009 -0700
918
919    Add README with pointers to mailing lists, bugzilla, & git
920    
921    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
922
923commit 347ba641db84c66cd332f398423e87a882580575
924Author: Yann Droneaud <ydroneaud@mandriva.com>
925Date:   Fri Mar 27 16:41:00 2009 +0100
926
927    Update manpage for visual id
928    
929    Signed-off-by: James Cloos <cloos@jhcloos.com>
930
931commit ee03cf70e9e92d0e9adebaddc6b065de496cc561
932Author: Yann Droneaud <ydroneaud@mandriva.com>
933Date:   Fri Mar 27 16:35:14 2009 +0100
934
935    Report visual id along visual class for -stat switch
936    
937    Signed-off-by: James Cloos <cloos@jhcloos.com>
938
939commit a42690b24d828ec4cfae1bf40cac08f07c6202af
940Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
941Date:   Thu Jan 15 14:27:14 2009 -0200
942
943    Ansification and compile warning fixes.
944    
945      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
946    make distcheck and most gcc 4.3 and sparse warnings.
947
948commit 67a74f540cdbb7ded7aa44c751f5f0c8833c688f
949Author: Branden Robinson <branden@debian.org>
950Date:   Fri Feb 11 02:14:27 2005 -0500
951
952    Do not spew usage on connection error
953    
954    General philosophy:
955    
956    The user should only be shown a usage message when:
957      * it is asked for with a --help option or the like.
958      * the command line is syntactically invalid.
959
960commit b8115ee0e43c6c03025cad72219481e3fdb119d4
961Author: James Cloos <cloos@jhcloos.com>
962Date:   Sun Jun 29 10:49:33 2008 -0400
963
964    xwininfo 1.0.4
965
966commit c229611bcb7ee94bea5c075f5e15447e14c0f6ce
967Author: Kim Woelders <kim@woelders.dk>
968Date:   Sun Jun 22 01:12:13 2008 -0400
969
970    Fix window selection by pointer.
971    
972    This should fix things in WM’s using virtual roots as well as in tabbing WM’s.
973    
974    Signed-off-by: James Cloos <cloos@jhcloos.com>
975
976commit b7e88cd9d28a3d3e467b769f3efe87f7c2f4c0a5
977Author: Alan Coopersmith <alan.coopersmith@sun.com>
978Date:   Mon Aug 27 14:20:35 2007 -0700
979
980    Version bump: 1.0.3
981
982commit 56f0b5dfb1486e262eb514fac44c73cea4bb4471
983Author: Alan Coopersmith <alan.coopersmith@sun.com>
984Date:   Mon Aug 27 14:20:02 2007 -0700
985
986    Replace static ChangeLog with dist-hook to generate from git log
987
988commit c8d205c30547ca526404a0b257c3cc5d40970be6
989Author: Alan Coopersmith <alan.coopersmith@sun.com>
990Date:   Tue Aug 7 15:50:13 2007 -0700
991
992    Add static & const qualifiers to xwininfo.c
993
994commit 77d50c0bf824f847bd9ede30c21618845258de76
995Author: Alan Coopersmith <alan.coopersmith@sun.com>
996Date:   Tue Aug 7 15:38:23 2007 -0700
997
998    Replace sprintf's with snprintf & strlcat
999
1000commit 118bd50a9bbc10cab7846fb6ac1a0d25ba4c3422
1001Author: Alan Coopersmith <alan.coopersmith@sun.com>
1002Date:   Mon Aug 6 19:52:13 2007 -0700
1003
1004    dsimple.c: ANSIfy function declarations
1005
1006commit e093e4be56bb2be385a972962cf89f234e987ab4
1007Author: Alan Coopersmith <alan.coopersmith@sun.com>
1008Date:   Mon Aug 6 19:44:24 2007 -0700
1009
1010    Purge unused code from dsimple.c
1011    
1012    dsimple.c was originally shared source among several X apps.
1013    Since modularization gave each app it's own copy, much of the code is
1014    no longer needed in each app.
1015
1016commit 59bbe12a40fdb3d39429d0d0ce809ad28116e7ed
1017Author: Alan Coopersmith <alan.coopersmith@sun.com>
1018Date:   Mon Aug 6 19:18:57 2007 -0700
1019
1020    Rename xwininfo_CFLAGS to AM_CFLAGS to make automake-1.10 happier
1021    
1022    Makefile.am:27: compiling `dsimple.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
1023
1024commit 5a251886c0f158f4c8a342b6fbdeebf3dbd1c0fd
1025Author: Alan Coopersmith <alan.coopersmith@sun.com>
1026Date:   Thu May 24 18:20:11 2007 -0700
1027
1028    Man page formatting: make -geometry bold like other options
1029
1030commit 07459b14b36f15cfdfc6384019aaf020c7920cd4
1031Author: Alan Coopersmith <alan.coopersmith@sun.com>
1032Date:   Thu May 24 18:17:28 2007 -0700
1033
1034    renamed: .cvsignore -> .gitignore
1035
1036commit 24fc2a569df9eaa776bcdddbb26bf4ea97b69d13
1037Author: Alan Coopersmith <alan.coopersmith@sun.com>
1038Date:   Thu May 24 18:16:53 2007 -0700
1039
1040    X.Org bug #10616: Add all the X info commands to See Also in man page
1041    
1042    X.Org Bugzilla #10616: <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
1043    Reported upstream from
1044    Debian bug #350313 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350313>
1045
1046commit 412a3232373131634072df0d0b4843abf360def4
1047Author: Adam Jackson <ajax@nwnk.net>
1048Date:   Sun Apr 2 01:19:53 2006 +0000
1049
1050    Bump to 1.0.2.
1051
1052commit 8d62050702532be39688d468663466199492510b
1053Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1054Date:   Fri Mar 10 02:37:18 2006 +0000
1055
1056    Clear two tiny memory leaks. (Coverity ids #900 & 901)
1057
1058commit 609828be5a05bc71fffaf8fc129a0cae8082fd57
1059Author: Kevin E Martin <kem@kem.org>
1060Date:   Wed Dec 21 02:29:55 2005 +0000
1061
1062    Update package version for X11R7 release.
1063
1064commit a4169ffa7eb6eb9a28fd64a0686a813da975736c
1065Author: Adam Jackson <ajax@nwnk.net>
1066Date:   Mon Dec 19 16:22:48 2005 +0000
1067
1068    Stub COPYING files
1069
1070commit b9403df95678e568a326fe3f37bf29285a6a211e
1071Author: Kevin E Martin <kem@kem.org>
1072Date:   Thu Dec 15 00:24:12 2005 +0000
1073
1074    Update package version number for final X11R7 release candidate.
1075
1076commit 6f9523999cc4eb34accfe0bcc2c7a74bae9259ef
1077Author: Kevin E Martin <kem@kem.org>
1078Date:   Tue Dec 6 22:48:27 2005 +0000
1079
1080    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
1081
1082commit 28c0455ea50bdf37f1d9d53c6756beebed429f0e
1083Author: Kevin E Martin <kem@kem.org>
1084Date:   Sat Dec 3 05:49:29 2005 +0000
1085
1086    Update package version number for X11R7 RC3 release.
1087
1088commit 988471c67e10a5ca309b90146b37a6037f5b2efc
1089Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1090Date:   Mon Nov 28 22:01:48 2005 +0000
1091
1092    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
1093        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
1094
1095commit 4496e95380b2f0ad7e9bdca02ec192dbb6d5e2e5
1096Author: Eric Anholt <anholt@freebsd.org>
1097Date:   Mon Nov 21 10:35:09 2005 +0000
1098
1099    Another pass at .cvsignores for apps.
1100
1101commit 296d8e6ab8a86e5653529d0497ca5751d89f23b5
1102Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1103Date:   Mon Nov 21 03:14:17 2005 +0000
1104
1105    Change dependency from xmu to xmuu since the full xmu (with all its baggage
1106        like Xt) is not needed here.
1107
1108commit 27898506332f1a4e698cbd65aecc47fdbc6d0a7b
1109Author: Eric Anholt <anholt@freebsd.org>
1110Date:   Sun Nov 20 22:08:56 2005 +0000
1111
1112    Add/improve .cvsignore files for apps.
1113
1114commit ee7bf4989434ba5f30451c3f07e4a6e01e6532d4
1115Author: Kevin E Martin <kem@kem.org>
1116Date:   Sat Nov 19 07:15:38 2005 +0000
1117
1118    Update pkgconfig files to separate library build-time dependencies from
1119        application build-time dependencies, and update package deps to work
1120        with separate build roots.
1121
1122commit 4e58b0e12d46503c5f75ead9a859694aafd5b9b7
1123Author: Kevin E Martin <kem@kem.org>
1124Date:   Wed Oct 19 02:47:58 2005 +0000
1125
1126    Update package version number for RC1 release.
1127
1128commit fc097904a8d7ded9a60df35fd58b9f5b5e226e17
1129Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1130Date:   Mon Oct 17 23:56:25 2005 +0000
1131
1132    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
1133        work better with BSD make
1134
1135commit 22feb546d5bf499ec0bc726c60a6c46f2e2cbd1c
1136Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1137Date:   Fri Oct 14 00:25:48 2005 +0000
1138
1139    Use sed to fill in variables in man page
1140
1141commit 9b1a4cbaf609bb102adec047934ad4c1b05f01ab
1142Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1143Date:   Mon Aug 1 20:25:33 2005 +0000
1144
1145    Install man pages to section 1 instead of section m (Patch from Donnie
1146        Berkholz)
1147
1148commit 70ed22f5e63d5759a0b7c6574a92d124c0777562
1149Author: Kevin E Martin <kem@kem.org>
1150Date:   Fri Jul 29 21:22:39 2005 +0000
1151
1152    Various changes preparing packages for RC0:
1153    - Verify and update package version numbers as needed
1154    - Implement versioning scheme
1155    - Change bug address to point to bugzilla bug entry form
1156    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
1157        reenable it)
1158    - Fix makedepend to use pkgconfig and pass distcheck
1159    - Update build script to build macros first
1160    - Update modular Xorg version
1161
1162commit 270145dc0f3ad5c7ad7d6086da19c0a25ea853a9
1163Author: Adam Jackson <ajax@nwnk.net>
1164Date:   Wed Jul 20 19:32:05 2005 +0000
1165
1166    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
1167        configure cache, you cache it, and the cached value is probably wrong.
1168
1169commit 97aa768841e147fde3cf16ba9a4c852358085d27
1170Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
1171Date:   Fri Jul 8 21:00:46 2005 +0000
1172
1173    Build system for xwininfo
1174
1175commit 5cd08344c43c739c9a6837f1a60ae7c42e5afabe
1176Author: Roland Mainz <roland.mainz@nrubsig.org>
1177Date:   Wed Oct 6 19:29:59 2004 +0000
1178
1179    Fix for https://freedesktop.org/bugzilla/show_bug.cgi?id=1518 - Add filter
1180        support to "xlsfonts" that it can filter builtin-, glyph- and/or other
1181        kinds of printer fonts (controlled by the xp-listfonts-modes attribute
1182        as described in the CDE DtPrint and Xprint specifications).
1183
1184commit ac7cc196b722ee4653326aee459f40ad16a260c1
1185Author: Egbert Eich <eich@suse.de>
1186Date:   Fri Apr 23 19:55:09 2004 +0000
1187
1188    Merging XORG-CURRENT into trunk
1189
1190commit 43e099d499d4dbabb32ca0410175e0e1b814cd94
1191Author: Egbert Eich <eich@suse.de>
1192Date:   Sun Mar 14 08:35:54 2004 +0000
1193
1194    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1195
1196commit cd710399eb415673c180f65080d685ee8d149361
1197Author: Egbert Eich <eich@suse.de>
1198Date:   Wed Mar 3 12:13:20 2004 +0000
1199
1200    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1201
1202commit 436a7ecb4b764394abcdd06fd99d6232c633cad1
1203Author: Egbert Eich <eich@suse.de>
1204Date:   Thu Feb 26 13:36:32 2004 +0000
1205
1206    readding XFree86's cvs IDs
1207
1208commit 6dfbd3f819f10e4d04653df2074526860007968e
1209Author: Egbert Eich <eich@suse.de>
1210Date:   Thu Feb 26 09:24:18 2004 +0000
1211
1212    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1213
1214commit a2fa980ce0e98c2bbc503d1d9fe51ab539b7ea46
1215Author: Egbert Eich <eich@suse.de>
1216Date:   Thu Jan 29 08:09:21 2004 +0000
1217
1218    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
1219
1220commit 429530ba6f7699436d6f789a17550ec1a691c675
1221Author: Kaleb Keithley <kaleb@freedesktop.org>
1222Date:   Tue Nov 25 19:29:23 2003 +0000
1223
1224    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1225
1226commit be0f398fee08e03ab73ec0d580df688cc989fbaa
1227Author: Kaleb Keithley <kaleb@freedesktop.org>
1228Date:   Fri Nov 14 16:49:24 2003 +0000
1229
1230    XFree86 4.3.0.1
1231
1232commit 5e5a590668dc3ebe7e2cb568aad4c9c14021f2a2
1233Author: Kaleb Keithley <kaleb@freedesktop.org>
1234Date:   Fri Nov 14 15:54:55 2003 +0000
1235
1236    R6.6 is the Xorg base-line
1237