upload tizen2.0 source
[framework/uifw/xorg/lib/libxkbfile.git] / ChangeLog
1 commit 5e3da29093ff5d5b6b8805467a523d5cb7663965
2 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3 Date:   Wed Mar 7 20:37:20 2012 -0800
4
5     libxkbfile 1.0.8
6
7     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9 commit 7b6123644fe23c2eb9816cf00729253b2dd53b23
10 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11 Date:   Wed Sep 28 18:17:15 2011 -0700
12
13     Add const attributes to fix gcc -Wwrite-strings warnings
14
15     Does not fix all of them, as some affect the API and thus need more analysis.
16
17     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
18     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
19
20 commit 0c2c504819b8788075115f848343bd45a3bb6605
21 Author: Jeremy Huddleston <jeremyhu@apple.com>
22 Date:   Fri Nov 11 10:37:49 2011 -0800
23
24     Include strings.h for strcasecmp
25
26     Our minimum requirement for X11 is currently Unix98.  Unix98 provides
27     strcasecmp in <strings.h>.  This commit fixes implicit declarations
28     of this function on systems that closely adhere to the standard.
29
30     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
31
32 commit 9ffdecdfa0a832a129a97735eaf1d22ec6defc13
33 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
34 Date:   Fri Sep 16 22:45:06 2011 -0700
35
36     Strip trailing whitespace
37
38     Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
39     git diff -w & git diff -b show no diffs from this change
40
41     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
42
43 commit cfc92c9b8e5f511010a2e406b147dec3ce64c6fd
44 Author: Gaetan Nadon <memsize@videotron.ca>
45 Date:   Wed Feb 2 11:43:46 2011 -0500
46
47     config: comment, minor upgrade, quote and layout configure.ac
48
49     Group statements per section as per Autoconf standard layout
50     Quote statements where appropriate.
51     Autoconf recommends not using dnl instead of # for comments
52
53     Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
54     Add AC_CONFIG_SRCDIR([Makefile.am])
55     Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS
56     Update minimum version of util-macros to at least 1.8.
57     No functional configuration changes
58
59     This helps automated maintenance and release activities.
60     Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
61
62 commit f83b3bda908cd6d0e15287d15739344620f12d27
63 Author: Gaetan Nadon <memsize@videotron.ca>
64 Date:   Fri Jan 28 19:41:37 2011 -0500
65
66     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
67
68     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
69
70 commit edc2a2beea14adef6c833bef456474039e2afab2
71 Author: Gaetan Nadon <memsize@videotron.ca>
72 Date:   Thu Jan 27 18:50:15 2011 -0500
73
74     config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
75
76     XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
77     AC_PROG_C_C99. This sets gcc with -std=gnu99.
78     If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
79
80     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
81
82 commit 5eea77b2c35c10baf899d2b03a85a462fdcf8f93
83 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
84 Date:   Fri Oct 29 18:16:00 2010 -0700
85
86     libxkbfile 1.0.7
87     
88     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
89
90 commit ce593fce1f7930135d1c52711ef1945a3e7418b0
91 Author: Jesse Adkins <jesserayadkins@gmail.com>
92 Date:   Tue Sep 28 13:30:04 2010 -0700
93
94     Purge cvs tags.
95     
96     Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
97     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
98
99 commit 57c03e52e6b4e3ed54df5fdd778865467d08e119
100 Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
101 Date:   Thu Jul 1 06:59:48 2010 -0300
102
103     Purge macro NEED_EVENTS
104     
105     Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
106     Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
107     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
108
109 commit 2db176bf5c644cf974f9137bda19e997500d04b1
110 Author: Gaetan Nadon <memsize@videotron.ca>
111 Date:   Mon Mar 29 16:50:34 2010 -0400
112
113     config: update AC_PREREQ statement to 2.60
114     
115     Unrelated to the previous patches, the new value simply reflects
116     the reality that the minimum level for autoconf to configure
117     all x.org modules is 2.60 dated June 2006.
118     
119     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
120     
121     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
122
123 commit bce9d460a8759c866908c945ceb609de6bf03921
124 Author: Gaetan Nadon <memsize@videotron.ca>
125 Date:   Mon Mar 29 14:53:49 2010 -0400
126
127     config: remove the pkgconfig pc.in file from EXTRA_DIST
128     
129     Automake always includes it in the tarball.
130     
131     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
132
133 commit 79cb4add177bee5dd451a8d459cb344451ea04a8
134 Author: Gaetan Nadon <memsize@videotron.ca>
135 Date:   Fri Nov 27 20:56:05 2009 -0500
136
137     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
138     
139     Now that the INSTALL file is generated.
140     Allows running make maintainer-clean.
141
142 commit 8f2565e71d91a81ab0fe11ac7052c9f4bdfcd8fa
143 Author: Gaetan Nadon <memsize@videotron.ca>
144 Date:   Wed Oct 28 14:09:11 2009 -0400
145
146     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
147     
148     Add missing INSTALL file. Use standard GNU file on building tarball
149     README may have been updated
150     Remove AUTHORS file as it is empty and no content available yet.
151     Remove NEWS file as it is empty and no content available yet.
152
153 commit 6e0c505690db8bedc6cbce726bc02b049e1dafa6
154 Author: Gaetan Nadon <memsize@videotron.ca>
155 Date:   Tue Oct 27 15:07:25 2009 -0400
156
157     Deploy the new XORG_DEFAULT_OPTIONS #24242
158     
159     This macro aggregate a number of existing macros that sets commmon
160     X.Org components configuration options. It shields the configuration file from
161     future changes.
162
163 commit 5b797b80804946573313e1202c0ef89ce8980bf8
164 Author: Gaetan Nadon <memsize@videotron.ca>
165 Date:   Mon Oct 26 22:08:43 2009 -0400
166
167     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
168     
169     ChangeLog filename is known to Automake and requires no further
170     coding in the makefile.
171
172 commit fd0dd9539d3bb2471c26187c96b55a542d754c30
173 Author: Gaetan Nadon <memsize@videotron.ca>
174 Date:   Thu Oct 22 12:34:20 2009 -0400
175
176     .gitignore: use common defaults with custom section # 24239
177     
178     Using common defaults will reduce errors and maintenance.
179     Only the very small or inexistent custom section need periodic maintenance
180     when the structure of the component changes. Do not edit defaults.
181
182 commit 2ce3061947dfaf113d6c324efb2b82be2fae028e
183 Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
184 Date:   Wed Oct 21 12:47:27 2009 -0700
185
186     This is not a GNU project, so declare it foreign.
187     
188     On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
189     > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
190     > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
191     > > was quite annoying to work around since 'autoreconf -fvi' replaces
192     > > it and git wants to commit it.  Should these files even be in git?
193     > > Can I nuke them for the betterment of humanity and since they get
194     > > created by autoreconf anyways?
195     >
196     > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
197     
198     As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
199     AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
200     of the INSTALL file. It is also part of the 24206 solution.
201     
202     Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
203
204 commit fa9520d5a63e181c05dd850223a1916e37e71a13
205 Author: Alan Coopersmith <alan.coopersmith@sun.com>
206 Date:   Tue Oct 6 17:08:58 2009 -0700
207
208     libxkbfile 1.0.6
209     
210     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
211
212 commit a3d95aedf3a6d1859387fb08b46cd66cd61cec83
213 Author: Alan Coopersmith <alan.coopersmith@sun.com>
214 Date:   Tue Oct 6 17:05:00 2009 -0700
215
216     Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
217     
218     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
219
220 commit d36a99d961c6649ca1b0319c2aadc6763edb07ad
221 Author: Adam Jackson <ajax@redhat.com>
222 Date:   Fri May 8 14:15:21 2009 -0400
223
224     Semi-revert 33b839e16fe681ba915658f824ceb1b252084ea4
225     
226     _XkbDupString() checks for NULL, strdup doesn't.  Still, implement in
227     terms of real strdup and skip the calloc.
228
229 commit 29f27b16dbe511a27a0e953b32913f9d9bf24f2d
230 Author: Adam Jackson <ajax@redhat.com>
231 Date:   Thu May 7 16:59:59 2009 -0400
232
233     Use flockfile if available.
234     
235     Not really a huge improvement, but we might as well.
236
237 commit 33b839e16fe681ba915658f824ceb1b252084ea4
238 Author: Adam Jackson <ajax@redhat.com>
239 Date:   Thu May 7 16:31:39 2009 -0400
240
241     s/_XkbDupString/strdup/
242     
243     Super special bonus lols edition: _XkbDupString would allocate the new
244     string with calloc, just to be extra sure.
245
246 commit 4f8dd1aa10a36700bf1f2b05931cd29151b9fee4
247 Author: Alan Coopersmith <alan.coopersmith@sun.com>
248 Date:   Mon Feb 2 20:34:39 2009 -0800
249
250     Add README with pointers to mailing list, bugzilla & git repos
251     
252     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
253
254 commit d17cd6e80f1ec78b69ba11ee55465420e6d7e9a9
255 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
256 Date:   Thu Jan 29 19:52:34 2009 -0200
257
258     Janitor: distcheck, compiler warnings, .gitignore.
259
260 commit dd9514fe714d81b881a1bd6bd88d4287adc5fc7e
261 Author: Kees Cook <kees.cook@canonical.com>
262 Date:   Tue Jan 13 15:40:37 2009 -0800
263
264     Fix static buffer overflow in "xkbcomp -C :0"
265     
266     This patch uses dynamically allocated strings instead of the fixed-length
267     buffers to avoid stack overflows.
268     
269     https://bugs.freedesktop.org/show_bug.cgi?id=19490
270     https://bugs.launchpad.net/ubuntu/+source/x11-xkb-utils/+bug/309013
271     
272     Signed-off-by: Kees Cook <kees.cook@canonical.com>
273     Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
274
275 commit e695be2ab7eb1361b204f98c3da872eff58ad6b5
276 Author: Alexey Ten <alexeyten+github@gmail.com>
277 Date:   Thu Jan 15 01:39:01 2009 +0300
278
279     Apply partial matches for option (#19563)
280     
281     Rules which match star (*) and option, like one below, should be applied
282     
283     layout[2] option    = symbols
284     *         misc:typo = +typo(base)
285     
286     X.Org bug 19563 <http://bugs.freedesktop.org/show_bug.cgi?id=19563>
287     
288     Signed-off-by: Sergey V. Udaltsov <svu@gnome.org>
289
290 commit 415a513387748e1763a477a486a9789f88784ec5
291 Author: Alan Coopersmith <alan.coopersmith@sun.com>
292 Date:   Mon Mar 17 19:44:07 2008 -0700
293
294     Version bump: 1.0.5
295
296 commit 4505577c4d6b5d32c276366ce6bc3eda1cd59ad7
297 Author: James Cloos <cloos@jhcloos.com>
298 Date:   Thu Dec 6 16:38:53 2007 -0500
299
300     Replace static ChangeLog with dist-hook to generate from git log
301
302 commit 492cd9bfc642443d92f419964334f59b89329a36
303 Author: Daniel Drake <ddrake@brontes3d.com>
304 Date:   Tue May 29 12:51:00 2007 -0800
305
306     Bug #11094: libxkbfile COPYING file
307     
308     X.Org Bugzilla #11094 <https://bugs.freedesktop.org/show_bug.cgi?id=11094>
309
310 commit 360c792528d614a8aa90ad665081d5bd6ae6197c
311 Author: Adam Jackson <ajax@benzedrine.nwnk.net>
312 Date:   Fri Oct 13 16:19:53 2006 -0400
313
314     Bump to 1.0.4
315
316 commit f587c01ee30c2814d199d3782b53834161cfa2b7
317 Author: Alan Coopersmith <alan.coopersmith@sun.com>
318 Date:   Thu Sep 28 11:12:11 2006 -0700
319
320     Do not have to have "have have" in config.h comment if we don't have strcasecmp
321
322 commit 62c3534debc688a39ccf34e60f7bf4d56fef0c11
323 Author: Alan Coopersmith <alan.coopersmith@sun.com>
324 Date:   Thu Sep 28 11:10:16 2006 -0700
325
326     Add *~ to gitignore to skip over emacs droppings
327
328 commit 1ea09901056ecc74e8554a4225366a7ba633e834
329 Author: Alan Coopersmith <alan.coopersmith@sun.com>
330 Date:   Thu Jul 13 14:59:19 2006 -0700
331
332     renamed: .cvsignore -> .gitignore
333
334 commit b221428cfe5ca036398571372b88cf07da7c58d8
335 Author: Adam Jackson <ajax@nwnk.net>
336 Date:   Thu Apr 27 00:16:37 2006 +0000
337
338     Bump to 1.0.3
339
340 commit 5e5bd096ba38294f43a071def16f8a397e22eb79
341 Author: Daniel Stone <daniel@fooishbar.org>
342 Date:   Wed Apr 12 11:29:43 2006 +0000
343
344     Fix offline operation.
345
346 commit 5f400a68ee489a1d9206605870b8d4306236170e
347 Author: Daniel Stone <daniel@fooishbar.org>
348 Date:   Mon Apr 10 10:11:35 2006 +0000
349
350     Really fix typos.
351
352 commit 3885559f436ed4ee84ebf90bf3d39648e16f5b3b
353 Author: Daniel Stone <daniel@fooishbar.org>
354 Date:   Mon Apr 10 08:47:40 2006 +0000
355
356     Fix stupid typos. (Shang-Feng Yang)
357
358 commit c3bc59c223ce4de8d6cce98c005a8f44bfa600c6
359 Author: Daniel Stone <daniel@fooishbar.org>
360 Date:   Sun Apr 9 13:45:31 2006 +0000
361
362     Coverity #265: Fix potential NULL dereference.
363
364 commit 816a8db3264bc0752a8befd865b802ac4a2382ce
365 Author: Daniel Stone <daniel@fooishbar.org>
366 Date:   Sun Apr 9 13:16:44 2006 +0000
367
368     Coverity #776, #777: Fix memory leaks.
369
370 commit 405ef7f445a41eb9995304b4c68b1c966a16bc20
371 Author: Daniel Stone <daniel@fooishbar.org>
372 Date:   Fri Apr 7 16:19:02 2006 +0000
373
374     Coverity #787, 788: Fix memory leaks.
375
376 commit d173f9d6561b223de0bf79603d303427da668a98
377 Author: Daniel Stone <daniel@fooishbar.org>
378 Date:   Fri Apr 7 16:01:03 2006 +0000
379
380     Coverity #979, #980, #981: Avoid potential NULL dereferences.
381
382 commit bf3fad9eff30bba4587548303dd3d96f3da5d494
383 Author: Daniel Stone <daniel@fooishbar.org>
384 Date:   Fri Apr 7 15:58:58 2006 +0000
385
386     Coverity #982: Fix potential NULL dereference.
387
388 commit 25e8b874b9f58e5e8035957465252539df13a85d
389 Author: Daniel Stone <daniel@fooishbar.org>
390 Date:   Fri Apr 7 15:44:40 2006 +0000
391
392     Fix signed vs unsigned char hilarity. (Bill Crawford)
393
394 commit 47dfc83937ed98e964716345cb4c8d817ae13e61
395 Author: Daniel Stone <daniel@fooishbar.org>
396 Date:   Mon Mar 27 21:11:01 2006 +0000
397
398     Bug #3819: Fix serious botching of _XkbStrCaseCmp commit.
399
400 commit e61dfbf6c72369f83a833d3a5a04c306a6b289f8
401 Author: Daniel Stone <daniel@fooishbar.org>
402 Date:   Sat Mar 25 23:15:58 2006 +0000
403
404     Bug #3819: Change open-coded _XkbStrCaseCmp to strcmp + tolower.
405
406 commit 4b0ad25354d5807fc9e77fda3397ee78332502c1
407 Author: Adam Jackson <ajax@nwnk.net>
408 Date:   Tue Feb 28 22:44:54 2006 +0000
409
410     Bump to 1.0.2.
411
412 commit 514262ec90db007dfce2c1523b2bc67988f395f1
413 Author: Daniel Stone <daniel@fooishbar.org>
414 Date:   Tue Feb 28 16:55:26 2006 +0000
415
416     Bug #5216: Allow options to appear with other components.
417
418 commit 46a7219986b402cb2ad4cfef2aa69d27f5508b6f
419 Author: Kevin E Martin <kem@kem.org>
420 Date:   Wed Dec 21 02:30:06 2005 +0000
421
422     Update package version for X11R7 release.
423
424 commit 4949a1f5d3de102195033e5f6513a595c06326cd
425 Author: Adam Jackson <ajax@nwnk.net>
426 Date:   Mon Dec 19 16:28:28 2005 +0000
427
428     Stub COPYING files
429
430 commit 8e69b154d42e77f91135382047b9df668406a972
431 Author: Kevin E Martin <kem@kem.org>
432 Date:   Thu Dec 15 00:24:36 2005 +0000
433
434     Update package version number for final X11R7 release candidate.
435
436 commit fa100dc7f5ee32ae37afc0323d72ff521bd5371a
437 Author: Kevin E Martin <kem@kem.org>
438 Date:   Sat Dec 3 05:49:46 2005 +0000
439
440     Update package version number for X11R7 RC3 release.
441
442 commit 26d800bab72f25e0088bf048b220eb96d6d1cf3f
443 Author: Kevin E Martin <kem@kem.org>
444 Date:   Sat Nov 19 07:15:48 2005 +0000
445
446     Update pkgconfig files to separate library build-time dependencies from
447         application build-time dependencies, and update package deps to work
448         with separate build roots.
449
450 commit b6e194b20a83f9f059037aa17fbb00a6d34e53a6
451 Author: Kevin E Martin <kem@kem.org>
452 Date:   Wed Oct 19 02:48:13 2005 +0000
453
454     Update package version number for RC1 release.
455
456 commit da83a9c6e3a85adcd30949f3c1ccd0d57a6a2bfa
457 Author: Kevin E Martin <kem@kem.org>
458 Date:   Mon Oct 3 15:20:29 2005 +0000
459
460     magic lives in src, so add it to EXTRA_DIST there instead
461
462 commit 8b1f515abc3e5c54103ea04ce1de856dcf0a2865
463 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
464 Date:   Sat Oct 1 06:22:01 2005 +0000
465
466     Add magic to EXTRA_DIST
467
468 commit 2baa710ffb0cb1567df8740e52477228e251a990
469 Author: Adam Jackson <ajax@nwnk.net>
470 Date:   Wed Aug 3 03:28:04 2005 +0000
471
472     Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with
473         a global configure cache don't get confused.
474
475 commit cb43c4a949dc657abd9b0f52d4d6307e00a72ddf
476 Author: Kevin E Martin <kem@kem.org>
477 Date:   Fri Jul 29 21:22:54 2005 +0000
478
479     Various changes preparing packages for RC0:
480     - Verify and update package version numbers as needed
481     - Implement versioning scheme
482     - Change bug address to point to bugzilla bug entry form
483     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
484         reenable it)
485     - Fix makedepend to use pkgconfig and pass distcheck
486     - Update build script to build macros first
487     - Update modular Xorg version
488
489 commit 494e792dc3328787fd7a4598454dc19115aac856
490 Author: Daniel Stone <daniel@fooishbar.org>
491 Date:   Sat Jul 16 07:52:50 2005 +0000
492
493     Set soversion to 1.0.0 using -version-number.
494
495 commit c0b9196c7148715dde385d2f0d41d56d23839825
496 Author: Keith Packard <keithp@keithp.com>
497 Date:   Sat Jul 9 21:20:35 2005 +0000
498
499     Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
500
501 commit bf6ca6fc3ef9bd61284dc48059d10a560e5c1f28
502 Author: Daniel Stone <daniel@fooishbar.org>
503 Date:   Sun Jul 3 07:37:33 2005 +0000
504
505     Fix more include paths; add dix-config.h to XKB code.
506
507 commit 70a39df3be6fcfea3746e0e127f3cde03a538869
508 Author: Daniel Stone <daniel@fooishbar.org>
509 Date:   Sun Jul 3 07:01:01 2005 +0000
510
511     Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
512     Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
513     Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
514         source files in the xserver/xorg tree, predicated on defines of
515         HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
516         <X11/fonts/foo.h>.
517
518 commit abca6e76c667a201bf23b73bd681a8c4da892e62
519 Author: Kevin E Martin <kem@kem.org>
520 Date:   Sat Jul 2 06:35:04 2005 +0000
521
522     Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems
523
524 commit e5ddd6b3020045b7d8426618fd2515bc02ca045d
525 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
526 Date:   Mon Jun 13 22:54:28 2005 +0000
527
528     Makefile.am: Add $(top_srcdir)/include to INCLUDES
529
530 commit 019fc282d476d3dd8f79e0472d3868f6a0785a56
531 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
532 Date:   Mon Jun 13 21:51:46 2005 +0000
533
534     Add xkbfile to symlink.sh, conditionally include "config.h" in
535         xc/lib/xkbfile
536
537 commit 43a2d4898c64c11101b500ab12466570d747ce5f
538 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
539 Date:   Mon Jun 13 21:49:05 2005 +0000
540
541     - Add xkbfile build system
542
543 commit adef71d31514413062d20858b270801627e32cad
544 Author: Egbert Eich <eich@suse.de>
545 Date:   Fri Apr 23 18:44:26 2004 +0000
546
547     Merging XORG-CURRENT into trunk
548
549 commit 33f9904e1895629319e58ac55da537771cf5bfa5
550 Author: Egbert Eich <eich@suse.de>
551 Date:   Sun Mar 14 08:32:39 2004 +0000
552
553     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
554
555 commit 672fe3b619cec43314adff06401e83046f4bc59f
556 Author: Egbert Eich <eich@suse.de>
557 Date:   Wed Mar 3 12:11:45 2004 +0000
558
559     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
560
561 commit ca6597857e417ee89ca15889e87211421b0df842
562 Author: Egbert Eich <eich@suse.de>
563 Date:   Thu Feb 26 13:35:36 2004 +0000
564
565     readding XFree86's cvs IDs
566
567 commit 084119505a1927600985675a54b40316edd50c63
568 Author: Egbert Eich <eich@suse.de>
569 Date:   Thu Feb 26 09:22:54 2004 +0000
570
571     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
572
573 commit 91ac80641f0e04536ffe9d4168a19ba3d7ee050d
574 Author: Kaleb Keithley <kaleb@freedesktop.org>
575 Date:   Tue Nov 25 19:28:21 2003 +0000
576
577     XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
578
579 commit cb45b671537b25c832428c0a75cb7d7712dea3e5
580 Author: Kaleb Keithley <kaleb@freedesktop.org>
581 Date:   Fri Nov 14 16:48:50 2003 +0000
582
583     XFree86 4.3.0.1
584
585 commit 52a8406aaba4ed1f9fa5e78bfa5da7af659bce01
586 Author: Kaleb Keithley <kaleb@freedesktop.org>
587 Date:   Fri Nov 14 15:54:40 2003 +0000
588
589     R6.6 is the Xorg base-line