1commit b2b611960b5f11740cb3ca66c6dcd0a3688a82ae
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sat Oct 15 09:53:33 2022 -0700
4
5    viewres 1.0.7
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 04afb2de50ff3f7d074299a83f70ba779502eac6
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Sep 10 14:26:28 2022 -0700
12
13    Add .git-blame-ignore-revs to hide whitespace commits from git blame
14    
15    To use this in your local repo clone, you will need to either run
16    `git blame --ignore-revs-file .git-blame-ignore-revs`
17    or set it permanently with
18    `git config blame.ignoreRevsFile .git-blame-ignore-revs`
19    
20    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
21
22commit 7c75ce13299af68b73563714ca366f891f6a9eb8
23Author: Alan Coopersmith <alan.coopersmith@oracle.com>
24Date:   Sat Sep 10 14:13:58 2022 -0700
25
26    set_node_labels: move dereference of node to after the NULL check
27    
28    Found by cppcheck:
29    
30    viewres.c:815:22: warning: Either the condition '!node' is redundant or there is possible null pointer dereference: node. [nullPointerRedundantCheck]
31        ViewresData *d = VData(node);
32                         ^
33    viewres.c:817:9: note: Assuming that condition '!node' is not redundant
34        if (!node)
35            ^
36    viewres.c:815:22: note: Null pointer dereference
37        ViewresData *d = VData(node);
38                         ^
39    
40    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
41
42commit 73f73d21c22b0220403bc036c6175fb7c2bfafee
43Author: Alan Coopersmith <alan.coopersmith@oracle.com>
44Date:   Sun Aug 14 12:07:10 2022 -0700
45
46    Variable scope reductions as suggested by cppcheck
47    
48    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
49
50commit 49c9ace57166a4014fafa36ff5cb373846a9b4cf
51Author: Alan Coopersmith <alan.coopersmith@oracle.com>
52Date:   Sun Aug 14 11:54:50 2022 -0700
53
54    Remove obsolete casts on calloc & malloc calls
55    
56    Not needed in C89 and later
57    
58    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
59
60commit f03145544e4390e0bcd462ac5c154a4c474c46ee
61Author: Alan Coopersmith <alan.coopersmith@oracle.com>
62Date:   Sun Aug 14 11:47:02 2022 -0700
63
64    Apply X.Org standard coding style
65    
66    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
67
68commit 3eca4f7fa432b21db94429cfa8b9c4c71dfeebfd
69Author: Alan Coopersmith <alan.coopersmith@oracle.com>
70Date:   Sat Apr 2 12:59:54 2022 -0700
71
72    man page: remove out-of-date COPYRIGHT section
73    
74    The information previously listed here didn't match what is present in
75    the source code or the COPYING file, and the X(7) man page doesn't list
76    any license information as this had claimed.
77    
78    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
79
80commit baf57b3540ff5a23ecfb3f6c37726cd13875ae95
81Author: Alan Coopersmith <alan.coopersmith@oracle.com>
82Date:   Sat Dec 4 10:27:12 2021 -0800
83
84    Build xz tarballs instead of bzip2
85    
86    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
87
88commit 89f7c7eb3501abf4506b7374d9f4f45c0f2e990d
89Author: Alan Coopersmith <alan.coopersmith@oracle.com>
90Date:   Sat Dec 4 10:27:08 2021 -0800
91
92    gitlab CI: add a basic build test
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95
96commit 5661dfdc04572cdbb6ed4e641049657c4ba39252
97Author: Alan Coopersmith <alan.coopersmith@oracle.com>
98Date:   Sun Aug 25 16:11:01 2019 -0700
99
100    viewres 1.0.6
101    
102    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
103
104commit 85f2a20e7535a5f8dcdeb805f3e30f387d45baf3
105Author: Alan Coopersmith <alan.coopersmith@oracle.com>
106Date:   Sat Jun 8 19:20:26 2019 -0700
107
108    Fix -Wshadow warnings
109    
110    viewres.c: In function ‘select_callback’:
111    viewres.c:620:18: warning: declaration of ‘node’ shadows a previous local [-Wshadow]
112       XmuWidgetNode *node = selected_list.elements[i];
113                      ^~~~
114    viewres.c:593:20: note: shadowed declaration is here
115         XmuWidgetNode *node;
116                        ^~~~
117    viewres.c:658:18: warning: declaration of ‘node’ shadows a previous local [-Wshadow]
118       XmuWidgetNode *node = selected_list.elements[i];
119                      ^~~~
120    viewres.c:593:20: note: shadowed declaration is here
121         XmuWidgetNode *node;
122                        ^~~~
123    
124    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
125
126commit 917269949545cf1ab1e0068cc2ba7c1f9a775012
127Author: Alan Coopersmith <alan.coopersmith@oracle.com>
128Date:   Sat Jun 8 19:16:53 2019 -0700
129
130    Fix -Wsign-compare warnings
131    
132    viewres.c: In function ‘set_resource_labels’:
133    viewres.c:313:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
134         for (i = 0; i < node->nresources; i++, res++, wn++) {
135                       ^
136    viewres.c:329:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
137         for (i = 0; i < node->nconstraints; i++, res++, wn++) {
138                       ^
139    
140    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
141
142commit f846695df6b5d9543e12d1c8f04d9d7575df1ac6
143Author: Alan Coopersmith <alan.coopersmith@oracle.com>
144Date:   Sat Jun 8 19:15:34 2019 -0700
145
146    Pass -D_CONST_X_STRING to make libXt declare String as const char *
147    
148    Clears up 32 of 38 gcc -Wdiscarded-qualifiers warnings
149    
150    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
151
152commit 74bd63d6e6768f96c3e6fc2b692a5b012edbcea3
153Author: Alan Coopersmith <alan.coopersmith@oracle.com>
154Date:   Wed Nov 21 16:58:21 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 8ee2177d894c91a4a864b5b182705d72055e0090
161Author: Alan Coopersmith <alan.coopersmith@oracle.com>
162Date:   Fri Nov 16 20:55:55 2018 -0800
163
164    Update README for gitlab migration
165    
166    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
167
168commit 3b72d922ec82789124d43ef11e601a2f1e620458
169Author: Alan Coopersmith <alan.coopersmith@oracle.com>
170Date:   Sun Mar 4 19:38:27 2018 -0800
171
172    viewres 1.0.5
173    
174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
175
176commit 4548245c9f97c6349ea650dac13b5fde71c10915
177Author: Mihail Konev <k.mvc@ya.ru>
178Date:   Thu Jan 26 14:00:20 2017 +1000
179
180    autogen: add default patch prefix
181    
182    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
183
184commit 70861277c434f59bbb3c0aa28b73453f9182c847
185Author: Emil Velikov <emil.l.velikov@gmail.com>
186Date:   Mon Mar 9 12:00:52 2015 +0000
187
188    autogen.sh: use quoted string variables
189    
190    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
191    fall-outs, when they contain space.
192    
193    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
194    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
195    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
196
197commit ac126cce29dea04fc17d0ba8fb5d3ac5e6a79073
198Author: Peter Hutterer <peter.hutterer@who-t.net>
199Date:   Tue Jan 24 10:32:07 2017 +1000
200
201    autogen.sh: use exec instead of waiting for configure to finish
202    
203    Syncs the invocation of configure with the one from the server.
204    
205    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
206    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
207
208commit 9a151ffc889ca30450c55da6153640eb38494034
209Author: Alan Coopersmith <alan.coopersmith@oracle.com>
210Date:   Mon Jun 2 22:07:41 2014 -0700
211
212    autogen.sh: Honor NOCONFIGURE=1
213    
214    See http://people.gnome.org/~walters/docs/build-api.txt
215    
216    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
217
218commit 8cd8aed273e3c37e0f1b3a520531bbfe7914e429
219Author: Alan Coopersmith <alan.coopersmith@oracle.com>
220Date:   Mon Jun 2 22:07:41 2014 -0700
221
222    configure: Drop AM_MAINTAINER_MODE
223    
224    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
225
226commit acac63fea06d4fc937b606a20881528fc61baca0
227Author: Alan Coopersmith <alan.coopersmith@oracle.com>
228Date:   Mon Jun 2 22:07:36 2014 -0700
229
230    config: Add missing AC_CONFIG_SRCDIR
231    
232    Regroup AC statements under the Autoconf initialization section.
233    Regroup AM statements under the Automake initialization section.
234    
235    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
236
237commit a64768656016688f64934e51d52c2d8a7165226f
238Author: Alan Coopersmith <alan.coopersmith@oracle.com>
239Date:   Sat Jan 12 16:19:31 2013 -0800
240
241    viewres 1.0.4
242    
243    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
244
245commit 7b677ecec00a714cdfde423cad210540ce1222d4
246Author: Eric S. Raymond <esr@thyrsus.com>
247Date:   Thu Aug 23 11:51:45 2012 -0400
248
249    Eliminate use of tab stops.  Helps with structural translation to DocBook.
250    
251    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
252
253commit 17fae9c20496a6f3e59abcc30e59d604aa809fed
254Author: Gaetan Nadon <memsize@videotron.ca>
255Date:   Wed Jan 19 10:06:55 2011 -0500
256
257    config: move man pages into their own directory
258    
259    Use services provided by XORG_MANPAGE_SECTIONS.
260    Use standard Makefile for man pages.
261    
262    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
263
264commit 5523785a9d17d06a0b3ad9b7c11249625ae5ce2d
265Author: Gaetan Nadon <memsize@videotron.ca>
266Date:   Thu Jan 13 17:15:36 2011 -0500
267
268    man: replace hard coded man page section with substitution strings
269    
270    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
271
272commit 3f2a98f38d8148784cafae46c1a42b0f6c9fc05a
273Author: Gaetan Nadon <memsize@videotron.ca>
274Date:   Thu Jan 13 11:15:47 2011 -0500
275
276    man: remove trailing spaces and tabs
277    
278    Using s/[ \t]*$//
279    
280    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
281
282commit 61272b9b95b44422065ad0be82ea4f0b8e098535
283Author: Gaetan Nadon <memsize@videotron.ca>
284Date:   Wed Jan 12 16:28:02 2011 -0500
285
286    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
287    
288    This silences an Autoconf warning
289
290commit c6d38d69bf645860e50066ce74839808aaa35bea
291Author: Gaetan Nadon <memsize@videotron.ca>
292Date:   Wed Jan 12 15:29:49 2011 -0500
293
294    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
295    
296    This silences an Automake warning.
297    
298    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
299
300commit a9c50ba456bb60d3ecb4c74cf9a7e3e2b4965e65
301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
302Date:   Sat Oct 30 15:17:31 2010 -0700
303
304    viewres 1.0.3
305    
306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
307
308commit 6feac70d18949d787aa7b9aa7911c3dfd757fa94
309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
310Date:   Sat Oct 30 15:15:07 2010 -0700
311
312    config: Remove unnecessary calls from configure.ac
313    
314    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
315    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
316    
317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
318
319commit 0f94067e5185bda3f9f56937ad777bf62fd46d18
320Author: Gaetan Nadon <memsize@videotron.ca>
321Date:   Sat Oct 30 15:14:40 2010 -0700
322
323    config: update AC_PREREQ statement to 2.60
324    
325    Unrelated to the previous patches, the new value simply reflects
326    the reality that the minimum level for autoconf to configure
327    all x.org modules is 2.60 dated June 2006.
328    
329    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
330    
331    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
332    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
333
334commit eb5d2cb97c8c77ca625685c813ffc22795262358
335Author: Alan Coopersmith <alan.coopersmith@oracle.com>
336Date:   Thu Jul 1 16:17:56 2010 -0700
337
338    viewres calls Xmu functions directly so include it in PKG_CHECK_MODULES
339    
340    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
341
342commit 3cdcd33384ae8a5885a38d932d3ad6f48e782c26
343Author: Alan Coopersmith <alan.coopersmith@oracle.com>
344Date:   Wed Jun 30 23:25:03 2010 -0700
345
346    config: upgrade to util-macros 1.8 for additional man page support
347    
348    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
349    The value of MAN_SUBST is the same for all X.Org packages.
350    
351    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
352    The existing statement can now be removed from the configuration file.
353    
354    Use XORG_DEFAULT_OPTIONS provided $(SED)
355    Use platform appropriate version of sed.
356    
357    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
358
359commit 44b1029b8c28c50768e08651b736c7137ce885df
360Author: Gaetan Nadon <memsize@videotron.ca>
361Date:   Thu Feb 11 10:08:06 2010 -0500
362
363    config: move CWARNFLAGS from configure.ac to Makefile.am
364    
365    Compiler warning flags should be explicitly set in the makefile
366    rather than being merged with other packages compiler flags.
367    
368    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
369
370commit 4d72e30530e1ff768999d495aa8c82e8691eaaec
371Author: Gaetan Nadon <memsize@videotron.ca>
372Date:   Sat Dec 19 20:48:47 2009 -0500
373
374    configure.ac: use backticks rather than $() for cmd subs
375    
376    Use "$PKG_CONFIG" rather than hard coded "pkg-config"
377    
378    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
379
380commit bb1b70f140f31d17d7ec4744afa379bdd744bcb0
381Author: Alan Coopersmith <alan.coopersmith@sun.com>
382Date:   Wed Dec 16 18:30:22 2009 -0800
383
384    viewres 1.0.2
385    
386    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
387
388commit 73417d5e4b158484a73d082eedcc5ac7534b3f41
389Author: Alan Coopersmith <alan.coopersmith@sun.com>
390Date:   Wed Dec 16 18:29:51 2009 -0800
391
392    Fill in COPYING file with notices from viewres.c & viewres.man
393    
394    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
395
396commit 16db2ab4794064c970177cdce2bfcf94febda94c
397Author: Alan Coopersmith <alan.coopersmith@sun.com>
398Date:   Wed Dec 16 18:26:55 2009 -0800
399
400    Silence sed substitutions in make output
401    
402    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
403
404commit d1698a27d92e1cd81d64328b3013d204e8443982
405Author: Gaetan Nadon <memsize@videotron.ca>
406Date:   Thu Nov 26 09:19:52 2009 -0500
407
408    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
409    
410    Now that the INSTALL file is generated.
411    Allows running make maintainer-clean.
412
413commit 151c8608aa168f491efd48011392178ed69b601c
414Author: Gaetan Nadon <memsize@videotron.ca>
415Date:   Wed Oct 28 14:09:08 2009 -0400
416
417    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
418    
419    Add missing INSTALL file. Use standard GNU file on building tarball
420    README may have been updated
421    Remove AUTHORS file as it is empty and no content available yet.
422    Remove NEWS file as it is empty and no content available yet.
423
424commit f9167714247e877ae0aa6243984e9ea5e2be7420
425Author: Gaetan Nadon <memsize@videotron.ca>
426Date:   Tue Oct 27 15:07:24 2009 -0400
427
428    Deploy the new XORG_DEFAULT_OPTIONS #24242
429    
430    This macro aggregate a number of existing macros that sets commmon
431    X.Org components configuration options. It shields the configuration file from
432    future changes.
433
434commit 6d6ec7b0ac3d15c24962f302bd28c351bbb46655
435Author: Gaetan Nadon <memsize@videotron.ca>
436Date:   Mon Oct 26 22:08:38 2009 -0400
437
438    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
439    
440    ChangeLog filename is known to Automake and requires no further
441    coding in the makefile.
442
443commit f4f359646572e59cb94ab6f6e0174923499559f4
444Author: Gaetan Nadon <memsize@videotron.ca>
445Date:   Thu Oct 22 12:34:14 2009 -0400
446
447    .gitignore: use common defaults with custom section # 24239
448    
449    Using common defaults will reduce errors and maintenance.
450    Only the very small or inexistent custom section need periodic maintenance
451    when the structure of the component changes. Do not edit defaults.
452
453commit 050b035b8bb98abe6592222fcb238b8217254def
454Author: Alan Coopersmith <alan.coopersmith@sun.com>
455Date:   Thu Oct 1 14:54:20 2009 -0700
456
457    Add README with pointers to mailing lists, bugzilla, & git
458    
459    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
460
461commit 1399da8a60d684a802effc055be6351d1b87612a
462Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
463Date:   Mon Jan 19 18:42:22 2009 -0200
464
465    Add a simple Viewres-color file
466    
467      Only grayscale values used.
468
469commit 8f1476657baae54dcca998c01bd4ffe0233a6ba2
470Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
471Date:   Mon Jan 19 18:40:18 2009 -0200
472
473    Ansification and compile warning fixes.
474    
475      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
476    make distcheck and all gcc 4.3 and sparse warnings.
477
478commit 8906fd92f85710d6d7eceac2fb5955e8c56eadcd
479Author: Peter Breitenlohner <peb@mppmu.mpg.de>
480Date:   Mon Nov 10 19:51:13 2008 +0100
481
482    enable VPATH build, reorganize app default files
483
484commit 24c03bd379eb02abb5cfd88ce51a3a6714112d2f
485Author: James Cloos <cloos@jhcloos.com>
486Date:   Wed Aug 20 10:32:49 2008 -0400
487
488    xaw8 is gone, use xaw7
489
490commit 600b0945d6b6718fb670b8f0ded2a6d3995ef596
491Author: Julien Cristau <jcristau@debian.org>
492Date:   Sun Apr 20 18:59:46 2008 +0200
493
494    Use AM_CFLAGS instead of viewres_CFLAGS and remove AM_PROG_CC_C_O
495
496commit 2995e47455e19d8dad7541ac27818c074c0ed8c8
497Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
498Date:   Thu Mar 27 20:22:43 2008 -0700
499
500    Added missing AM_PROG_CC_C_O
501
502commit 95d17a0414df671b74463264ddc31ed685c5c466
503Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
504Date:   Thu Mar 27 20:07:32 2008 -0700
505
506    Build fix for file systems that are not case sensitive
507
508commit ce9bab5b851484d943c5130c47624e96f8eb626d
509Author: James Cloos <cloos@jhcloos.com>
510Date:   Thu Dec 6 16:37:08 2007 -0500
511
512    Replace static ChangeLog with dist-hook to generate from git log
513
514commit c5eebfbdd00a5b36688d29f88835e2383b97d896
515Author: James Cloos <cloos@jhcloos.com>
516Date:   Mon Sep 3 05:51:14 2007 -0400
517
518    Add *~ to .gitignore to skip patch/emacs droppings
519
520commit 8a01d8bcd3e4916fb808dc6c30c5588ba79fb4e8
521Author: James Cloos <cloos@jhcloos.com>
522Date:   Thu Aug 23 19:24:39 2007 -0400
523
524    Rename .cvsignore to .gitignore
525
526commit f1733a2d6cb985d1fdb884fd82d5baaa622cb1c8
527Author: Kevin E Martin <kem@kem.org>
528Date:   Wed Dec 21 02:29:48 2005 +0000
529
530    Update package version for X11R7 release.
531
532commit b55117b16debee5bf96a81352857ac5bafc8cd7f
533Author: Adam Jackson <ajax@nwnk.net>
534Date:   Mon Dec 19 16:22:42 2005 +0000
535
536    Stub COPYING files
537
538commit 582a85e035a6579c998b24ffb1a11a9639df5c1b
539Author: Kevin E Martin <kem@kem.org>
540Date:   Thu Dec 15 00:24:04 2005 +0000
541
542    Update package version number for final X11R7 release candidate.
543
544commit b5ad05b072fdbaa48cc4f6b8cb69007fd2661fa5
545Author: Kevin E Martin <kem@kem.org>
546Date:   Wed Dec 7 16:17:58 2005 +0000
547
548    Change to use the app-defaults default dir configured in libXt.
549
550commit 18957fc0a71ac7eef82a7338bc68e28cf994e1a1
551Author: Kevin E Martin <kem@kem.org>
552Date:   Tue Dec 6 22:48:19 2005 +0000
553
554    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
555
556commit 168ab66feb8eb387afc81cbb2f8f699bbc96a999
557Author: Kevin E Martin <kem@kem.org>
558Date:   Sat Dec 3 05:49:18 2005 +0000
559
560    Update package version number for X11R7 RC3 release.
561
562commit 78dc233c3e7f6903febac88e2aa40429a795ffc4
563Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
564Date:   Mon Nov 28 22:01:39 2005 +0000
565
566    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
567        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
568
569commit 21bf6fe203c429419d6959b8ed73f1bc3bf3f078
570Author: Eric Anholt <anholt@freebsd.org>
571Date:   Mon Nov 21 10:34:58 2005 +0000
572
573    Another pass at .cvsignores for apps.
574
575commit 8f348ed9a500cbc265913e8fad23b4d96bcb05ee
576Author: Eric Anholt <anholt@freebsd.org>
577Date:   Sun Nov 20 22:08:50 2005 +0000
578
579    Add/improve .cvsignore files for apps.
580
581commit 0657c3fe9ee02925ed17b05c4c4ed2b6a0b39c67
582Author: Kevin E Martin <kem@kem.org>
583Date:   Wed Oct 19 02:47:50 2005 +0000
584
585    Update package version number for RC1 release.
586
587commit 822c3c270bc81705f5ca29c48e2883f0b10a2710
588Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
589Date:   Tue Oct 18 00:32:54 2005 +0000
590
591    Change default install dir for app-default files from
592        $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match
593        the monolith & allow localization
594
595commit b09ef81f1c0598ffdcb5f98cf4f438aa2118b048
596Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
597Date:   Mon Oct 17 23:56:21 2005 +0000
598
599    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
600        work better with BSD make
601
602commit 6a1fe480cf6f7e1a5fc2f8a6c404843f2655af1d
603Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
604Date:   Fri Oct 14 00:25:42 2005 +0000
605
606    Use sed to fill in variables in man page
607
608commit 14c4f695a1d952afb8b325d05d7f9b7a5b01bb00
609Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
610Date:   Mon Aug 1 20:25:28 2005 +0000
611
612    Install man pages to section 1 instead of section m (Patch from Donnie
613        Berkholz)
614
615commit 2274ee2690e5fd48926797a160a4aa2179b484b8
616Author: Kevin E Martin <kem@kem.org>
617Date:   Fri Jul 29 21:22:30 2005 +0000
618
619    Various changes preparing packages for RC0:
620    - Verify and update package version numbers as needed
621    - Implement versioning scheme
622    - Change bug address to point to bugzilla bug entry form
623    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
624        reenable it)
625    - Fix makedepend to use pkgconfig and pass distcheck
626    - Update build script to build macros first
627    - Update modular Xorg version
628
629commit f83c93bf9a84b944a524aab82be25ca50d240211
630Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
631Date:   Tue Jul 26 15:44:01 2005 +0000
632
633    Replace more GNU make-ism's with more portable macros
634
635commit cb31d8afa9cafc1b1a841f3c5b1803b13b6702d1
636Author: Adam Jackson <ajax@nwnk.net>
637Date:   Wed Jul 20 19:31:51 2005 +0000
638
639    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
640        configure cache, you cache it, and the cached value is probably wrong.
641
642commit a6905c610f37091082698d50fec19e688d74db27
643Author: Matthieu Herrb <matthieu.herrb@laas.fr>
644Date:   Sun Jul 17 20:11:01 2005 +0000
645
646    fix rules to work with non-GNU make and outside of $srcdir
647
648commit ce1447d0a8b2a7fc3a36f11eed69cd14be397ffe
649Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
650Date:   Wed Jun 29 19:22:16 2005 +0000
651
652    Build system for viewres
653
654commit 697d851cbb7703eae3e3b7041a091c216a241c7a
655Author: Egbert Eich <eich@suse.de>
656Date:   Fri Apr 23 19:54:38 2004 +0000
657
658    Merging XORG-CURRENT into trunk
659
660commit 291eb594bce4ccdc13424c0301271e586a203c25
661Author: Egbert Eich <eich@suse.de>
662Date:   Sun Mar 14 08:34:58 2004 +0000
663
664    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
665
666commit 668ebdeb0f4b09b24dd0ce4e56dfc4df885a838c
667Author: Egbert Eich <eich@suse.de>
668Date:   Wed Mar 3 12:12:54 2004 +0000
669
670    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
671
672commit ad60b37dea3d8aa56f287c61fb54382b86b95400
673Author: Egbert Eich <eich@suse.de>
674Date:   Thu Feb 26 13:36:16 2004 +0000
675
676    readding XFree86's cvs IDs
677
678commit 97444432dc8dbc4f5a3512ef06f3f2d8ebad93a4
679Author: Egbert Eich <eich@suse.de>
680Date:   Thu Feb 26 09:23:58 2004 +0000
681
682    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
683
684commit 5f3e41c55cbfa5a58fc9c4f2861266c94e458c77
685Author: Kaleb Keithley <kaleb@freedesktop.org>
686Date:   Tue Nov 25 19:29:03 2003 +0000
687
688    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
689
690commit 7aaa7f8641e6306fa9f1fff7dbddcef73adf68ce
691Author: Kaleb Keithley <kaleb@freedesktop.org>
692Date:   Fri Nov 14 16:48:58 2003 +0000
693
694    XFree86 4.3.0.1
695
696commit 4f7fca9509be5580057f836498b6aa12fe7cd4b1
697Author: Kaleb Keithley <kaleb@freedesktop.org>
698Date:   Fri Nov 14 16:48:58 2003 +0000
699
700    Initial revision
701