1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
|
commit f27a02acd302fef3104394a9a966c1194158b62f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Oct 12 11:39:37 2024 -0700
xwud 1.0.7
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit b29feb2bdde8b7aae84e6dbfd9daa46eda888dcd
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jul 20 12:13:49 2024 -0700
Accept --help & --version as aliases to -help & -version
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xwud/-/merge_requests/4>
commit 13bc4b3ce3e9b3a8554cbb82d455ad229bad25e4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jul 20 12:09:59 2024 -0700
Replace strcpy+strcat calls with snprintf
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xwud/-/merge_requests/4>
commit 04d9a2f023c3cbe669a470e9b2dc101aad51c589
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jul 20 12:03:00 2024 -0700
Call free() instead of XFree() on pointers returned by malloc()
Matches the deallocator to the allocator that was actually used
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xwud/-/merge_requests/4>
commit 18ab2dba7f2ed12e0a52a2a9af33262c0b2e612a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jul 20 12:00:02 2024 -0700
Add missing checks for malloc failure
Most malloc calls were already checked, but these were not.
Clears up 4 -Wanalyzer-possible-null-dereference warnings from gcc 14.1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xwud/-/merge_requests/4>
commit 3ae261d6c005727eaad85e8acc767e3dbb88deba
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Thu Jul 28 17:30:21 2022 -0700
gitlab CI: stop requiring Signed-off-by in commits
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xwud/-/merge_requests/4>
commit 46334b79e8aea2c444927eee3b0281e4ab012085
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Jul 10 16:13:11 2022 -0700
xwud 1.0.6
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 9126cd2e641f7e9b129a8763c890598ee82cb653
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Tue Dec 7 16:00:38 2021 -0800
Build xz tarballs instead of bzip2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 6093be87e6a88623ebe2594a586ab6bad1b07560
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Tue Dec 7 16:00:34 2021 -0800
gitlab CI: add a basic build test
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit d52282a70f1fb542d269c0cde46b83eab1cffcb1
Author: scrouthtv <lennivh24@gmail.com>
Date: Sun Feb 28 18:29:41 2021 +0000
Added case for window_name_size == 0
commit df7eed701a7f341277df5e92419174237cf93ce4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Wed Nov 21 17:22:04 2018 -0800
Update configure.ac bug URL for gitlab migration
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 4cc3d8d6a812dd38b6507725a8aa64062ca9f706
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Nov 16 23:32:56 2018 -0800
Update README for gitlab migration
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 50c1949e9984fa6210636b131fed978dd3c31550
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Mar 9 20:43:49 2018 -0800
xwud 1.0.5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 596e9557ce690fb21979b585718e2f8df93f4da1
Author: Mihail Konev <k.mvc@ya.ru>
Date: Thu Jan 26 14:00:21 2017 +1000
autogen: add default patch prefix
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
commit 55c32bebda9028028533ad0fbd0344055840d101
Author: Emil Velikov <emil.l.velikov@gmail.com>
Date: Mon Mar 9 12:00:52 2015 +0000
autogen.sh: use quoted string variables
Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
fall-outs, when they contain space.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
commit f4c1349654b710a719448c560a794056c8d72541
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date: Tue Jan 24 10:32:07 2017 +1000
autogen.sh: use exec instead of waiting for configure to finish
Syncs the invocation of configure with the one from the server.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
commit 21180fe24c4386d41067725bcf0a8f48d1741393
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Wed Jun 4 16:24:18 2014 -0700
Add -version option to print program version
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 9a9e7cb288419ab56935f5a99577e323a0e60b9b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Wed Jun 4 16:09:46 2014 -0700
Print which option was in error along with usage message
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit e91e08d1533cc048789468885a0fb8ae214bf575
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Wed Jun 4 16:04:31 2014 -0700
Mark Error() argument as const char *
Fixes many gcc warnings about discarding const from literal arguments
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit a5fc9bd6084500c64d916a657a2ea70a8a39c569
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Tue Jun 3 23:59:32 2014 -0700
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 1862a8242ad1bff0cb47df353e919d5bbd7e30ad
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Tue Jun 3 23:59:32 2014 -0700
configure: Drop AM_MAINTAINER_MODE
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 86d36843f3f087a6c1f3eb5a21385a116ae9e46a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Mar 31 17:04:56 2012 -0700
xwud 1.0.4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 2785ef0c967571977b78490eb501c5f9da91d48c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Jan 6 20:07:40 2012 -0800
Replace malloc(strlen) + strcpy() with strdup()
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 05c9c12b6491708bc9ed9ea6b7a5321928d5ac93
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date: Sun May 8 09:48:55 2011 -0700
Mark Error as _X_NORETURN
xwud.c:1031:6: warning: Array access (from variable 'pixels') results in a null pointer dereference
pixels[i] = ~0L;
^~~~~~
xwud.c:1036:22: warning: Array access (from variable 'pixels') results in a null pointer dereference
if ((color.pixel = pixels[pix]) == ~0L) {
^~~~~~
xwud.c:1101:6: warning: Array access (from variable 'rpixels') results in a null pointer dereference
rpixels[i] = ~0L;
^~~~~~~
xwud.c:1100:6: warning: Array access (from variable 'pixels') results in a null pointer dereference
pixels[i] = ~0L;
^~~~~~
Found-by: clang static analyzer
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
commit b7751c561e500e066273d618bfb9967b89767559
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Jan 19 10:06:57 2011 -0500
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 4e97b1da43664f99400dc3b66afc416fb25c3bb1
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Jan 13 17:15:37 2011 -0500
man: replace hard coded man page section with substitution strings
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 70cc9502dc9757cffc165d73cfe8a29b1450df25
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Jan 13 11:15:48 2011 -0500
man: remove trailing spaces and tabs
Using s/[ \t]*$//
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 1693c1bba2c03acd151329fb8ecc3f5c267f9576
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 7 10:40:46 2010 -0800
xwud 1.0.3
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit f78df83d15e7b159617de3850b313d3f9850f643
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 7 10:39:49 2010 -0800
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
Regroup AC statements under the Autoconf initialization section.
Regroup AM sttaements under the Automake initialization section.
Add missing AC_CONFIG_SRCDIR
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 60c96d9b2add63684c8e28a3221fee3d807f3926
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 7 10:38:07 2010 -0800
config: Remove unnecessary calls from configure.ac
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 81777e705aab605d1f92edd01c3712033f7ee1cc
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 7 10:37:23 2010 -0800
config: upgrade to util-macros 1.8 for additional man page support
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
The value of MAN_SUBST is the same for all X.Org packages.
Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
Enables use of platform appropriate version of sed.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 0258e0ff9d6d56d2edc1c3287533771a0c3f08c3
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Sun Nov 7 10:36:55 2010 -0800
config: update AC_PREREQ statement to 2.60
Unrelated to the previous patches, the new value simply reflects
the reality that the minimum level for autoconf to configure
all x.org modules is 2.60 dated June 2006.
ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 7bc31bddc140fdccefa6de2e8ae27ce6b28871ff
Author: Jesse Adkins <jesserayadkins@gmail.com>
Date: Tue Sep 28 13:29:50 2010 -0700
Purge cvs tags.
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 1a06eb65df2f13497ac2327cd847a393d3f3d0fc
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Nov 26 09:19:55 2009 -0500
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Now that the INSTALL file is generated.
Allows running make maintainer-clean.
commit e1e912bb1474aaa3268c86e414d92260f80eaafc
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Oct 28 14:09:09 2009 -0400
INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
Add missing INSTALL file. Use standard GNU file on building tarball
README may have been updated
Remove AUTHORS file as it is empty and no content available yet.
Remove NEWS file as it is empty and no content available yet.
commit 38bc3567f7134b74160dc3096e31643c93bc3198
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Oct 26 22:08:40 2009 -0400
Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
ChangeLog filename is known to Automake and requires no further
coding in the makefile.
commit 55e770684fe1bb3de4174a33fecf8f10698d9d5d
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Oct 22 12:34:16 2009 -0400
.gitignore: use common defaults with custom section # 24239
Using common defaults will reduce errors and maintenance.
Only the very small or inexistent custom section need periodic maintenance
when the structure of the component changes. Do not edit defaults.
commit 86a450a54c878e8b3e235d17557d6d8e81a31caa
Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
Date: Wed Oct 21 12:47:22 2009 -0700
This is not a GNU project, so declare it foreign.
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
> On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
> > I noticed an INSTALL file in xlsclients and libXvMC today, and it
> > was quite annoying to work around since 'autoreconf -fvi' replaces
> > it and git wants to commit it. Should these files even be in git?
> > Can I nuke them for the betterment of humanity and since they get
> > created by autoreconf anyways?
>
> See https://bugs.freedesktop.org/show_bug.cgi?id=24206
As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
of the INSTALL file. It is also part of the 24206 solution.
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
commit f4e1d310f6c421434c4f1101d08907de16fc855c
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Oct 12 21:41:45 2009 -0700
xwud 1.0.2
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit a71d3b986cb4f8b88928c28a1986e913a954f503
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Oct 12 21:39:27 2009 -0700
Fill in COPYING with copyright/license notices from code
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 1da3e9b8ecd537546cb82d857b81704153a68621
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Oct 12 21:38:52 2009 -0700
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit d49722c555eedf47eeb039e3e4bd7a5b4143fc75
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Thu Oct 1 14:54:32 2009 -0700
Add README with pointers to mailing lists, bugzilla, & git
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit a619bad7e2782594e608d1b1c890a2ef46e59659
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Sun May 3 16:19:38 2009 -0700
Plug leaks of color conversion arrays in Do_Direct
[This bug was found by the Parfait bug checking tool.
For more information see http://research.sun.com/projects/parfait ]
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 5a9ab7d199e399872bd197c6b2de59f52e197efd
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date: Fri Jan 30 11:58:40 2009 +0100
Add more input checks. From "nobody@example.com" through OpenBSD bug list.
commit 11d54146e412a726807b8c0d5df8eb584084325d
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date: Thu Jan 15 16:22:28 2009 -0200
Ansification and compile warning fixes.
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
make distcheck and all gcc 4.3 and sparse warnings.
commit f20c704dd2962fabaea95a1c118ceffe0898d572
Author: James Cloos <cloos@jhcloos.com>
Date: Thu Dec 6 16:37:35 2007 -0500
Replace static ChangeLog with dist-hook to generate from git log
commit 566fbfbf01b95de257414f936fb31447f82671de
Author: James Cloos <cloos@jhcloos.com>
Date: Mon Sep 3 05:51:57 2007 -0400
Add *~ to .gitignore to skip patch/emacs droppings
commit bd24795253bdae758bba7ae76a31c8024222ceb8
Author: James Cloos <cloos@jhcloos.com>
Date: Thu Aug 23 19:25:18 2007 -0400
Rename .cvsignore to .gitignore
commit 41afbe4346cf615f18b9f7536a3a4f7b71588e26
Author: Kevin E Martin <kem@kem.org>
Date: Wed Dec 21 02:29:55 2005 +0000
Update package version for X11R7 release.
commit 64a9fc88c3b8386a2ee3c924cf5ed6d1faf95fda
Author: Adam Jackson <ajax@nwnk.net>
Date: Mon Dec 19 16:22:48 2005 +0000
Stub COPYING files
commit 1abccb01ea285b6dcee662cc6c7e9fcb44517c51
Author: Kevin E Martin <kem@kem.org>
Date: Thu Dec 15 00:24:12 2005 +0000
Update package version number for final X11R7 release candidate.
commit fa7c02b03c22461caa3d6405e8a229a9c30dc917
Author: Kevin E Martin <kem@kem.org>
Date: Tue Dec 6 22:48:27 2005 +0000
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
commit 5701442309db899c9cfeebafc4a583a613bb46f0
Author: Kevin E Martin <kem@kem.org>
Date: Sat Dec 3 05:49:29 2005 +0000
Update package version number for X11R7 RC3 release.
commit 5898d50e437e95fe43da28da84a9f7746547ffd0
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Mon Nov 28 22:01:48 2005 +0000
Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
commit e2b49239bc7eadb51ffab09a177aeccf6c61e888
Author: Eric Anholt <anholt@freebsd.org>
Date: Mon Nov 21 10:35:09 2005 +0000
Another pass at .cvsignores for apps.
commit 6540c58fa278c3501cb7e8a00db3d517bdf13d93
Author: Eric Anholt <anholt@freebsd.org>
Date: Sun Nov 20 22:08:56 2005 +0000
Add/improve .cvsignore files for apps.
commit 5f443db03b3f4fb230e7eef41ecd37e79506d20d
Author: Kevin E Martin <kem@kem.org>
Date: Wed Oct 19 02:47:58 2005 +0000
Update package version number for RC1 release.
commit d71e00abb4917244ad0e3fa8137780e76ea4a30e
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Mon Oct 17 23:56:25 2005 +0000
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
commit 3eff021e932202e1f2aadd7d07adb9717c414f22
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Fri Oct 14 00:25:48 2005 +0000
Use sed to fill in variables in man page
commit 1eeb5a74483ae0d3f1e1dc2705a8f1448e97b109
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Mon Aug 1 20:25:33 2005 +0000
Install man pages to section 1 instead of section m (Patch from Donnie
Berkholz)
commit f3b1e56ce3838f2e022557e119f470c31c319081
Author: Kevin E Martin <kem@kem.org>
Date: Fri Jul 29 21:22:39 2005 +0000
Various changes preparing packages for RC0:
- Verify and update package version numbers as needed
- Implement versioning scheme
- Change bug address to point to bugzilla bug entry form
- Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
reenable it)
- Fix makedepend to use pkgconfig and pass distcheck
- Update build script to build macros first
- Update modular Xorg version
commit 3175d21d65f84e0fb8f845df4ca7bf0e18ade4ff
Author: Adam Jackson <ajax@nwnk.net>
Date: Wed Jul 20 19:32:05 2005 +0000
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
configure cache, you cache it, and the cached value is probably wrong.
commit 78c7fa573ce8acc58820ef0f8b587cb49bc285b2
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date: Fri Jul 1 20:16:57 2005 +0000
Build system for xwud
commit 110dc6336ccefd0657e662b5d58874d1e25de5f7
Author: Egbert Eich <eich@suse.de>
Date: Fri Apr 23 19:55:10 2004 +0000
Merging XORG-CURRENT into trunk
commit 0a9f2be7f0b51123127a4171a73d2ec9336f05fa
Author: Egbert Eich <eich@suse.de>
Date: Sun Mar 14 08:35:54 2004 +0000
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
commit d89402e5ee8afc8581356c17b04d3c53d4eb87fb
Author: Egbert Eich <eich@suse.de>
Date: Wed Mar 3 12:13:20 2004 +0000
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
commit 42e4f6fc5373db981509e0702fe2a25808938a7c
Author: Egbert Eich <eich@suse.de>
Date: Thu Feb 26 13:36:32 2004 +0000
readding XFree86's cvs IDs
commit e00f6f921149cc0e2d2ba317b40bbf395cdece24
Author: Egbert Eich <eich@suse.de>
Date: Thu Feb 26 09:24:18 2004 +0000
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
commit bfca9b37987a37138cbf7a1da98bc48675ff28ab
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Tue Nov 25 19:29:23 2003 +0000
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
commit 3160fb8048b7ecd003548d4424e012a8b600c65b
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Fri Nov 14 16:49:24 2003 +0000
XFree86 4.3.0.1
commit da8d015481ebcb0a7605afee041fdbe29adf4183
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Fri Nov 14 15:54:55 2003 +0000
R6.6 is the Xorg base-line
|