ChangeLog revision b8414663
1commit 352f4da35ea9c0cce3812f96279315e31d1420ec
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Thu Apr 16 22:27:46 2015 -0700
4
5    setxkbmap 1.3.1
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit c0eed7d27baad8078bc68f62dfea1e94116e4d67
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Mon Jun 2 21:16:31 2014 -0700
12
13    autogen.sh: Honor NOCONFIGURE=1
14    
15    See http://people.gnome.org/~walters/docs/build-api.txt
16    
17    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
18
19commit 984218d77c14128039d16db34a997263402d97f1
20Author: Alan Coopersmith <alan.coopersmith@oracle.com>
21Date:   Mon Jun 2 21:16:31 2014 -0700
22
23    configure: Drop AM_MAINTAINER_MODE
24    
25    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
26
27commit bbd3f086e2a4c90d0b44c02c92cf778a36ed97ef
28Author: Alan Coopersmith <alan.coopersmith@oracle.com>
29Date:   Mon Jun 2 21:16:11 2014 -0700
30
31    config: Add missing AC_CONFIG_SRCDIR
32    
33    Regroup AC statements under the Autoconf initialization section.
34    Regroup AM statements under the Automake initialization section.
35    
36    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
37
38commit 56346c72127303a445a273217f7633c2afb29cfc
39Author: Benno Schulenberg <bensberg@justemail.net>
40Date:   Thu Aug 29 12:31:37 2013 +0200
41
42    Fixing a small mistake in the man page -- s/comp/map/.
43    
44    And seizing the opportunity to tweak some of the wording.
45    
46    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
47    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
48    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
49
50commit cd14edbc245ca7a34c6a7143ac40014a5bede217
51Author: Benno Schulenberg <bensberg@justemail.net>
52Date:   Thu Aug 29 12:18:20 2013 +0200
53
54    Printing the program's version number on -version.
55    
56    Also unwrap a help-text line, as it looks neater and stays within
57    80 characters, and alphabetize the -help option in the man page.
58    
59    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
60    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
61    
62    [squashed in: include "config.h" directive]
63    
64    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
65
66commit f5ffd59830ff5f4a4f337d56e7e8b4a1930a46e8
67Author: Stéphane Aulery <lkppo@free.fr>
68Date:   Tue Jul 2 00:06:55 2013 +0200
69
70    Ensure consistency between the manpage and the output of the -h option
71    
72    This is in addition to the correction [1] for bug #524510 reported by Debian [2].
73    
74    [1] http://cgit.freedesktop.org/xorg/app/setxkbmap/commit/?id=2011f509c56b73cc62105c689d702f279f522017
75    
76    [2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524510
77    
78    Signed-off-by: Stéphane Aulery <lkppo@free.fr>
79    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
80    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
81
82commit cdc2551ef6d644073e3583177ead69ed32045bae
83Author: Alan Coopersmith <alan.coopersmith@oracle.com>
84Date:   Sun Feb 10 20:31:57 2013 -0800
85
86    Use C99 struct initializer for cmdNames in applyComponentNames
87    
88    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
89    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
90
91commit 19734cfead4b8c7a5d592fe0fe5634cb4a1ed34d
92Author: Alan Coopersmith <alan.coopersmith@oracle.com>
93Date:   Sun Feb 10 20:31:56 2013 -0800
94
95    Make len a size_t instead of converting back & forth to an int
96    
97    Gets rid of a number of clang warnings:
98    setxkbmap.c:689:28: warning: implicit conversion loses integer precision:
99        'unsigned long' to 'int' [-Wshorten-64-to-32]
100            len = strlen(orig) + 1;
101                ~ ~~~~~~~~~~~~~^~~
102    setxkbmap.c:701:39: warning: implicit conversion changes signedness:
103        'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
104            orig = (char *) realloc(orig, len);
105                            ~~~~~~~       ^~~
106    setxkbmap.c:707:32: warning: implicit conversion changes signedness:
107        'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
108            orig = (char *) calloc(len, 1);
109                            ~~~~~~ ^~~
110    
111    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
112    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
113
114commit 3d5ce417ba1a8973b04516b0395f15e6500c60ea
115Author: Alan Coopersmith <alan.coopersmith@oracle.com>
116Date:   Sun Feb 10 20:31:55 2013 -0800
117
118    Move global rules variable into applyRules, the only function that uses it
119    
120    Clears gcc warning:
121    setxkbmap.c: In function `tryLoadRules':
122    setxkbmap.c:811: warning: declaration of 'rules' shadows a global declaration
123    setxkbmap.c:132: warning: shadowed declaration is here
124    
125    No longer marked static, since the function is called exactly once, so
126    storing the value across calls seems pointless.
127    
128    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
129    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
130
131commit cac515f47457d9acac39ca43316f9e2af6a5b1b9
132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
133Date:   Thu Mar 22 21:34:26 2012 -0700
134
135    setxkbmap 1.3.0
136    
137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
138
139commit 7500a5be5333999b50c564841772daf85b546a37
140Author: Mehdi Dogguy <mehdi@debian.org>
141Date:   Fri Feb 3 11:38:03 2012 +0100
142
143    Mention xkeyboard-config(7) in setxkbmap(1)
144    
145    xkeyboard-config lists known keyboard models, layouts, variants,
146    etc... which are needed to be able to correctly use setxkbmap.
147    
148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
149
150commit 9a8916cff1f7d20f646d9a80931a5a40ac1592a6
151Author: Alan Coopersmith <alan.coopersmith@oracle.com>
152Date:   Mon Sep 26 16:07:58 2011 -0700
153
154    Add const attributes to fix gcc -Wwrite-strings warnings
155    
156    Fixes many, but not all, of the warnings raised by this option
157    
158    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
159    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
160
161commit db4fb2da6739a88a4f9773064f7de6c71342ac1b
162Author: Van de Bugger <van.de.bugger@gmail.com>
163Date:   Fri Feb 25 23:55:57 2011 +0300
164
165    Minor style changes in help message.
166    
167    1.  `args' renamed to `options'. (xkbcomp and gcc name these entities
168        `options').
169    2.  `Where legal args are:' replaced with `Options:'. (Short and
170        correct. As I remember, GNU does not recommend to use word
171        `legal' unless it related to law and lawyers).
172    3.  Option descriptions shifted right by 2 space. (Like gcc.)
173    
174    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
175    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
176
177commit 6ce6ab87472b7d227393ea1058424439168683cc
178Author: Van de Bugger <van.de.bugger@gmail.com>
179Date:   Mon Feb 28 03:35:25 2011 +0300
180
181    Few messages added for easier troubleshooting.
182    
183    If setxkbmap fails to load rules file, it is not possible to find
184    out where setxkbmap looks for it. Increasing verbosity level does
185    not help:
186    
187        $ ./setxkbmap -v 10
188        Setting verbose level to 10
189        locale is C
190        Couldn't find rules file (evdev)
191    
192    The problem fixed by adding two messages: before loading file and
193    after successful loading. Messages are displayed if verbosity level
194    is 8 or higher:
195    
196        $ ./setxkbmap -v 10
197        Setting verbose level to 10
198        locale is C
199        Trying to load rules file ./rules/evdev...
200        Trying to load rules file /usr/local/share/X11/xkb/rules/evdev...
201        Couldn't find rules file (evdev)
202    
203    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
204    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
205
206commit e4387240c3c78014561fc2821cba5a944449599f
207Author: Van de Bugger <van.de.bugger@gmail.com>
208Date:   Sat Feb 26 02:32:29 2011 +0300
209
210    Consistent handling of memory allocation errors.
211    
212    Macro `OOM' ("Out of memory") introduced for checking and reporting
213    memory allocation errors. The same macro is used in all the cases.
214    
215    One check was missed in original source; fixed.
216    
217    Changes after patch review:
218    
219        1. `OOM' macro uses `do ... while (0)'.
220        2. `exit(-1)', not `abort()'.
221    
222    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
223    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
224
225commit a9f39af2f4fa2add26d332914e500c6cfa57ef5d
226Author: Alexandr Shadchin <alexandr.shadchin@gmail.com>
227Date:   Fri Feb 25 09:43:08 2011 +0500
228
229    Removed unused arg subdir in function findFileInPath()
230    
231    Signed-off-by: Alexandr Shadchin <Alexandr.Shadchin@gmail.com>
232    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
233    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
234
235commit 2e16de3e81e0bbaa85462b4750fa9c3904658627
236Author: Van de Bugger <van.de.bugger@gmail.com>
237Date:   Fri Feb 18 23:21:34 2011 +0300
238
239    Minor style fixes.
240    
241    Few tabs replaced with spaces; pointers are written as
242    "list_t *list" (no space between asterisk and variable name).
243    
244    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
245
246commit 9ee200aa234c02d5beb843f58def9cdb3fa04156
247Author: Lev Nezhdanov <lev.nezhdanov@gmail.com>
248Date:   Fri Feb 18 23:00:55 2011 +0300
249
250    Set of macros converted to enum type.
251    
252    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
253    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
254
255commit 0c411a3f8697ce756847fe1c2abc8d07a8a51d09
256Author: Peter Hutterer <peter.hutterer@who-t.net>
257Date:   Fri Feb 18 13:14:53 2011 +1000
258
259    man: multiple layouts can be specified (#34118)
260    
261    Same applies to variant.
262    
263    X.Org Bug 34118 <http://bugs.freedesktop.org/show_bug.cgi?id=34118>
264    
265    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
266    Reviewed-by: Julien Cristau <jcristau@debian.org>
267
268commit ae3a9348d5d42448ea6a73940a2ed5e19090a00d
269Author: Van de Bugger <van.de.bugger@gmail.com>
270Date:   Wed Feb 16 01:33:21 2011 +0300
271
272    Refactoring the help message.
273    
274    1. Entire help message is printed at once (not line-by-line).
275    2. Brackets around argumnets of -I option removed, since argument is mandatory.
276    3. Added a space after comma in.
277    
278    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
279
280commit 0b0763e1f444cabfab8a76c73d8d96892c72433e
281Author: Van de Bugger <van.de.bugger@gmail.com>
282Date:   Tue Feb 15 23:51:16 2011 +0300
283
284    Bug in searching config files fixed.
285    
286    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
287
288commit 130998b172d892ea94daac2a06b7422977fad135
289Author: Van de Bugger <van.de.bugger@gmail.com>
290Date:   Mon Feb 14 01:59:55 2011 +0300
291
292    Data refactored: list_t introduced to keep list and its sizes together.
293    
294    From 49380ed12a0c451207cf5a12ca2c1e0c9c16c9e6 Mon Sep 17 00:00:00 2001
295    From: Van de Bugger <van.de.bugger@gmail.com>
296    Date: Mon, 14 Feb 2011 01:45:23 +0300
297    Subject: [PATCH setxkbmap] Data refactored: list_t introduced to keep list and its sizes together.
298    
299    In older code there were 3 separate global variables: szOptions, numOptions,
300    and options. All 3 variables are related: options is a list (array) of items,
301    szOptions is the allocated size and numOptions is the number of used elements.
302    3 more variables (szInclPath, numInclPath, inclPath) represent another list.
303    
304    list_t structure combines related info (pointer to array, allocated size, and
305    number of used elements) together.
306    
307    Few functions changed to accept list_t argument instead of separated list and sizes.
308    
309    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
310
311commit 98c159d97a5c628b8293b86ddf49d59a17c6c3a7
312Author: Van de Bugger <van.de.bugger@gmail.com>
313Date:   Mon Feb 14 00:48:34 2011 +0300
314
315    Data refactored: 3 separate arrays and set of macros merged into a struct.
316    
317    Bunch of XXX_NDX defines, and 3 arrays: `svName', `svSrc' and `svValue' are
318    merged into one structure. Interace of 2 functions `trySetString' and
319    `setOptString' changed: instead of receiving `which' argument of `int' type
320    (an index to those arrays) the functions now receive `setting' argument, which
321    hold everything about the setting: `name', `src', and `value', so the functions
322    do not use global variables any more.
323    
324    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
325    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
326
327commit e2bfdaacd980ff290526d386e1be346cb14cf440
328Author: Van de Bugger <van.de.bugger@gmail.com>
329Date:   Mon Feb 14 00:29:49 2011 +0300
330
331    Tabs replaced with spaces; trailing spaces deleted.
332    
333    Signed-off-by: Van de Bugger <van.de.bugger@gmail.com>
334    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
335
336commit edb6fd1726146a85f166ffa34e361d88e8d386e8
337Author: Alan Coopersmith <alan.coopersmith@oracle.com>
338Date:   Thu Feb 10 23:20:32 2011 -0800
339
340    assigned value never used: "next" set at setxkbmap.c(654)
341    
342    If we go through the loop, next is overwritten on the very first line.
343    If we don't go through the loop, next is never referenced again.
344    
345    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
346    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
347
348commit ae3cfee9bd393d28159072a67360de57e64f48cd
349Author: Alan Coopersmith <alan.coopersmith@oracle.com>
350Date:   Thu Feb 10 22:53:46 2011 -0800
351
352    Use snprintf instead of trying to pre-measure sprintf result sizes.
353    
354    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
355    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
356
357commit fce78beab4b5f7ee99bf66d35c36b7ed12871d5a
358Author: Alan Coopersmith <alan.coopersmith@oracle.com>
359Date:   Thu Feb 10 22:44:43 2011 -0800
360
361    Bug 34151: Potential bug and buffer overflow due to misused rules filename
362    
363    https://bugs.freedesktop.org/show_bug.cgi?id=34151
364    
365    Use rfName consistently, instead of sometimes reverting to svValue[RULES_NDX]
366    
367    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
368    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
369
370commit 2011f509c56b73cc62105c689d702f279f522017
371Author: Alan Coopersmith <alan.coopersmith@oracle.com>
372Date:   Wed Feb 9 23:42:44 2011 -0800
373
374    Bug 34117: setxkbmap -I dir not accepted, despite man page
375    
376    Easy enough to accept the syntax documented in the man page, so accept
377    the -I flag with or without a space between -I and the directory argument.
378    
379    https://bugs.freedesktop.org/show_bug.cgi?id=34117
380    
381    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
382    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
383    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
384
385commit 60cd11cf0b83176e7c542e51a7e6a3eaea58401c
386Author: Gaetan Nadon <memsize@videotron.ca>
387Date:   Wed Jan 19 10:06:55 2011 -0500
388
389    config: move man pages into their own directory
390    
391    Use services provided by XORG_MANPAGE_SECTIONS.
392    Use standard Makefile for man pages.
393    
394    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
395
396commit 7bacea73e67e6882cef51840bb98d1bafb8f2291
397Author: Stuart Kreitman <stuart.kreitman@oracle.com>
398Date:   Tue Jan 18 22:33:34 2011 -0800
399
400    Fix crash when when -device is specified without argument
401    
402    http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6971649
403    
404    Signed-off-by: Stuart Kreitman <stuart.kreitman@oracle.com>
405    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
406    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
407    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
408
409commit 059eb4e0745b8a00f3d456c539eb0df714ed1b90
410Author: Gaetan Nadon <memsize@videotron.ca>
411Date:   Thu Jan 13 11:15:47 2011 -0500
412
413    man: remove trailing spaces and tabs
414    
415    Using s/[ \t]*$//
416    
417    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
418
419commit e941a6947a7a893eee502a7efd57bcb04b837e65
420Author: Gaetan Nadon <memsize@videotron.ca>
421Date:   Wed Jan 12 16:28:02 2011 -0500
422
423    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
424    
425    This silences an Autoconf warning
426
427commit 6e3ff02b559dc92ed9b7ca7d9a629e389a619a73
428Author: Gaetan Nadon <memsize@videotron.ca>
429Date:   Wed Jan 12 15:29:49 2011 -0500
430
431    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
432    
433    This silences an Automake warning.
434    
435    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
436
437commit 12131d9f8a14a62e592f4db9193ed29593511d57
438Author: Alan Coopersmith <alan.coopersmith@oracle.com>
439Date:   Wed Sep 22 20:44:34 2010 -0700
440
441    setxkbmap 1.2.0
442    
443    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
444
445commit 9c2fe7cf4573a154032c4058d3dda4cc737f5efa
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Wed Sep 22 20:40:23 2010 -0700
448
449    config: remove AC_SUBST of CFLAGS & LIBS that PKG_CHECK_MODULES handles
450    
451    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
452
453commit bbbe661b5b111836f9fb8adf9c3c329480008d60
454Author: Alan Coopersmith <alan.coopersmith@oracle.com>
455Date:   Wed Sep 22 20:39:41 2010 -0700
456
457    config: Remove AC_PROG_CC & AC_PROG_INSTALL that XORG_DEFAULT_OPTIONS provide
458    
459    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
460
461commit d4ed95d3574f8dd562c4af527bf5309d3e50a8d8
462Author: Gaetan Nadon <memsize@videotron.ca>
463Date:   Tue Jul 20 18:45:18 2010 -0400
464
465    config: update AC_PREREQ statement to 2.60
466    
467    Unrelated to the previous patches, the new value simply reflects
468    the reality that the minimum level for autoconf to configure
469    all x.org modules is 2.60 dated June 2006.
470    
471    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
472    
473    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
474
475commit 2f16193cb1926f1a1257b53e250598d6bb770eb1
476Author: Alan Coopersmith <alan.coopersmith@oracle.com>
477Date:   Fri Jul 23 13:58:46 2010 -0700
478
479    config: upgrade to util-macros 1.8 for additional man page support
480    
481    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
482    The value of MAN_SUBST is the same for all X.Org packages.
483    
484    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
485    Use platform appropriate version of sed.
486    
487    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
488
489commit 63327e1aae13e86b840bbbc816cb8cf9661ad4f9
490Author: Gaetan Nadon <memsize@videotron.ca>
491Date:   Thu Jan 7 18:03:56 2010 -0500
492
493    COPYING: replace stub with actual copyright notice
494    
495    Refer to setxkbmap.c
496    Silicon Graphics Computer Systems, Inc.
497    
498    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
499
500commit 1447b0fe61683dcc6ed72d9e833474501ce2860c
501Author: Gaetan Nadon <memsize@videotron.ca>
502Date:   Thu Nov 26 09:19:52 2009 -0500
503
504    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
505    
506    Now that the INSTALL file is generated.
507    Allows running make maintainer-clean.
508
509commit 5c85e2069428229d6146681ba22822238c488c4a
510Author: Gaetan Nadon <memsize@videotron.ca>
511Date:   Wed Oct 28 14:09:07 2009 -0400
512
513    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
514    
515    Add missing INSTALL file. Use standard GNU file on building tarball
516    README may have been updated
517    Remove AUTHORS file as it is empty and no content available yet.
518    Remove NEWS file as it is empty and no content available yet.
519
520commit be882dbbcac30a347094286f93b8cc2459ed3b9b
521Author: Gaetan Nadon <memsize@videotron.ca>
522Date:   Mon Oct 26 22:08:38 2009 -0400
523
524    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
525    
526    ChangeLog filename is known to Automake and requires no further
527    coding in the makefile.
528
529commit 815fdaad442dbafb9b0f6c240486a9b92594b432
530Author: Gaetan Nadon <memsize@videotron.ca>
531Date:   Thu Oct 22 12:34:14 2009 -0400
532
533    .gitignore: use common defaults with custom section # 24239
534    
535    Using common defaults will reduce errors and maintenance.
536    Only the very small or inexistent custom section need periodic maintenance
537    when the structure of the component changes. Do not edit defaults.
538
539commit 86d876cf4baff71f735b3dbe823333f6fd94d8a0
540Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
541Date:   Wed Oct 21 12:47:19 2009 -0700
542
543    This is not a GNU project, so declare it foreign.
544    
545    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
546    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
547    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
548    > > was quite annoying to work around since 'autoreconf -fvi' replaces
549    > > it and git wants to commit it.  Should these files even be in git?
550    > > Can I nuke them for the betterment of humanity and since they get
551    > > created by autoreconf anyways?
552    >
553    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
554    
555    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
556    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
557    of the INSTALL file. It is also part of the 24206 solution.
558    
559    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
560
561commit c229a714fc1fcef5d6189d6fae92b9899e8f0495
562Author: Alan Coopersmith <alan.coopersmith@sun.com>
563Date:   Thu Oct 8 18:11:56 2009 -0700
564
565    Change default XKB rules file from "xorg" to "base"
566    
567    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
568
569commit 08fa8d42ec875802bbe34291b087abdc559f183e
570Author: Alan Coopersmith <alan.coopersmith@sun.com>
571Date:   Thu Oct 8 18:07:43 2009 -0700
572
573    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
574    
575    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
576
577commit 36288deba168dd2ca94630ffeab69f85461e33f8
578Author: Alan Coopersmith <alan.coopersmith@sun.com>
579Date:   Thu Oct 8 16:52:11 2009 -0700
580
581    Add -query option to print current RLMVO settings
582    
583    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
584    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
585
586commit 41416fdee30424d78771511bea39eef95f718c2a
587Author: Alan Coopersmith <alan.coopersmith@sun.com>
588Date:   Thu Oct 1 14:54:19 2009 -0700
589
590    Add README with pointers to mailing lists, bugzilla, & git
591    
592    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
593
594commit 3a5518589ffb7d24e164dd9616cd1fbb8200f39a
595Author: Alan Coopersmith <alan.coopersmith@sun.com>
596Date:   Fri Jul 31 21:02:37 2009 -0700
597
598    Comment typo fix
599    
600    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
601
602commit 0f16d3da90c101e653b552dd3810b7c3092cb145
603Author: Peter Hutterer <peter.hutterer@who-t.net>
604Date:   Thu Jul 9 09:10:41 2009 +1000
605
606    Bump to 1.1.0
607
608commit 5dca07cec68fbfc75ef2002422215647ca5b8c03
609Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
610Date:   Mon Jan 19 15:54:41 2009 -0200
611
612    Ansification and compile warning fixes.
613    
614      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
615    make distcheck and all gcc 4.3 and sparse warnings.
616
617commit 4c3f466f67a7819a912a736f4f2a97262bdaf589
618Author: Peter Hutterer <peter.hutterer@redhat.com>
619Date:   Mon Dec 1 11:10:52 2008 +1000
620
621    Check return value of calloc and realloc. #18759 and #18760
622    
623    X.Org Bug <http://bugs.freedesktop.org/show_bug.cgi?id=18759>
624    X.Org Bug <http://bugs.freedesktop.org/show_bug.cgi?id=18760>
625    
626    Signed-off-by: Peter Hutterer <peter.hutterer@redhat.com>
627
628commit 3ba7cfd701d99b4b1fe1dd7eecd02d01c1dee74c
629Author: Peter Hutterer <peter.hutterer@redhat.com>
630Date:   Tue Aug 12 14:44:03 2008 +0930
631
632    Adding some explanatory comments.
633
634commit f8c511568040d84b7ddc0bca5ba20757719bd808
635Author: Peter Hutterer <peter.hutterer@redhat.com>
636Date:   Tue Aug 12 13:44:06 2008 +0930
637
638    Indent consistently.
639    
640    indent -cbi 0 -nprs -nut -npcs -i4 -bli 0 *.c *.h
641
642commit cb6160d289c7123f3bf0f708afed28f64c040daa
643Author: Peter Hutterer <peter.hutterer@redhat.com>
644Date:   Tue Aug 12 13:42:47 2008 +0930
645
646    Remove RCS tags.
647
648commit 5ced600eb9c1d4014bfc1e761190b869d59a4c4e
649Author: James Cloos <cloos@jhcloos.com>
650Date:   Thu Dec 6 15:51:05 2007 -0500
651
652    Add missing PHONY line for automatic ChangeLog generation
653
654commit 35d3e114ef3b0e6f56b38ddd9cac79e4c953ca85
655Author: Alan Coopersmith <alan.coopersmith@sun.com>
656Date:   Mon Jul 23 17:18:26 2007 -0700
657
658    Version bump: 1.0.4
659
660commit 0a9044e26d1f8a2517c8e000b6f3afb169999ff3
661Author: Alan Coopersmith <alan.coopersmith@sun.com>
662Date:   Mon Jul 23 16:45:21 2007 -0700
663
664    lint target needs to use AM_CFLAGS too
665
666commit c2a336b187e1f78c3bfa8fad0f2cade6cf06071d
667Author: Alan Coopersmith <alan.coopersmith@sun.com>
668Date:   Mon Jul 23 16:42:40 2007 -0700
669
670    Use AM_CFLAGS instead of setxkbmap_CFLAGS to avoid automake-1.10 warning
671    
672    Makefile.am:31: compiling `setxkbmap.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
673
674commit 75a5110558714d5f601235fdc5762aeef731f73d
675Author: Alan Coopersmith <alan.coopersmith@sun.com>
676Date:   Tue Apr 17 11:34:43 2007 -0700
677
678    Minor code cleanups (remove unused static and opencoding of strdup)
679
680commit f5eb468f0ca87917488bdd8bdecf9e31fce88945
681Author: Alan Coopersmith <alan.coopersmith@sun.com>
682Date:   Tue Apr 17 11:17:13 2007 -0700
683
684    Add rules for checking code with sparse/lint/etc.
685
686commit 2d43b8fa9b21bcf9f5c289ab1afba3e73c42f661
687Author: Alan Coopersmith <alan.coopersmith@sun.com>
688Date:   Mon Apr 16 20:34:31 2007 -0700
689
690    Replace static ChangeLog with dist-hook to generate from git log
691
692commit f7007821434313df1dc848a1e547922f65d4c7d5
693Author: Alan Coopersmith <alan.coopersmith@sun.com>
694Date:   Mon Apr 16 19:53:27 2007 -0700
695
696    More man page cleanups (grammatical nits, etc.)
697
698commit ca1e9f1cc9716a0cb751853cfb7b6b0ff6bb21d6
699Author: Alan Coopersmith <alan.coopersmith@sun.com>
700Date:   Mon Apr 16 19:43:31 2007 -0700
701
702    Bug 7841: setxkbmap man page doesn't describe all switches
703    
704    Added descriptions for -device, -I, -keycodes, and -verbose/-v.
705    
706    X.Org Bugzilla #7841 <https://bugs.freedesktop.org/show_bug.cgi?id=7841>
707    Reported upstream from
708    Debian BTS #252631 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=252631>
709
710commit 1dae768e463ddb3bbccd05291867eb1f7fcc6d97
711Author: Alan Coopersmith <alan.coopersmith@sun.com>
712Date:   Mon Apr 16 19:22:18 2007 -0700
713
714    renamed: .cvsignore -> .gitignore
715
716commit e1424c8c8e5c0aeeba304d20cbe7c475c701c641
717Author: Alan Coopersmith <alan.coopersmith@sun.com>
718Date:   Mon Apr 16 19:21:52 2007 -0700
719
720    Correct XKB data files path in man page
721    
722    Use path found by configure instead of hardcoding __projectroot__/lib/X11/xkb
723
724commit c10ca0d0f886f01f48f6090eed0ed6d0364c0e47
725Author: Daniel Stone <daniel@fooishbar.org>
726Date:   Thu Nov 2 03:39:09 2006 +0200
727
728    bump to 1.0.3
729
730commit 8e975edfadc068f9cc603d7c8b5f27067371161f
731Author: Daniel Stone <daniel@fooishbar.org>
732Date:   Sun Oct 15 21:11:13 2006 +0300
733
734    add support for extended devices
735    Add a -device parameter, which allows setting the map on arbitary extended
736    devices.
737
738commit 7a56fb2fa2f0d49a8544f92b3821304f6ae7d78d
739Author: Daniel Stone <daniel@fooishbar.org>
740Date:   Sun Oct 15 20:52:14 2006 +0300
741
742    defaults: make the defaults a bit more modern
743    Fix default path, bump default model from pc101 to pc105.
744
745commit 6b195148c00b990923ad5de4d021d4eeacbede68
746Author: Daniel Stone <daniel@fooishbar.org>
747Date:   Fri Mar 10 09:09:12 2006 +0000
748
749    Bump to 1.0.2; release.
750    Initialise vd.variant and vd.variant to NULL when failing to get the active
751        RMLVO components from the server.
752
753commit 986fa213931e8d86ff0c1db7d6fe684b1fb92794
754Author: Kevin E Martin <kem@kem.org>
755Date:   Wed Dec 21 02:29:47 2005 +0000
756
757    Update package version for X11R7 release.
758
759commit f78664751580af7600ff56ba7893e468049582ef
760Author: Adam Jackson <ajax@nwnk.net>
761Date:   Mon Dec 19 16:22:41 2005 +0000
762
763    Stub COPYING files
764
765commit 18a904ff67a98ccd870f0d4124fa2286c6a9dcd3
766Author: Kevin E Martin <kem@kem.org>
767Date:   Thu Dec 15 00:24:04 2005 +0000
768
769    Update package version number for final X11R7 release candidate.
770
771commit 9169e024c530c9ef60cd96263a9fe6000578ec0f
772Author: Kevin E Martin <kem@kem.org>
773Date:   Thu Dec 8 17:55:17 2005 +0000
774
775    Add configure options to allow hard-coded paths to be changed.
776
777commit 5e37a2d4e4b23b6f4d40e5d4f3d2d1520c5cf727
778Author: Kevin E Martin <kem@kem.org>
779Date:   Tue Dec 6 22:48:18 2005 +0000
780
781    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
782
783commit 017cc2da18c70b6fcf16444b1236479999ff6f24
784Author: Kevin E Martin <kem@kem.org>
785Date:   Sat Dec 3 05:49:17 2005 +0000
786
787    Update package version number for X11R7 RC3 release.
788
789commit 0207f788fa51e336dcf9d93dd2b814829beca9d7
790Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
791Date:   Mon Nov 28 22:01:38 2005 +0000
792
793    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
794        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
795
796commit dc9758a53f1d3495dc8e020f7738dc985c131b1e
797Author: Eric Anholt <anholt@freebsd.org>
798Date:   Mon Nov 21 10:34:57 2005 +0000
799
800    Another pass at .cvsignores for apps.
801
802commit e8fea23dac64d343be9af90777b77c4ece76b1ea
803Author: Eric Anholt <anholt@freebsd.org>
804Date:   Sun Nov 20 22:08:49 2005 +0000
805
806    Add/improve .cvsignore files for apps.
807
808commit fbcb6a1b247f6789cf5d2f16e31b3266473fffa4
809Author: Kevin E Martin <kem@kem.org>
810Date:   Wed Nov 9 21:09:20 2005 +0000
811
812    Update package version number for X11R7 RC2 release.
813
814commit ee92bd69fbe2b31629a1f9d87d464113ca8f0721
815Author: Donnie Berkholz <spyderous@gentoo.org>
816Date:   Thu Oct 20 22:17:26 2005 +0000
817
818    Bug #4830 <https://bugs.freedesktop.org/show_bug.cgi?id=4830> Set
819        DFLT_XKB_CONFIG_ROOT instead of using hard-coded default.
820
821commit 7909f46a7ba31944be57b1574f70da82d8bfd385
822Author: Kevin E Martin <kem@kem.org>
823Date:   Wed Oct 19 02:47:50 2005 +0000
824
825    Update package version number for RC1 release.
826
827commit c856b9d6932fce0a199ca094a9130c0cef1bb404
828Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
829Date:   Mon Oct 17 23:56:20 2005 +0000
830
831    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
832        work better with BSD make
833
834commit ef156a1dd209e48588200154eb98d97d494c6b85
835Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
836Date:   Fri Oct 14 00:25:42 2005 +0000
837
838    Use sed to fill in variables in man page
839
840commit 8bfb654c46fc5a27183ff6109aa17c33f0350466
841Author: Kevin E Martin <kem@kem.org>
842Date:   Fri Jul 29 21:22:30 2005 +0000
843
844    Various changes preparing packages for RC0:
845    - Verify and update package version numbers as needed
846    - Implement versioning scheme
847    - Change bug address to point to bugzilla bug entry form
848    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
849        reenable it)
850    - Fix makedepend to use pkgconfig and pass distcheck
851    - Update build script to build macros first
852    - Update modular Xorg version
853
854commit a727d14743a3d18723d31ee42f9e54c1a4e98599
855Author: Daniel Stone <daniel@fooishbar.org>
856Date:   Wed Jul 27 01:54:17 2005 +0000
857
858    Move manpages to section 1 instead of section m.
859
860commit 5273d6fadca1eb3aca9d406a81b80aba9c32bb6a
861Author: Adam Jackson <ajax@nwnk.net>
862Date:   Wed Jul 20 19:31:50 2005 +0000
863
864    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
865        configure cache, you cache it, and the cached value is probably wrong.
866
867commit e04d3454c2e7b0390ccf61d9f6e0ca3d2a04dfb6
868Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
869Date:   Wed Jul 6 20:33:26 2005 +0000
870
871    Build system for setxkbmap
872
873commit 81fa26b0cde086ec0707096a942d773e7d6411ee
874Author: Egbert Eich <eich@suse.de>
875Date:   Fri Apr 23 19:54:37 2004 +0000
876
877    Merging XORG-CURRENT into trunk
878
879commit 99566aece09d0b750267f48dc39552bbd1aae4bf
880Author: Egbert Eich <eich@suse.de>
881Date:   Sun Mar 14 08:34:56 2004 +0000
882
883    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
884
885commit 3994d4ee8ba772d63092e4cc2a14973af105dd97
886Author: Egbert Eich <eich@suse.de>
887Date:   Wed Mar 3 12:12:54 2004 +0000
888
889    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
890
891commit d719f5ad11295655fb9d757e4172cecb5e99dc57
892Author: Egbert Eich <eich@suse.de>
893Date:   Thu Feb 26 13:36:15 2004 +0000
894
895    readding XFree86's cvs IDs
896
897commit 4d09b800cde7710fb05491fcd7bb1d71b9e31054
898Author: Egbert Eich <eich@suse.de>
899Date:   Thu Feb 26 09:23:57 2004 +0000
900
901    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
902
903commit a64d8c5f7f6604d323519090ba339900d9d585f2
904Author: Kaleb Keithley <kaleb@freedesktop.org>
905Date:   Tue Nov 25 19:29:03 2003 +0000
906
907    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
908
909commit bff1de092debc890f15dacc871698b9679db366a
910Author: Kaleb Keithley <kaleb@freedesktop.org>
911Date:   Fri Nov 14 16:48:58 2003 +0000
912
913    XFree86 4.3.0.1
914
915commit cb8f1b8c472547e0f9804dc29c2f658772056faf
916Author: Kaleb Keithley <kaleb@freedesktop.org>
917Date:   Fri Nov 14 16:48:58 2003 +0000
918
919    Initial revision
920