ChangeLog revision ffd25bca
1commit 4c5e72e9d8571bfb2a98d1ffc9724596764f5b0b
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Wed Jul 27 20:33:13 2011 -0700
4
5    twm 1.0.7
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit f21823506dcb956d62c260e6e207f1dc2ce7732a
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Thu Jul 14 22:04:34 2011 -0700
12
13    Whitespace fixes in src files
14    
15    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
16
17commit c6ade914363426facb01a954650b804657114012
18Author: Alan Coopersmith <alan.coopersmith@oracle.com>
19Date:   Tue Jul 12 22:30:41 2011 -0700
20
21    Replace most sprintf calls with snprintf
22    
23    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
24
25commit ab689e1a711bbbdfcd6d3a8d2edebbc378ebccb7
26Author: Gaetan Nadon <memsize@videotron.ca>
27Date:   Mon Mar 7 20:05:45 2011 -0500
28
29    config: layout the C flags for better readability
30    
31    Group pre-processor flags under AM_CPPFLAGS
32    Might as well do the rest of the file.
33    
34    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
35
36commit f048770b021d92780c754257c9c1efa7a769c69c
37Author: Gaetan Nadon <memsize@videotron.ca>
38Date:   Mon Mar 7 19:47:48 2011 -0500
39
40    man: use Autoconf provided $(SED)
41    
42    Use platform appropriate version of sed.
43    
44    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
45
46commit 356ca1db47be674aa9125b65668e8fe0573f7f69
47Author: Gaetan Nadon <memsize@videotron.ca>
48Date:   Mon Mar 7 19:37:48 2011 -0500
49
50    config: rm is about removal, not generation
51    
52    Automake:
53    AM_V_at as a prefix to commands that should not output anything in silent mode
54    
55    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
56
57commit 6f362f8d962ff7054682cfb2d88e8603e1219492
58Author: Gaetan Nadon <memsize@videotron.ca>
59Date:   Mon Mar 7 16:43:59 2011 -0500
60
61    deftwmrc.c is not required in MAINTAINERCLEANFILES
62    
63    Automake takes care of that as it is part of BUILT_SOURCES
64    
65    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
66
67commit 98e224e3da245f29d281df357d27b53acdccb5c7
68Author: Gaetan Nadon <memsize@videotron.ca>
69Date:   Mon Mar 7 16:10:53 2011 -0500
70
71    lex & yacc: only header file needs to be in BUILT_SOURCES
72    
73    http://www.gnu.org/software/automake/manual/automake.html#Yacc-and-Lex
74    
75    This completes reversal of commit ea03b6bcd1045dfc0d6947e4858de8994d61170b
76    The Makefile generates a valid "gram.h: gram.c" rule.
77    The Makefile already has gram.c gram.h and lex.c in the
78    maintainer-clean-generic target.
79    
80    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
81
82commit 70a7f34dfc4d7ea4f7425b9a7359a08a35752bb0
83Author: Jeremy Huddleston <jeremyhu@apple.com>
84Date:   Wed May 11 22:41:56 2011 -0700
85
86    Add extra sanity checking to avoid possible NULL dereferences
87    
88    menus.c:569:10: warning: Access to field 'func' results in a dereference of a null pointer (loaded from variable 'ActiveItem')
89                if (ActiveItem->func != F_TITLE && !ActiveItem->state)
90                    ^~~~~~~~~~
91    
92    Found-by: clang static analyzer
93    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
94    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
95
96commit a898b136729660a33d60b317ccb839f6e0428201
97Author: Jeremy Huddleston <jeremyhu@apple.com>
98Date:   Wed May 11 22:30:56 2011 -0700
99
100    Add sanity checking to avoid a possible NULL dereference
101    
102    menus.c:934:26: warning: Access to field 'fore' results in a dereference of a null pointer (loaded from variable 'cur')
103                cur->hi_back = cur->fore = f3.pixel;
104                               ~~~  ^
105    
106    Found-by: clang static analyzer
107    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
108    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
109
110commit 1061e063be78f4e233d550649ce297b639193a9f
111Author: Jeremy Huddleston <jeremyhu@apple.com>
112Date:   Wed May 11 22:27:21 2011 -0700
113
114    Address a possible NULL pointer dereference
115    
116    menus.c:523:24: warning: Access to field 'w' results in a dereference of a null pointer (loaded from variable 'ActiveMenu')
117            if (XFindContext(dpy, ActiveMenu->w, ScreenContext, &context_data) == 0)
118                                  ^~~~~~~~~~
119    
120    Found-by: clang static analyzer
121    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
122    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
123
124commit bde0b06b465adb868d38d3721b95ea337bad8eb9
125Author: Jeremy Huddleston <jeremyhu@apple.com>
126Date:   Wed May 11 22:22:25 2011 -0700
127
128    Mark Done() as _X_NORETURN
129    
130    list.c:103:11: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'nptr')
131        nptr->next = *list_head;
132        ~~~~  ^
133    
134    Found-by: clang static analyzer
135    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
136
137commit 2f5d1e29f5a803ba2417d6fe20782c05ed932612
138Author: Jeremy Huddleston <jeremyhu@apple.com>
139Date:   Wed May 11 22:17:54 2011 -0700
140
141    Silence uninitialized warning
142    
143    session.c: In function 'ReadWinConfigFile':
144    session.c:554: warning: 'version' may be used uninitialized in this function
145    
146    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
147
148commit ef39179b9fe6d13f7e81098edfc10711c8b40948
149Author: Jeremy Huddleston <jeremyhu@apple.com>
150Date:   Wed May 11 22:16:23 2011 -0700
151
152    LP64: Fix formatting for DEBUG printf
153    
154    add_window.c: In function 'AddWindow':
155    add_window.c:169: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'Window'
156    
157    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
158
159commit 0f1ccd0b3409ab9b9fce1256fc59ad9bbe69a349
160Author: Alan Coopersmith <alan.coopersmith@oracle.com>
161Date:   Tue May 10 15:35:51 2011 -0700
162
163    Fix: menus.c:2374: warning: implicit declaration of function `putenv`
164    
165    Ensure _GNU_SOURCE is defined on Linux builds before including <stdlib.h>
166    so the prototype is exposed in the header properly.
167    
168    https://bugs.freedesktop.org/show_bug.cgi?id=32696
169    
170    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
171    Reviewed-by: Julien Cristau <jcristau@debian.org>
172
173commit 75dd868133c5c12daa946468e7250d174f842281
174Author: Alan Coopersmith <alan.coopersmith@oracle.com>
175Date:   Mon May 9 22:46:03 2011 -0700
176
177    Remove unused fallback implementation of putenv()
178    
179    NOPUTENV was never defined in a modular build, probably because putenv()
180    is a standard function in Unix98 / SUSv2, and goes back to at least
181    SVR2 and 4.3BSD-Reno.
182    
183    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
184    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
185    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
186
187commit 5b763259451b7798b1004c49775d1bd3df2f9d88
188Author: Gaetan Nadon <memsize@videotron.ca>
189Date:   Fri Mar 4 20:57:30 2011 -0500
190
191    man: replace hard coded section number with __appmansuffix__
192    
193    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
194
195commit 611f20e896aa533f0f3e5cd6c8fdd7c381963c95
196Author: Alan Coopersmith <alan.coopersmith@oracle.com>
197Date:   Wed Jan 5 16:12:42 2011 -0800
198
199    Fix many gcc strict-aliasing warnings
200    
201    menus.c:518: warning: dereferencing type-punned pointer will break strict-aliasing rules
202    
203    and many more of the same message at different lines
204    
205    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
206
207commit b160f7bcb99111e631d6701b199f1dad1e40c80d
208Author: Alan Coopersmith <alan.coopersmith@oracle.com>
209Date:   Wed Jan 5 14:09:15 2011 -0800
210
211    twm 1.0.6
212    
213    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
214
215commit 1347a210cafa75db40198f8f9e3ca36f8e627bf6
216Author: Alan Coopersmith <alan.coopersmith@oracle.com>
217Date:   Wed Nov 24 15:28:47 2010 -0800
218
219    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
220    
221    Regroup AC statements under the Autoconf initialization section.
222    Regroup AM statements under the Automake initialization section.
223    Add missing AC_CONFIG_SRCDIR
224    
225    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
226
227commit 1ca7092e44e87038ba95a962a3c952ef72b4f146
228Author: Martin Jansa <Martin.Jansa@gmail.com>
229Date:   Mon Nov 1 09:54:44 2010 +0100
230
231    config: replace AC_CHECK_FILE with test -f
232    
233    * AC_CHECK_FILE doesn't work for cross compilation
234    
235    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
236
237commit b3af92c7bca31b3bf73428d46291b88c3f86026e
238Author: Alan Coopersmith <alan.coopersmith@oracle.com>
239Date:   Sat Oct 30 15:03:50 2010 -0700
240
241    twm 1.0.5
242    
243    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
244
245commit 7f164a9631e4ec26657bedeb947409d0b484e967
246Author: Alan Coopersmith <alan.coopersmith@oracle.com>
247Date:   Sat Oct 30 15:01:43 2010 -0700
248
249    Sun's copyrights now belong to Oracle
250    
251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
252
253commit 357d089016bd889f2f73349c3f977c6adccc85a6
254Author: Jesse Adkins <jesserayadkins@gmail.com>
255Date:   Tue Sep 28 13:29:49 2010 -0700
256
257    Purge cvs tags.
258    
259    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
260
261commit 4c7c2ece9e152358448406b759c30eb44eea13f9
262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
263Date:   Thu Sep 23 00:11:56 2010 -0700
264
265    config: upgrade to util-macros 1.8 for additional man page support
266    
267    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
268    The value of MAN_SUBST is the same for all X.Org packages.
269    
270    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
271    The existing statement can now be removed from the configuration file.
272    
273    Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
274    Enables silent rule and use platform appropriate version of sed.
275    
276    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
277
278commit 3bcc18ca9968a33dbf3e8df920f08227f95d8a72
279Author: Alan Coopersmith <alan.coopersmith@oracle.com>
280Date:   Wed Sep 22 23:59:32 2010 -0700
281
282    Silence build of deftwmrc.c with AM_V_GEN
283    
284    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
285
286commit 282060f633c1a0910522f64cf36222a27016bf77
287Author: Alan Coopersmith <alan.coopersmith@oracle.com>
288Date:   Wed Sep 22 23:37:21 2010 -0700
289
290    system.twmrc doesn't need to be in both EXTRA_DIST & dist_rc_DATA
291    
292    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
293
294commit 810922b19b86c1ddd5ef9c9169d1328b3562af77
295Author: Alan Coopersmith <alan.coopersmith@oracle.com>
296Date:   Wed Sep 22 23:33:22 2010 -0700
297
298    config: Remove unnecessary calls from configure.ac
299    
300    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
301    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
302    
303    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
304
305commit 79e3387e7a2d35f5895f813a4572a93457114e3c
306Author: Alan Coopersmith <alan.coopersmith@oracle.com>
307Date:   Wed Sep 22 23:23:26 2010 -0700
308
309    Use AC_CHECK_FUNCS / default name for mkstemp
310    
311    No longer need to maintain #ifdef compatibility with the names used in
312    the monolith Imakefiles.
313    
314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315
316commit 3bac463f63b4c1e667256c7d2d287b3567a7ff1c
317Author: Gaetan Nadon <memsize@videotron.ca>
318Date:   Tue Jul 20 18:45:18 2010 -0400
319
320    config: update AC_PREREQ statement to 2.60
321    
322    Unrelated to the previous patches, the new value simply reflects
323    the reality that the minimum level for autoconf to configure
324    all x.org modules is 2.60 dated June 2006.
325    
326    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
327    
328    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
329
330commit 40480fdbe6c15076a2e734cae246c62c85862829
331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
332Date:   Fri Aug 6 08:27:35 2010 -0700
333
334    Fill in COPYING file with copyright notices from source code
335    
336    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
337
338commit a9f315f32bcc0636ada7427be9e3c5e3810af05e
339Author: Gaetan Nadon <memsize@videotron.ca>
340Date:   Sat Jul 17 16:36:41 2010 -0400
341
342    config: allow to build tarball when yacc is missing
343    
344    Autoconf does not handle this scenario as well as Automake does.
345    If gram.c is already there, do not abort the configuration
346    if yacc is missing as it is not needed.
347    
348    If both gram.c and yacc are missing, abort configuration.
349    Yacc is a required tool to build the package.
350    
351    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
352
353commit 29a157f7f181ac02c88537032dbcca29880c3068
354Author: Gaetan Nadon <memsize@videotron.ca>
355Date:   Fri Jun 4 17:09:18 2010 -0400
356
357    config: add check for yacc to insure it is installed #27973
358    
359    Unlike other macros AC_PROG_YACC sets the YACC variable to "yacc"
360    as a last resort, even if no programs have been found. Improve error
361    checking by issuing an error message if yacc is not found. The module
362    cannot build anyway.
363    
364    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
365
366commit d0da74f035fd3595b5ddfb6ded29bdc5f9666ceb
367Author: Alan Coopersmith <alan.coopersmith@sun.com>
368Date:   Thu Jan 14 21:40:48 2010 -0800
369
370    Update Sun license notices to current X.Org standard form
371    
372    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
373
374commit 9adc93df944e203726d09716dc3bfbbc6cf304ae
375Author: Gaetan Nadon <memsize@videotron.ca>
376Date:   Thu Nov 26 09:19:52 2009 -0500
377
378    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
379    
380    Now that the INSTALL file is generated.
381    Allows running make maintainer-clean.
382
383commit 2386d631c301233899bdcc6381203bcbd1139ab3
384Author: Gaetan Nadon <memsize@videotron.ca>
385Date:   Wed Oct 28 14:09:08 2009 -0400
386
387    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
388    
389    Add missing INSTALL file. Use standard GNU file on building tarball
390    README may have been updated
391    Remove AUTHORS file as it is empty and no content available yet.
392    Remove NEWS file as it is empty and no content available yet.
393
394commit 7f4c2b588bc94702eb0df0618a97413b0e544879
395Author: Gaetan Nadon <memsize@videotron.ca>
396Date:   Tue Oct 27 15:07:24 2009 -0400
397
398    Deploy the new XORG_DEFAULT_OPTIONS #24242
399    
400    This macro aggregate a number of existing macros that sets commmon
401    X.Org components configuration options. It shields the configuration file from
402    future changes.
403
404commit 5c13f89a73f7b57dad9c9dcfd63e084077550c3e
405Author: Gaetan Nadon <memsize@videotron.ca>
406Date:   Mon Oct 26 22:08:38 2009 -0400
407
408    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
409    
410    ChangeLog filename is known to Automake and requires no further
411    coding in the makefile.
412
413commit 3d6678095a3553b9ab36d60e6a254acfbdc831c1
414Author: Gaetan Nadon <memsize@videotron.ca>
415Date:   Thu Oct 22 16:25:53 2009 -0400
416
417    .gitignore: use common defaults with custom section # 24239
418    
419    Using common defaults will reduce errors and maintenance.
420    Only the very small or inexistent custom section need periodic maintenance
421    when the structure of the component changes. Do not edit defaults.
422
423commit a3f6e3cbd99b6394c3dc70d54f07f129b4ece70c
424Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
425Date:   Wed Oct 21 12:47:20 2009 -0700
426
427    This is not a GNU project, so declare it foreign.
428    
429    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
430    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
431    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
432    > > was quite annoying to work around since 'autoreconf -fvi' replaces
433    > > it and git wants to commit it.  Should these files even be in git?
434    > > Can I nuke them for the betterment of humanity and since they get
435    > > created by autoreconf anyways?
436    >
437    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
438    
439    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
440    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
441    of the INSTALL file. It is also part of the 24206 solution.
442    
443    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
444
445commit 06d15a482a596f1d846b97627badd28381c2e7b2
446Author: Alan Coopersmith <alan.coopersmith@sun.com>
447Date:   Thu Oct 1 14:54:20 2009 -0700
448
449    Add README with pointers to mailing lists, bugzilla, & git
450    
451    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
452
453commit 4d9e3200b1625ad24053ce5f1ca816a03939c6d5
454Author: Gaetan Nadon <memsize@videotron.ca>
455Date:   Tue Jul 7 17:32:01 2009 -0400
456
457    twm: use XORG_CHANGELOG macro to create ChangeLog. #22611
458    
459    Build break: app/twm/Makefile.am: command not found: git-log
460    Adding the macro in configure.ac and use it in Makefile.am
461    Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611
462    Tested: running autogen.sh, make and 'make dist'
463    
464    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
465    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
466
467commit 1fa03c39bddace4d787c55703f3081bcaf36511b
468Author: Adam Jackson <ajax@redhat.com>
469Date:   Thu Mar 6 16:52:54 2008 -0500
470
471    twm 1.0.4
472
473commit d28dffd63bd5070445b15d1b9b70f3303ec5e333
474Author: Alan Coopersmith <alan.coopersmith@sun.com>
475Date:   Thu Feb 21 08:16:39 2008 -0800
476
477    Change twm_CFLAGS to AM_CFLAGS to make automake-1.10 happier
478    
479    src/Makefile.am:35: compiling `add_window.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
480
481commit ca9494bf50c9314597f4e88efa5bf5d66c1cd38f
482Author: Alan Coopersmith <alan.coopersmith@sun.com>
483Date:   Thu Feb 21 08:14:01 2008 -0800
484
485    Explicitly require libSM & libICE since twm calls them directly
486
487commit f0543e7ff17f6e8aefbd6cc003d0679a706a8535
488Author: James Cloos <cloos@jhcloos.com>
489Date:   Thu Dec 6 16:37:07 2007 -0500
490
491    Replace static ChangeLog with dist-hook to generate from git log
492
493commit 44d51a2bc7d1e2fc5fcd3f729b6f0ca6e62e1f00
494Author: Wolfgang Rupprecht <wsr+xorg@wsrcc.com>
495Date:   Mon Jan 23 15:11:00 2006 -0800
496
497    X.Org Bug #5691: twm mouse button limit too low
498    
499    <https://bugs.freedesktop.org/show_bug.cgi?id=5691>
500
501commit 03a4e6c35161402d1477acb95723ab93eabde97e
502Author: James Cloos <cloos@jhcloos.com>
503Date:   Mon Sep 3 05:51:13 2007 -0400
504
505    Add *~ to .gitignore to skip patch/emacs droppings
506
507commit 9ae787c9f0d02aeb4c67fd20cee08d3cccd99fb4
508Author: James Cloos <cloos@jhcloos.com>
509Date:   Thu Aug 23 19:24:38 2007 -0400
510
511    Rename .cvsignore to .gitignore
512
513commit 5f70aaffa0fa88a4b08ea40cfdbde5f34d20d366
514Author: Daniel Stone <daniel@fooishbar.org>
515Date:   Thu Nov 30 19:56:29 2006 +0200
516
517    bump to 1.0.3
518
519commit f27c4a577f68673e5022db1a4db79da9a3d05502
520Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
521Date:   Tue Nov 28 13:24:08 2006 +0000
522
523    Fix system.twmrc handling
524
525commit 6736d9094d2719f21e3ba0050aad88f3ffc78dc4
526Author: Adam Jackson <ajax@benzedrine.nwnk.net>
527Date:   Fri Oct 13 17:47:24 2006 -0400
528
529    Bump to 1.0.2
530
531commit 4bc5a25c21006e547ff7fce7fff7544acbb22174
532Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
533Date:   Sat Jun 3 07:06:42 2006 +0000
534
535    Coverity #369: If malloc of entry->wm_command fails, error cleanup was
536        still trying to read pointers from it to free.
537
538commit 9680fbed52e3af20d226040958f91502b6027d2d
539Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
540Date:   Sat Jun 3 06:54:20 2006 +0000
541
542    Coverity #1508: Variable "action" not freed or pointed-to
543
544commit ab7a497d995347e340c28c4eb0d1f0f9ee298e41
545Author: Kevin E Martin <kem@kem.org>
546Date:   Wed Dec 21 02:29:47 2005 +0000
547
548    Update package version for X11R7 release.
549
550commit 4bd96f2d5d976dbd17bac563504985a1bc793ffe
551Author: Adam Jackson <ajax@nwnk.net>
552Date:   Mon Dec 19 16:22:41 2005 +0000
553
554    Stub COPYING files
555
556commit 2c1cd456efe91302b0de645ea36a84c49472f104
557Author: Kevin E Martin <kem@kem.org>
558Date:   Thu Dec 15 00:24:04 2005 +0000
559
560    Update package version number for final X11R7 release candidate.
561
562commit 9f88f7db68e146c1d1b60a988f68f1528350a9a8
563Author: Kevin E Martin <kem@kem.org>
564Date:   Tue Dec 6 22:48:19 2005 +0000
565
566    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
567
568commit 466a35f33d48427d7f5a186cf60fddd070ce2d71
569Author: Kevin E Martin <kem@kem.org>
570Date:   Sat Dec 3 05:49:17 2005 +0000
571
572    Update package version number for X11R7 RC3 release.
573
574commit 81d2d1208b1445f60e10186b61e472b22ac47712
575Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
576Date:   Mon Nov 28 22:01:39 2005 +0000
577
578    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
579        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
580
581commit 6897ce2b13a0b651c8bb56b833e51125d678ea81
582Author: Eric Anholt <anholt@freebsd.org>
583Date:   Mon Nov 21 10:34:58 2005 +0000
584
585    Another pass at .cvsignores for apps.
586
587commit 3cf0d5d098a049e1113dad20699b07d1a91fd9ca
588Author: Eric Anholt <anholt@freebsd.org>
589Date:   Sun Nov 20 22:08:50 2005 +0000
590
591    Add/improve .cvsignore files for apps.
592
593commit d99f0e0b2577cbdfea2a51d8ca20aff080539b60
594Author: Kevin E Martin <kem@kem.org>
595Date:   Sat Nov 19 07:15:36 2005 +0000
596
597    Update pkgconfig files to separate library build-time dependencies from
598        application build-time dependencies, and update package deps to work
599        with separate build roots.
600
601commit 6dfc0dee6645c7620cc2fb9a5d44b041cb6558b6
602Author: Kevin E Martin <kem@kem.org>
603Date:   Wed Oct 19 02:47:50 2005 +0000
604
605    Update package version number for RC1 release.
606
607commit 43fb7218e8723f6f3321ec406745971ca5fd0d00
608Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
609Date:   Mon Oct 17 23:56:21 2005 +0000
610
611    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
612        work better with BSD make
613
614commit a85acab665c375d14ae15ef90f6baf8b47c7032b
615Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
616Date:   Sun Oct 16 22:32:51 2005 +0000
617
618    Capitalize O in "X.Org Foundation"
619    Use cpp to substitute variables in man pages
620
621commit a3bbaecf0502d58cf0bc7ff7db99e9239c6e822c
622Author: Kevin E Martin <kem@kem.org>
623Date:   Sat Oct 15 19:19:03 2005 +0000
624
625    Have generated files be cleaned by maintainer to pass check-tarball test.
626
627commit 7ccfcb8e4f4caabba7c26de42ce2db252b5b0817
628Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
629Date:   Sun Oct 9 19:11:53 2005 +0000
630
631    Bug #3755 <https://bugs.freedesktop.org/show_bug.cgi?id=3755> twm can't
632        handle 8-bit characters in .twmrc (Tomohiro KUBOITA)
633
634commit b098cf784d34421de0ae51d8cd7090022d3b2600
635Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
636Date:   Sun Oct 9 19:10:58 2005 +0000
637
638    Bug #3755 <https://bugs.freedesktop.org/show_bug.cgi?id=3755> twm can't
639        handle 8-bit characters in .twmrc (Tomohiro KUBOITA)
640
641commit e2c423a32d8ba724e19e6db5b315ef9011d89488
642Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
643Date:   Sun Oct 9 18:59:28 2005 +0000
644
645    Bug #3755 <https://bugs.freedesktop.org/show_bug.cgi?id=3755> twm can't
646        handle 8-bit characters in .twmrc (Tomohiro KUBOITA)
647
648commit ea03b6bcd1045dfc0d6947e4858de8994d61170b
649Author: Keith Packard <keithp@keithp.com>
650Date:   Tue Aug 2 18:08:48 2005 +0000
651
652    Mark generated files as BUILT_SOURCES and CLEANFILES to ensure they are
653        regenerated after 'make clean' and to make parallel builds work right.
654
655commit a12f281be43c1c86147fb89c99484ac558f64425
656Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
657Date:   Mon Aug 1 20:25:28 2005 +0000
658
659    Install man pages to section 1 instead of section m (Patch from Donnie
660        Berkholz)
661
662commit 99c2e9865374605697c2a85099bbc56bf7853969
663Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
664Date:   Sat Jul 30 21:07:26 2005 +0000
665
666    Add prototypes of Xalloc/free functions.
667    Export ImUtil.h to match modular tree install.
668    Define SVR4 to 1 to avoid warning about redefining to different values.
669    Include missing headers to clear more compiler warnings.
670
671commit 5bf9409bc3c7e11d86bcd5b25760435e199b85c5
672Author: Kevin E Martin <kem@kem.org>
673Date:   Fri Jul 29 21:22:30 2005 +0000
674
675    Various changes preparing packages for RC0:
676    - Verify and update package version numbers as needed
677    - Implement versioning scheme
678    - Change bug address to point to bugzilla bug entry form
679    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
680        reenable it)
681    - Fix makedepend to use pkgconfig and pass distcheck
682    - Update build script to build macros first
683    - Update modular Xorg version
684
685commit b2de9b16ae9b7bfce8e7cc36f20a38084fa25469
686Author: Adam Jackson <ajax@nwnk.net>
687Date:   Wed Jul 20 19:31:51 2005 +0000
688
689    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
690        configure cache, you cache it, and the cached value is probably wrong.
691
692commit c0570ffdfa9ef913b5132b2069dd69491f77a8f8
693Author: Matthieu Herrb <matthieu.herrb@laas.fr>
694Date:   Sun Jul 17 20:11:01 2005 +0000
695
696    fix rules to work with non-GNU make and outside of $srcdir
697
698commit 29fba3a480ab1b4168d75ed92c8150851dddd805
699Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
700Date:   Sat Jul 16 22:07:13 2005 +0000
701
702    Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get
703        HAS_MKSTEMP defined in modular builds.
704
705commit 63e81296232ec5fdd6529a7d5d4342186bbec2f8
706Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
707Date:   Sat Jul 16 21:59:14 2005 +0000
708
709    Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection
710        against tempfile race conditions in many places)
711
712commit 2e6a393e7b0f02e8f58a3005411ae22488965e28
713Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
714Date:   Thu Jul 14 22:36:06 2005 +0000
715
716    Add _BSD_SOURCE - patch from Stefan Dirsch
717
718commit 300a4fcbfaef76f78dbb98c9868fa85da1604ccf
719Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
720Date:   Thu Jul 14 22:35:37 2005 +0000
721
722    Add makefile that CVS ate - patch from Stefan Dirsch
723
724commit 1cb0150431562d729342c427129732b217526bab
725Author: Daniel Stone <daniel@fooishbar.org>
726Date:   Mon Jul 11 22:51:03 2005 +0000
727
728    Bug #3754: Fix window misplacement in twm. (Christopher Mario Mae)
729
730commit 682eaa7cd21e32f70d909aae7d4828c9f4ea9dd1
731Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
732Date:   Wed Jun 29 19:15:03 2005 +0000
733
734    Add buildsystem for twm
735
736commit 718daab22b08a1ab10145f9284dedef069ffb758
737Author: Roland Mainz <roland.mainz@nrubsig.org>
738Date:   Fri Mar 11 21:18:12 2005 +0000
739
740    xc/programs/twm/Imakefile
741    xc/programs/twm/twm.c
742    //bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2087
743        (https://bugs.freedesktop.org/attachment.cgi?id=2087) Make twm ignore
744        print screens to avoid that users accidentally warp on a non-video
745        screen (which are not visible on any monitor) when the Xserver has both
746        video and print screens. (This includes also a small cleanup of
747        xdpyinfo where parts of the print screen test code comes from) Patch by
748        Julien Lafon <julien.lafon@gmail.com> (MIT/X.org license).
749
750commit 6e96bd376c916c150a055447d4badc1fae84e47a
751Author: Roland Mainz <roland.mainz@nrubsig.org>
752Date:   Fri Mar 11 16:23:00 2005 +0000
753
754    xc/programs/twm/add_window.c
755    xc/programs/twm/cursor.c
756    xc/programs/twm/events.c
757    xc/programs/twm/gc.c
758    xc/programs/twm/gram.y
759    xc/programs/twm/iconmgr.c
760    xc/programs/twm/icons.c
761    xc/programs/twm/list.c
762    xc/programs/twm/menus.c
763    xc/programs/twm/parse.c
764    xc/programs/twm/resize.c
765    xc/programs/twm/twm.c
766    //bugs.freedesktop.org/show_bug.cgi?id=2566) attachment #2083
767        (https://bugs.freedesktop.org/attachment.cgi?id=2083) ANSI-fy twm
768        window manager code. The conversion preserves the comments which
769        annotate variables and function arguments (these have been moved into
770        doxygen(esque?) "stubs" above each function. Patch by Mike Owens
771        <etc@filespanker.com>.
772
773commit d045cb62c62f09978798510deaec0acae0a6fb4d
774Author: Egbert Eich <eich@suse.de>
775Date:   Fri Apr 23 19:54:37 2004 +0000
776
777    Merging XORG-CURRENT into trunk
778
779commit f39f4c810b3c2071f8786abc32317149373a3e1d
780Author: Egbert Eich <eich@suse.de>
781Date:   Sun Mar 14 08:34:58 2004 +0000
782
783    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
784
785commit 58d942b4a0b4ed9b99a4dd6501bf4facbcaca670
786Author: Egbert Eich <eich@suse.de>
787Date:   Wed Mar 3 12:12:54 2004 +0000
788
789    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
790
791commit ee477f9d9c4aff3f52d9a65e3b11b55dd15b31d1
792Author: Egbert Eich <eich@suse.de>
793Date:   Thu Feb 26 13:36:16 2004 +0000
794
795    readding XFree86's cvs IDs
796
797commit e8c79f538be77c2637e8d2e1ada443d9a2f0e262
798Author: Egbert Eich <eich@suse.de>
799Date:   Thu Feb 26 09:23:58 2004 +0000
800
801    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
802
803commit e51f25fbe75b222b24f4628b2408e899fa4748d7
804Author: Kaleb Keithley <kaleb@freedesktop.org>
805Date:   Tue Nov 25 19:29:03 2003 +0000
806
807    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
808
809commit 4b339f0a4311b4db171584bc6671292a9052665a
810Author: Kaleb Keithley <kaleb@freedesktop.org>
811Date:   Fri Nov 14 16:48:58 2003 +0000
812
813    XFree86 4.3.0.1
814
815commit cfa9fa24253b5ef8045172852509be413d7b00ca
816Author: Kaleb Keithley <kaleb@freedesktop.org>
817Date:   Fri Nov 14 16:48:58 2003 +0000
818
819    Initial revision
820
821commit 03cb750f7935722ab77b77128ca5221c5baf8818
822Author: Kaleb Keithley <kaleb@freedesktop.org>
823Date:   Fri Nov 14 15:54:53 2003 +0000
824
825    R6.6 is the Xorg base-line
826