ChangeLog revision 9fa8ffe7
1commit 771b773b50717884b37f6b2473166b4be4670076
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun Mar 4 17:40:10 2018 -0800
4
5    Version bump: 1.19.2
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 6694c973c8c2b5fae5934a49578f69d2817ab49c
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Nov 4 17:29:24 2017 -0700
12
13    Update check for manpage section numbers to not rely on Solaris version
14    
15    Check for a specific file instead of a specific set of versions from
16    uname, to cope with manpage section alignment coming to 11.4 instead
17    of 12.0.
18    
19    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
20    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
21
22commit 39f07f7db58ebbf3dcb64a2bf9098ed5cf3d1223
23Author: Emil Velikov <emil.veliko@collabora.com>
24Date:   Tue Feb 14 11:38:21 2017 +0000
25
26    Rework INSTALL_CMD to touch/echo >&2 only as needed
27    
28    Analogous to previous commit.
29    
30    With this commit we no longer get the following erroneous messages
31    during `make distcheck'.
32    
33    "
34    failed to copy INSTALL from util-macros: installing possibly empty INSTALL.
35    ...
36    failed to copy INSTALL from util-macros: installing possibly empty INSTALL.
37    "
38    
39    Cc: Gaetan Nadon <memsize@videotron.ca>
40    Cc: Peter Hutterer <peter.hutterer@who-t.net>
41    Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
42    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
43
44commit 4fc573e2f3cbbed7baa5e05fb798c2e4f4236f7d
45Author: Emil Velikov <emil.velikov@collabora.com>
46Date:   Tue Feb 14 11:38:20 2017 +0000
47
48    Rework CHANGELOG_CMD to touch/echo >&2 only as needed
49    
50    Currently CHANGELOG_CMD issues a
51    
52      touch ChangeLog; echo "Scary message" >&2
53    
54    even if the file is already present. For example, when running `make
55    distcheck' the following is observed:
56    
57    "
58    /bin/sh: ../../.changelog.tmp: Permission denied
59    git directory not found: installing possibly empty changelog.
60    ...
61    /bin/sh: ../../.changelog.tmp: Permission denied
62    git directory not found: installing possibly empty changelog.
63    "
64    
65    That in itself happens since srcdir is RO, thus shell redirection [to
66    srcddir/.changelog.tmp] fails. At the same time the latter message is
67    wrong and misleading since the file is already there, with the correct
68    contents.
69    
70    Silence the permissing warning (/dev/null is our friend), and add
71    a simple `test -e .../ChangeLog || (...' prior to the touch/echo combo.
72    
73    As we're here also update the message to be more generic, since there
74    are multiple other reasons why things can fail.
75    
76    Cc: Gaetan Nadon <memsize@videotron.ca>
77    Cc: Peter Hutterer <peter.hutterer@who-t.net>
78    Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
79    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
80
81commit 4b6b1dfea16214b5104b5373341dc8bc7016d0b5
82Author: Matt Turner <mattst88@gmail.com>
83Date:   Sun Jan 29 11:23:47 2017 -0800
84
85    Version bump: 1.19.1
86    
87    Signed-off-by: Matt Turner <mattst88@gmail.com>
88
89commit 65cb10c33477c4c3f140058dddbb28269c62e1a6
90Author: Mihail Konev <k.mvc@ya.ru>
91Date:   Thu Jan 26 13:52:48 2017 +1000
92
93    autogen: add default patch prefix
94    
95    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
96
97commit 9353e122654a89217051310b5a13654c97313282
98Author: Emil Velikov <emil.l.velikov@gmail.com>
99Date:   Mon Mar 9 12:00:52 2015 +0000
100
101    autogen.sh: use quoted string variables
102    
103    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
104    fall-outs, when they contain space.
105    
106    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
107    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
108    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
109
110commit c02080b28503dfd33a2172906dfc1a58278d0c42
111Author: Peter Hutterer <peter.hutterer@who-t.net>
112Date:   Tue Jan 24 10:32:07 2017 +1000
113
114    autogen.sh: use exec instead of waiting for configure to finish
115    
116    Syncs the invocation of configure with the one from the server.
117    
118    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
119    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
120
121commit d7acec2d3a3abe79814ceb72e2c0d4d95ed31d37
122Author: Andreas Boll <andreas.boll.dev@gmail.com>
123Date:   Tue Jan 12 13:59:40 2016 +0100
124
125    Fix XORG_WITH_XMLTO to work with xmlto >= 0.0.27
126    
127    Starting with xmlto version 0.0.27 the return code of
128      xmlto --skip-validation txt conftest.xml
129    is non-zero if conftest.xml is an empty file.
130    
131    As a consequence the macro XORG_WITH_XMLTO returns
132      "xmlto cannot generate text format, this format skipped"
133    and therefore libraries like libxi, libxdmcp and others won't convert
134    docbook XML to text format.
135    
136    This changed behavior was introduced with the following change in xmlto:
137      xmlto.in: use correctly exit code from xsltproc
138    See also: https://fedorahosted.org/xmlto/changeset/77
139    
140    This patch fixes this by additionally testing xmlto with a non-empty XML
141    file.
142    
143    More details can be found at:
144    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613674
145    
146    Thanks to Peter Pearse, Helmut Grohne and Gaetan Nadon.
147    
148    v2: To maintain compatibility with older xorg tarballs don't replace
149        the original test with the empty XML file but instead add a fallback
150        to additionally test with a non-empty XML file if the original test fails.
151        Use the alternate solution with <x></x> to skip compatibility issues
152        with different docbook versions.
153    
154    Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
155    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
156    Signed-off-by: Julien Cristau <jcristau@debian.org>
157
158commit 8b92f46ab371ec51dac2b73c768173cd63126402
159Author: Alan Coopersmith <alan.coopersmith@oracle.com>
160Date:   Tue Oct 27 16:19:51 2015 -0700
161
162    XORG_MANPAGE_SECTIONS: limit SysV man page sections to Solaris 2.0-11
163    
164    All others (including other SunOS/Solaris releases) use the
165    traditional Bell Labs / BSD / Linux section numbering.
166    
167    (The [[01]] is an m4-quoted shell character set of "[01]" to make sure
168     autoconf doesn't lose the [] when generating the configure script.)
169    
170    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
171    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
172
173commit 9a54b858601bd305de2737b06e609084a2a114c2
174Author: Gaetan Nadon <memsize@videotron.ca>
175Date:   Thu Mar 27 09:10:01 2014 -0400
176
177    Version bump: 1.19.0
178    
179    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
180
181commit 0677da7ed48f74a54f9bfd12afea7f0d578d7d38
182Author: Hans de Goede <hdegoede@redhat.com>
183Date:   Thu Mar 27 12:45:43 2014 +0100
184
185    XORG_PROG_RAWCPP: Add TRADITIONALCPPFLAGS
186    
187    In some cases we may want to have -traditional for proper whitespace preserving
188    without -undef, as we actually want the system definitions to be in place
189    so we can #ifdef on them. IE in xinit various .cpp files contain things like
190     #ifdef __APPLE__ and #ifdef __linux__
191    
192    So this patch adds a TRADITIONALCPPFLAGS variable which contains just
193    -traditional where applicable without the other RAWCPPFLAGS for unsetting
194    the system definitions.
195    
196    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
197    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
198
199commit 6768f12b4db660bb691337c6d238a32aae0475ff
200Author: Gaetan Nadon <memsize@videotron.ca>
201Date:   Thu Mar 27 08:21:51 2014 -0400
202
203    Provide the automake INSTALL file at level 1.11
204    
205    Now that the minimum level for automake is 1.11, replace the current
206    INSTALL with the one from automake 1.11.
207    
208    Recall that the file in this package is installed in $pkgdatadir
209    and is copied by each xorg module through the make 'dist' target.
210    
211    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
212
213commit 7acde944f40dad08fa8c43bc2548205e343afcd1
214Author: Arnaud Fontaine <arnau@debian.org>
215Date:   Sat Feb 8 10:31:39 2014 -0500
216
217    Add XORG_WITH_M4 macro
218    
219    Originally from XCB, this macro checks for the presence of m4 or gm4
220    which supports -I dir.
221    
222    The AC_PATH_PROGS_FEATURE_CHECK autoconf macro requires autoconf 2.62.
223    
224    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
225
226commit a5092b6a9931c8a60813f4f8a038cc5d9771d212
227Author: Gaetan Nadon <memsize@videotron.ca>
228Date:   Thu Feb 6 17:47:20 2014 -0500
229
230    Bump minimum Autoconf required version to 2.62
231    
232    The main motivation is to catch-up with the development reality and
233    allow use of features in Autoconf 2.62 as well as Automake 1.11.
234    
235    As usual this means no features found only in versions above those
236    specified are allowed.
237    
238    This is implementing the policy change which is described in:
239    http://www.x.org/wiki/Building_the_X_Window_System/?updated#index2h3
240    
241    Discussion on xorg minimum autotools requirements:
242    http://lists.x.org/archives/xorg-devel/2013-October/038325.html
243    
244    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
245
246commit 72b211419977a211c871232d66e1a668e3cf702f
247Author: Alan Coopersmith <alan.coopersmith@oracle.com>
248Date:   Mon Dec 2 16:41:45 2013 -0800
249
250    XORG_COMPILER_FLAGS: Add -Wlogical-op to default warning set
251    
252    We've fixed several bugs it uncovered already, only one warning left that
253    it adds in a default build.
254    
255    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
256    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
257
258commit 9bc8e154e53ee0ff8d09cc621ba762486f3e93fa
259Author: Gaetan Nadon <memsize@videotron.ca>
260Date:   Mon Dec 2 18:43:36 2013 -0500
261
262    Version bump: 1.18.0
263    
264    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
265
266commit fae36763f91f38dc9c4c388f267532889bb428ff
267Author: Gaetan Nadon <memsize@videotron.ca>
268Date:   Mon Dec 2 18:12:39 2013 -0500
269
270    XORG_TESTSET_CFLAG: add -fd which is the SUNCC -Wold-style-definition
271    
272    Seen in the XCB configuration and found missing in xorg.
273    
274    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
275    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
276
277commit 71dc85d04b67dc9579de47ec9e51c3ae6dde91ce
278Author: Gaetan Nadon <memsize@videotron.ca>
279Date:   Sun Dec 1 17:05:47 2013 -0500
280
281    XORG_WITH_DOXYGEN: check for the dot graphics utility
282    
283    It is part of the graphviz package and it may be used by doxygen if
284    the HAVE_DOT is set to "yes" in the doxygen configuration file.
285    
286    The calling module handles if the tool is mandatory or not.
287    Doxygen will work fine without it, but no fancy graphics.
288    
289    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
290
291commit 4846869cce5aafb0d2d2980f508ae320b599ac92
292Author: Gaetan Nadon <memsize@videotron.ca>
293Date:   Sun Dec 1 10:07:50 2013 -0500
294
295    CWARNFLAGS: comment out -Wcast-qual
296    
297    On a full X build, this warning accounts for the 5,888 warnings on a total
298    of 12,042. The line is moved to the "noisy" section of warnings.
299    
300    There is a discussion about the pros and cons here:
301    http://lists.x.org/archives/xorg-devel/2013-November/039069.html
302    
303    Reviewed-by: Keith Packard <keithp@keithp.com>
304    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
305
306commit 72fdc868b56fe2b7bdc9a69872651baeca728fb6
307Author: Ross Burton <ross.burton@intel.com>
308Date:   Thu Oct 10 17:23:04 2013 +0100
309
310    xorg-macros.m4.in: use the autoconf cache for XORG_CHECK_MALLOC_ZERO
311    
312    Improve configure speed by checking the autoconf cache before compiling and
313    running the test.
314    
315    As this means cross-compilation environments can trivially seed this cache as
316    appropriate, remove the cross-compiling value (which for embedded systems using
317    uclibc is wrong).
318    
319    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
320    Signed-off-by: Ross Burton <ross.burton@intel.com>
321    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
322
323commit 52ed34418492c1538b8022a830a79fbc50ba3605
324Author: Bart Massey <bart@cs.pdx.edu>
325Date:   Thu Sep 12 01:33:25 2013 -0700
326
327    Revert "Interleaved C code and declarations is no longer a portability issue."
328    
329    This reverts commit 689ea0ec5d8b7594ba2fa9e27b2458cea8a58724.
330    
331    Community consensus is that, while this style is no longer a
332    portability issue, it's a style issue.
333
334commit 689ea0ec5d8b7594ba2fa9e27b2458cea8a58724
335Author: Arnaud Fontaine <arnau@debian.org>
336Date:   Thu Aug 29 11:06:14 2013 +0900
337
338    Interleaved C code and declarations is no longer a portability issue.
339    
340    This was only supported from GCC 3.0 and OpenBSD was still using GCC 2.95
341    until recently.
342    
343    Signed-off-by: Arnaud Fontaine <arnau@debian.org>
344
345commit 052fa1dc1779de34ba69f68b7dc32b3c733c823e
346Author: Alan Coopersmith <alan.coopersmith@oracle.com>
347Date:   Fri Sep 6 23:34:33 2013 -0700
348
349    Version bump: 1.17.1
350    
351    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
352
353commit e6a41a0c6a84b34c6dc173a0a41089d0ebaddac0
354Author: Alan Coopersmith <alan.coopersmith@oracle.com>
355Date:   Fri Sep 6 23:30:00 2013 -0700
356
357    Strip trailing whitespace
358    
359    sed -i 's/[[:space:]]*$//' *
360    
361    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
362
363commit 3683c2b2d0b5e7d57374860147ca827da596bad5
364Author: Chris Wilson <chris@chris-wilson.co.uk>
365Date:   Mon Aug 5 16:00:20 2013 +0100
366
367    Use the right variable names for the compiler flags in XORG_TESTSET_CFLAG
368    
369    Whilst populating the xorg_cv_ cache entries, and the subsequent
370    xorg_testset_, we always include the FLAG_PREFIX in the name, to
371    distinguish between C and C++ iterations. However, in the body of the
372    test function, we dropped the FLAG_PREFIX expansion and so always used
373    the empty string and hence did not correctly detect incorrect flags.
374    
375    The bug was introduced with
376    commit 51f69514e65637f575df901ef942515e70314f6a
377    Author: Chase Douglas <chase.douglas@canonical.com>
378    Date:   Mon Mar 12 11:49:28 2012 -0700
379    
380        Separate unknown warning options by language
381    
382    Reported-and-tested-by: Sedat Dilek <sedat.dilek@gmail.com>
383    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
384    Cc: Sedat Dilek <sedat.dilek@gmail.com>
385    Cc: Chase Douglas <chase.douglas@canonical.com>
386    Cc: Gaetan Nadon<memsize@videotron.ca>
387    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
388
389commit c98b41de5596c675c603ef43ae9570133f1a9921
390Author: Colin Walters <walters@verbum.org>
391Date:   Wed Jan 4 17:37:06 2012 -0500
392
393    autogen.sh: Implement GNOME Build API
394    
395    http://people.gnome.org/~walters/docs/build-api.txt
396    
397    Signed-off-by: Adam Jackson <ajax@redhat.com>
398
399commit bd25ef721dff995096efffef4dcc9275cea43d4f
400Author: Adam Jackson <ajax@redhat.com>
401Date:   Tue Jan 15 13:44:31 2013 -0500
402
403    configure: Remove AM_MAINTAINER_MODE
404    
405    Signed-off-by: Adam Jackson <ajax@redhat.com>
406
407commit 0890e4003aacfa7113ab3f4e3ad7c5636f8e922a
408Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
409Date:   Tue Apr 3 18:43:02 2012 -0500
410
411    Fix spacing in XORG_TESTSET_CFLAG
412    
413    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
414    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
415
416commit c0c42057e0d357c144e7933ee413b522950a0f17
417Author: Gaetan Nadon <memsize@videotron.ca>
418Date:   Tue Mar 13 19:45:12 2012 -0400
419
420    Version bump: 1.17
421    
422    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
423
424commit 51f69514e65637f575df901ef942515e70314f6a
425Author: Chase Douglas <chase.douglas@canonical.com>
426Date:   Mon Mar 12 11:49:28 2012 -0700
427
428    Separate unknown warning options by language
429    
430    If XORG_COMPILER_FLAGS is called more than once with separate languages,
431    the unknown warning options used internally for unknown warning checking
432    will be set the first time and then the cached value will be used for
433    subsequent languages. This is a problem if the compilers differ between
434    the languages.
435    
436    This change ensures that the unknown warning options are namespaced so
437    multiple XORG_COMPILER_FLAGS calls with different languages are checked
438    separately.
439    
440    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
441    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
442
443commit a1fec11ca3de6774fb70052f5f5ab167bf658690
444Author: Chase Douglas <chase.douglas@canonical.com>
445Date:   Mon Mar 12 10:59:55 2012 -0700
446
447    Fix cflag test compiler message and cache ids
448    
449    When the language is C++, the flag checking message references $CC
450    instead of $CXX. The cache id is also xorg_cv_cc_* instead of
451    xorg_cv_cxx_*. This change fixes both issues.
452    
453    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
454    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
455
456commit a02a9048a1b831d13d32413e2af429ac8d7a5c2b
457Author: Jon TURNEY <jon.turney@dronecode.org.uk>
458Date:   Sat Mar 10 15:04:28 2012 +0000
459
460    Don't use AS_ECHO in XORG_TESTSET_CFLAG
461    
462    Further to commit 52ef6f6, since AS_ECHO isn't supported in autoconf 2.61 either,
463    rewrite use of cache variable in XORG_TESTSET_CFLAG so 'echo' isn't needed at all.
464    
465    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
466    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
467    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
468    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
469
470commit 299ae797eff46900e7d5914ff4502662f97f2062
471Author: Chase Douglas <chase.douglas@canonical.com>
472Date:   Fri Mar 9 14:46:00 2012 -0800
473
474    Add XORG_ENABLE_INTEGRATION_TESTS
475    
476    This macro enables a builder to enable/disable integration testing
477    It makes no assumption about the test cases' implementation
478    Test cases may or may not use Automake "Support for test suites"
479    
480    Unit test support usually requires less dependencies and may be built
481    and run under less stringent environments than integration tests. Thus,
482    two separate options for unit and integration testing is desirable.
483    
484    Copied from XORG_ENABLE_UNIT_TESTS.
485    
486    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
487    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
488
489commit db238c632bb7136e3e44345820d514106e317420
490Author: Gaetan Nadon <memsize@videotron.ca>
491Date:   Mon Mar 5 09:39:17 2012 -0500
492
493    Version bump: 1.16.2
494    
495    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
496
497commit 44aa8e75c8e54c5bc09d0cbff2f7207abe80c980
498Author: Chase Douglas <chase.douglas@canonical.com>
499Date:   Wed Feb 29 12:18:51 2012 -0800
500
501    Define BASE_CXXFLAGS when C++ is the chosen language
502    
503    You can use this functionality by setting the language to C++ before
504    calling XORG_DEFAULT_OPTIONS. This can accomplished with AC_LANG(C++).
505    
506    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
507    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
508
509commit 543ce698747dc998ca0ed987ef1ab0c35fb501b1
510Author: Chase Douglas <chase.douglas@canonical.com>
511Date:   Wed Feb 29 09:51:02 2012 -0800
512
513    Make XORG_TESTSET_CFLAG work for multiple languages
514    
515    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
516    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
517
518commit 52ef6f666a4fb46b693c81dc7a44612e6b78239d
519Author: Jon TURNEY <jon.turney@dronecode.org.uk>
520Date:   Tue Feb 14 21:59:38 2012 +0000
521
522    Use AS_ECHO rather than AS_ECHO_N in XORG_TESTSET_CFLAG
523    
524    The AS_ECHO_N macro was only introduced in autoconf 2.62.
525    Backticks remove trailing newlines, so we don't need to use echo -n
526    
527    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
528    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
529
530commit a1809fde56e45639556a44fd3c3ef9213204c5a9
531Author: Jon TURNEY <jon.turney@dronecode.org.uk>
532Date:   Mon Jan 2 19:42:10 2012 +0000
533
534    Cache the results of checking compiler flag support in XORG_TESTSET_CFLAG
535    
536    Since checking all those warning flags takes an amount of time I find irritating,
537    here is an attempt at caching the results of checking compiler warning flag support
538    
539    A couple of aspects which need definitely need review or testing:
540    
541    * I've tried to get things right when not the first flag in the list of alternates is
542    supported, but this really needs testing with a compiler other than gcc
543    
544    * The cache variable naming policy is a bit opaque me, so the names used may need corecting
545    
546    * I've tried to be careful, but who knows what portability sins I have committed :-)
547    
548    This change reduces the time to run the ./configure script produced from a configure.ac
549    containing just
550    
551    AC_INIT([test], 1.0)
552    XORG_COMPILER_FLAGS
553    XORG_CWARNFLAGS
554    XORG_STRICT_OPTION
555    AC_OUTPUT()
556    
557    from ~60s to ~20s on my cygwin machine, and from ~15s to ~9s on a linux VM running on the
558    same hardware
559    
560    v2: AS_TR_SH transforms characters which are invalid in shell variable names, so we don't
561    have to use sed to transform spaces ourself
562    
563    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
564    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
565
566commit 214132d470ef98b5d3cdc71662cb586025746bb5
567Author: Jeremy Huddleston <jeremyhu@apple.com>
568Date:   Fri Jan 20 23:46:56 2012 -0800
569
570    Version bump: 1.16.1
571    
572    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
573
574commit 088c848e74ac47bbd84eac70ef18a3d2abe96936
575Author: Jeremy Huddleston <jeremyhu@apple.com>
576Date:   Sun Dec 18 15:57:43 2011 -0800
577
578    Provide a configure option to turn off the selective -Werror=... CFLAGS
579    
580    Provide end users with a workaround if they find code doesn't build with
581    the -Werror=... flags provided by BASE_CFLAGS.  This can be useful if
582    newer util-macros are used with older source code that had problems, or
583    in the rare case when warnings are expanded to hit more cases (although
584    this case should not happen too much in practice).
585    
586    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
587
588commit 55f387315c4429704d2d5212fb1e3b130638e097
589Author: Jeremy Huddleston <jeremyhu@apple.com>
590Date:   Sat Dec 10 11:55:29 2011 -0800
591
592    Remove -Winline from BASE_CFLAGS
593    
594    This might be useful for performance tuning builds against specific
595    compilers, but it is a bit too noisy to be used in general.
596    
597    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
598
599commit a8f51b6864c65ab226f2febd7322354fb00b9444
600Author: Gaetan Nadon <memsize@videotron.ca>
601Date:   Wed Dec 7 15:15:54 2011 -0500
602
603    Version bump: 1.16.0
604    
605    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
606
607commit 87340dcccf97c3e1f0ab918bb6740abf47d65558
608Author: Alan Coopersmith <alan.coopersmith@oracle.com>
609Date:   Thu Dec 1 13:12:59 2011 -0800
610
611    XORG_TESTSET_CFLAG: Try to both compile & link with the flags
612    
613    Catches build problems caused by compilers that ignore unknown flags
614    at compile time and pass them to the linker at link time, when the
615    linker considers unknown flags to be fatal errors.
616    
617    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
618    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
619
620commit 2d4a7a4cf645c9cb586cf2f77f8d3f61d6c71883
621Author: Jeremy Huddleston <jeremyhu@apple.com>
622Date:   Thu Nov 10 23:45:57 2011 -0800
623
624    XORG_TESTSET_CFLAG: Add support fot -Werror=unused-command-line-argument
625    
626    This warning was was added to clang in r144365
627    
628    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
629
630commit 9d8a1e5809b4dd397efe2e62bbf2c8a6c4deb795
631Author: Alan Coopersmith <alan.coopersmith@oracle.com>
632Date:   Thu Nov 3 18:14:15 2011 -0700
633
634    Add XORG_MEMORY_CHECK_FLAGS and require it in XORG_ENABLE_UNIT_TESTS
635    
636    Based on the checks already in libXt/configure.ac and proposed for
637    xserver/configure.ac - makes a common implementation before we make
638    more copies.
639    
640    Callers should be able to just add
641            TESTS_ENVIRONMENT = $(XORG_MALLOC_DEBUG_ENV)
642    
643    If built with an older xorg-macros, then the tests will simply be
644    less stringent, matching what happens on platforms without any
645    simple malloc debugging facilities available.
646    
647    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
648    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
649
650commit 9b4a8bae3528950bdb87df095c212d646e15dbdb
651Author: Alan Coopersmith <alan.coopersmith@oracle.com>
652Date:   Thu Nov 3 17:41:24 2011 -0700
653
654    Define __wrap_exit in test program source for XORG_LD_WRAP
655    
656    Otherwise the test fails on Solaris releases that actually have support
657    for ld -wrap because the linker instead returns an error that __wrap_exit
658    is an undefined symbol.
659    
660    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
661    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
662
663commit 0295ee03ab45c55771581664d6c903c6d2f87e53
664Author: Alan Coopersmith <alan.coopersmith@oracle.com>
665Date:   Thu Nov 3 15:54:25 2011 -0700
666
667    Add an optional argument to XORG_LD_WRAP
668    
669    Allows specifying if ld -wrap support is 'required' or 'optional' for
670    unit tests, so that builds like the xserver which only need ld -wrap
671    for some tests can allow users to enable the others when ld -wrap is
672    not available.
673    
674    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
675    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
676
677commit b8a13e531db208a7c4c9a43b74b196104e7c66ed
678Author: Jeremy Huddleston <jeremyhu@apple.com>
679Date:   Tue Nov 1 12:59:55 2011 -0700
680
681    Add additional flags to XORG_COMPILER_FLAGS
682    
683    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
684
685commit 08877399839f5a30a5edd2167fb4275d3dd9d473
686Author: Jeremy Huddleston <jeremyhu@apple.com>
687Date:   Tue Nov 1 12:44:48 2011 -0700
688
689    Update XORG_CWARNFLAGS to use XORG_COMPILER_FLAGS
690    
691    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
692
693commit b406f730d64dfb8b699631ffb3ee5f3a1f0db8c4
694Author: Jeremy Huddleston <jeremyhu@apple.com>
695Date:   Tue Nov 1 12:19:24 2011 -0700
696
697    Add XORG_COMPILER_FLAGS to replace XORG_CWARNFLAGS
698    
699    See: https://bugs.freedesktop.org/show_bug.cgi?id=31238
700    
701    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
702
703commit b175fe0e07fce86cf029695e9e93b573ada54b0c
704Author: Jeremy Huddleston <jeremyhu@apple.com>
705Date:   Tue Nov 1 11:53:44 2011 -0700
706
707    Use XORG_TESTSET_CFLAG in XORG_STRICT_OPTION
708    
709    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
710
711commit 9f427611f4bb6db60cb8cbdda6296a3bf66a5a6c
712Author: Jeremy Huddleston <jeremyhu@apple.com>
713Date:   Tue Nov 1 11:39:14 2011 -0700
714
715    Add XORG_TESTSET_CFLAG which can be used to test what flags the compiler supports
716    
717    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
718    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
719
720commit 4a6ecc7b8e338483fb5ea6bfc9b2fb26f890807b
721Author: Jeremy Huddleston <jeremyhu@apple.com>
722Date:   Tue Nov 1 11:49:41 2011 -0700
723
724    Fix the test for -Werror=attributes
725    
726    The current test was always failing to compile because 'return 0;' was
727    global rather than in the body of a function.
728    
729    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
730    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
731
732commit 08dd5d30c137abe43d5b1673edc39eb569881d66
733Author: Gaetan Nadon <memsize@videotron.ca>
734Date:   Thu Jun 23 08:03:13 2011 -0400
735
736    Version bump: 1.15.0
737    
738    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
739
740commit b87c5e7f6c9e856cf82c3c531255adccbd9fae5c
741Author: Gaetan Nadon <memsize@videotron.ca>
742Date:   Wed Jun 22 12:42:30 2011 -0400
743
744    XORG_WITH_XSLTPROC: warn at development time rather than config time
745    
746    Catching up unimplemented features should be done earlier by the developer
747    during autoconf rather than during configure.
748    
749    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
750    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
751
752commit f3332a7214af43878691b4f4876c39dc7d546266
753Author: Gaetan Nadon <memsize@videotron.ca>
754Date:   Wed Jun 22 10:02:28 2011 -0400
755
756    Add XORG_WITH_PERL macro
757    
758    Following the same pattern as XMLTO and friends.
759    Allows all modules to use the same interface, variables
760    and options to check for perl.
761    Perl is used in libX11 and xserver.
762    
763    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
764    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
765
766commit b927af52e8a3384126bfe709b725f6c5bad4ba34
767Author: Gaetan Nadon <memsize@videotron.ca>
768Date:   Wed Jun 22 09:04:32 2011 -0400
769
770    XORG_WITH_FOP: add minimum version checking support
771    
772    Adding this feature is motivated by a bug in fop 0.95 where
773    fop crashes in the presence of some characters like the latin capital
774    sharp s. Fop version 1.0 works correctly.
775    
776    This is the same feature found in XMLTO and the likes.
777    In the macro public interface there is a shift in parameter position
778    for the DEFAULT parameter. Doing development on older libraries
779    (point releases on older versions) will still work the same way as
780    the "no" value will be interpreted as the minimum version. It won't
781    be found, so fop will be disabled anyway.
782    
783    Only libX11 has used XORG_WITH_FOP(no) and will be changed with a version
784    bump on util-macros.
785    
786    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
787    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
788
789commit 45c7d622657d295b2c02a46061765827ea37f00f
790Author: Gaetan Nadon <memsize@videotron.ca>
791Date:   Wed Jun 1 08:59:53 2011 -0400
792
793    XORG_PROG_RAWCPP: use AC_LANG_SOURCE to prevent warnings
794    
795    The source for the AC_LANG_CONFTEST should be passed to AC_LANG_SOURCE
796    to satisfy the more stringent testing done by autoconf 2.68.
797    It is available in autoconf 2.60 where AC_LANG_DEFINES_PROVIDED is not.
798    
799    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
800    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
801
802commit 10a865fa671382dce50f7e49624ca5a730372d08
803Author: Alan Coopersmith <alan.coopersmith@oracle.com>
804Date:   Fri May 27 19:01:13 2011 -0700
805
806    Version bump: 1.14.0
807    
808    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
809
810commit e03a5cb9f313c6f5de3edc46327eb18b300b92c2
811Author: Alan Coopersmith <alan.coopersmith@oracle.com>
812Date:   Sat May 14 09:10:13 2011 -0700
813
814    Add AC_LANG_DEFINES_PROVIDED to XORG_RAW_CPP to silence autoconf warnings
815    
816    Since we're intentionally doing a special case to just check cpp output,
817    and not a full program compilation, add the magic macro to silence:
818    
819    configure.ac:46: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
820    ../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from...
821    aclocal.m4:1077: XORG_PROG_RAWCPP is expanded from...
822    configure.ac:46: the top level
823    
824    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
825
826commit 61f5a48a74680c316bee2bf93d6ef5d50a688f22
827Author: Alan Coopersmith <alan.coopersmith@oracle.com>
828Date:   Mon May 2 16:52:26 2011 -0700
829
830    XORG_STRICT_OPTION: add -Werror=attributes to STRICT_CFLAGS for gcc
831    
832    Flags unknown attributes as errors, if -Werror=attributes is supported.
833    (The -Werror=* option was first spotted in gcc 4.2.0 manuals.)
834    
835    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
836    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
837
838commit 8a556afbe7ff81987597ca88e315fe66f10e4adc
839Author: Alan Coopersmith <alan.coopersmith@oracle.com>
840Date:   Mon Apr 25 20:31:33 2011 -0700
841
842    Make XORG_STRICT_OPTION always set STRICT_CFLAGS
843    
844    Still only adds it to CWARNFLAGS if --enable-strict-compilation is
845    passed, but sets the variable with the right flags for the compiler
846    so it's available for other checks in configure scripts.
847    
848    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
849    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
850    Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
851    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
852
853commit ef7824119ede1d491936ef1715296b47419f4c9c
854Author: Alan Coopersmith <alan.coopersmith@oracle.com>
855Date:   Mon Apr 25 20:26:48 2011 -0700
856
857    Create XORG_COMPILER_BRAND macro to centralize compiler checks
858    
859    Check for gcc vs. intel vs. sun in one place, instead of
860    continuing to grow more places the check is replicated.
861    
862    Add clang check here too, as it's now seeing a lot of use to build X.
863    
864    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
865    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
866    Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
867    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
868
869commit 5bb0cddcc5359d764015299021718f42b0a4055c
870Author: Gaetan Nadon <memsize@videotron.ca>
871Date:   Mon Mar 14 20:12:36 2011 -0400
872
873    Version bump: 1.13.0
874    
875    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
876
877commit 700ecdc16426c14e649439138e8e40cdc41fe1c1
878Author: Gaetan Nadon <memsize@videotron.ca>
879Date:   Wed Mar 9 18:53:43 2011 -0500
880
881    XORG_LD_WRAP: check if linker supports -wrap
882    
883    Used mainly by test cases using a wrapper function.
884    
885    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
886
887commit 380074140f7b1e3f8ea006a4b1d928d23706b81d
888Author: Gaetan Nadon <memsize@videotron.ca>
889Date:   Wed Mar 9 10:53:49 2011 -0500
890
891    XORG_WITH_GLIB: check for the GLib package
892    
893    XORG_WITH_GLIB([MIN-VERSION], [DEFAULT])
894     ----------------------------------------
895     Minimum version: 1.13.0
896    
897     GLib is a library which provides advanced data structures and functions.
898     This macro enables a module to test for the presence of Glib.
899    
900     When used in conjunction with XORG_ENABLE_UNIT_TESTS, use both AM_CONDITIONAL
901     ENABLE_UNIT_TESTS and HAVE_GLIB.
902     Glib may be used for purpose other than testing
903    
904     Package builders should use --without-glib to ensure it does not get pulled in.
905     Unit tests may or may not use GLib.
906    
907     Developers should use --with-glib to error out if GLib is missing.
908    
909     Interface to module:
910     HAVE_GLIB: used in makefiles to conditionally build targets
911     with_glib: used in configure.ac to know if GLib has been found
912     --with-glib:   'yes' user instructs the module to use glib
913                    'no' user instructs the module not to use glib
914    
915    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
916    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
917
918commit 78af2b882e01b17e38d1361a4a58b7768bb59bec
919Author: Gaetan Nadon <memsize@videotron.ca>
920Date:   Wed Mar 9 07:10:18 2011 -0500
921
922    XORG_ENABLE_UNIT_TESTS: add support for unit testing
923    
924    This macro enables a builder to enable/disable unit testing
925    It makes no assumption about the test cases implementation
926    Test cases may or may not use Automake "Support for test suites"
927    They may or may not use the software utility library GLib
928    
929    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
930    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
931
932commit 1218d7e6ed064e0c534a01caf013cff666cb44bf
933Author: Gaetan Nadon <memsize@videotron.ca>
934Date:   Fri Feb 25 16:58:10 2011 -0500
935
936    Version bump: 1.12.0
937    
938    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
939
940commit b22ce580bcc8343b880f19cc7f1c6bea176c8f13
941Author: Gaetan Nadon <memsize@videotron.ca>
942Date:   Sat Jan 29 16:17:09 2011 -0500
943
944    XORG_WITH_XSLTPROC: add XSLT processor command line tool
945    
946    The primary use will be for DocBook/XML cross links database generation.
947    
948    XSLT (Extensible Stylesheet Language Transformations) is a declarative,
949    XML-based language used for the transformation of XML documents.
950    The xsltproc command line tool is for applying XSLT stylesheets
951    to XML documents.
952    
953    It is used under the cover by xmlto to generate html files from DocBook/XML.
954    The XSLT processor is often used as a standalone tool for transformations.
955    It should not be assumed that it is used only to work with documnetation.
956    
957    Tested-by: Matt Dew <marcoz@osource.org>
958    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
959
960commit 7370b0b3f0308aec2a32012eddb2f0761d5fe399
961Author: Alan Coopersmith <alan.coopersmith@oracle.com>
962Date:   Sun Dec 5 01:25:11 2010 -0800
963
964    Use AC_LANG_PROGRAM in XORG_CHECK_MALLOC_ZERO to clear autoconf-2.68 warnings
965    
966    configure.ac:126: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
967    ../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from...
968    ../../lib/autoconf/general.m4:2730: _AC_RUN_IFELSE is expanded from...
969    ../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
970    ../../lib/autoconf/general.m4:2749: AC_RUN_IFELSE is expanded from...
971    aclocal.m4:1952: XORG_CHECK_MALLOC_ZERO is expanded from...
972    configure.ac:126: the top level
973    
974    Also, calloc() takes two arguments; and all of them return void *,
975    not char *; as the compiler points out when you #include <stdlib.h>
976    instead of faking it badly.   (And sometimes when you don't, due to
977    compiler builtin versions of the functions.)
978    
979    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
980    Reviewed-by: Matt Turner <mattst88@gmail.com>
981    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
982    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
983
984commit 04030cbca37c04c48161debc0cade6db00cb347b
985Author: Gaetan Nadon <memsize@videotron.ca>
986Date:   Sat Nov 6 20:50:06 2010 -0400
987
988    XORG_ENABLE_DOCS: Fix "Enable building the documentation (yes: yes)"
989    
990    The quoting did not prevent the m4 defined variable "default"
991    to replace the text string "default" in the help text.
992    
993    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
994    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
995
996commit ce32345589050b17b23b18157f95f060f4c776a3
997Author: Alan Coopersmith <alan.coopersmith@oracle.com>
998Date:   Fri Oct 29 20:43:53 2010 -0700
999
1000    Version bump: 1.11.0
1001    
1002    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1003
1004commit eb7ebbbbb2a6196322cf7e48f60a11f2f65f7534
1005Author: Dan Nicholson <dbn.lists@gmail.com>
1006Date:   Fri Oct 22 19:12:46 2010 -0700
1007
1008    docs: Take optional argument to control defaults
1009    
1010    The typical default of enabling documentation if the correct tool is
1011    found is usually the right thing to do. However, some packages such as
1012    Xlib have huge amounts of documentation that few people would need in
1013    every output format. Allow packages to specify the default for each tool
1014    by passing an argument to the macro.
1015    
1016    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1017    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1018    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1019
1020commit 119f35b24d446a8f7b1da4a3eaa6d6e3ad982d69
1021Author: Dan Nicholson <dbn.lists@gmail.com>
1022Date:   Sat Oct 9 17:41:10 2010 -0700
1023
1024    docs: Use m4 to handle optional macro defaults
1025    
1026    Handling the optional documentation parameters with m4 allows the help
1027    string to correctly represent the default.
1028    
1029    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1030    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1031    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1032
1033commit aeebb46766dada64de246fd9fe72e3c523c4e70e
1034Author: Gaetan Nadon <memsize@videotron.ca>
1035Date:   Thu Sep 23 15:00:20 2010 -0400
1036
1037    Version bump: 1.10.1
1038    
1039    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1040
1041commit 1905f89998cb26410872150679501fde506a03c7
1042Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1043Date:   Fri Sep 3 22:47:02 2010 -0700
1044
1045    Sun's copyrights are now owned by Oracle
1046    
1047    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1048
1049commit 808d547902fad81901db94e6344838350d0eeb52
1050Author: Gaetan Nadon <memsize@videotron.ca>
1051Date:   Sat Aug 14 15:43:38 2010 -0400
1052
1053    XORG_MANPAGE_SECTIONS: add substitution for apploaddir
1054    
1055    This represents the location of the app-defaults directory
1056    Used in app/bitmap/man for example.
1057    
1058    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1059
1060commit fbe66aedcf2165e43388894d3b2ee2f38e889f93
1061Author: Gaetan Nadon <memsize@videotron.ca>
1062Date:   Thu Jun 24 17:36:33 2010 -0400
1063
1064    Version bump: 1.10.0
1065    
1066    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1067
1068commit 4eed3443945a9d1443ec688efd835f46ed9adfc9
1069Author: Gaetan Nadon <memsize@videotron.ca>
1070Date:   Fri Jun 25 14:52:25 2010 -0400
1071
1072    XORG_CHECK_SGML_DOCTOOLS: add interface for xorg stylesheet
1073    
1074    Add STYLESHEET_SRCDIR for directory location
1075    and XSL_STLESHEET for the name of the xorg style sheet
1076    
1077    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1078    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1079
1080commit 01ef7c69d91259e5904f26b6b4630243d548232a
1081Author: Gaetan Nadon <memsize@videotron.ca>
1082Date:   Thu Jun 24 18:12:45 2010 -0400
1083
1084    XORG_WITH_XMLTO: add HAVE_XMLTO_TEXT for text output format
1085    
1086    The xmlto program has dependencies when converting docbook XML
1087    to text format. It requires either lynx, links or w3m
1088    text web browsers.
1089    
1090    Users want to skip the text format to avoid having to install these.
1091    
1092    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1093    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1094
1095commit fe878c0ce0b9093c13714ec6662b0c99a9a2d1d4
1096Author: Gaetan Nadon <memsize@videotron.ca>
1097Date:   Fri Jun 18 21:54:27 2010 -0400
1098
1099    Version bump: 1.9.0
1100    
1101    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1102
1103commit d4d18c07d7aa1005ad3d48dfdb19f245df2ebae0
1104Author: Gaetan Nadon <memsize@videotron.ca>
1105Date:   Fri Jun 18 20:32:13 2010 -0400
1106
1107    XORG_WITH_GROFF: add HAVE_GROFF_HTML Automake conditional
1108    
1109    Groff uses grohtml to generate html output format. This program, in turn,
1110    uses a number of pnm* commands from the netpbm package, psselect
1111    from the psutils package and the ghostscript package.
1112    
1113    These are independently installed, so they could be missing.
1114    A check is made to ensure those dependencies are installed.
1115    If not, the makefile can use the conditional to supress the target.
1116    
1117    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1118    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1119
1120commit f0590edffe21ac6b7a11eab7caf6c8aad7c8bc07
1121Author: Gaetan Nadon <memsize@videotron.ca>
1122Date:   Thu May 27 09:27:54 2010 -0400
1123
1124    Version bump: 1.8.0
1125    
1126    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1127
1128commit ce3ece9cbf2380ab0e0535f52f0c6c6507d779c8
1129Author: Gaetan Nadon <memsize@videotron.ca>
1130Date:   Wed May 26 21:09:31 2010 -0400
1131
1132    config: XORG_MANPAGE_SECTIONS: add AC_PROG_SED
1133    
1134    The sed command is required to create the man pages.
1135    
1136    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1137    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1138
1139commit 8cb69a59d54656d17ea7bcf479b0f27a17dc559e
1140Author: Gaetan Nadon <memsize@videotron.ca>
1141Date:   Mon May 17 10:36:48 2010 -0400
1142
1143    XORG_MANPAGE_SECTIONS: add MAN_SUBSTS automake variable
1144    
1145    It will replace the 155 copies in package makefiles
1146    
1147    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1148    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1149
1150commit 2dd06a9bcfa6868260421ae803fa7d34a5d3a0c9
1151Author: Gaetan Nadon <memsize@videotron.ca>
1152Date:   Mon May 17 07:37:28 2010 -0400
1153
1154    XORG_RELEASE_VERSION: remove option --with-release-version #24816
1155    
1156    The short story:
1157    - this option has never been used by OS builders as intended
1158    - the implementation changes automake internals
1159    - the implementation breaks a few makefiles (if used)
1160    - one less option for the user to be confused with on all 240 xorg modules
1161    
1162    The long story:
1163    https://bugs.freedesktop.org/show_bug.cgi?id=24816
1164    
1165    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1166    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1167
1168commit 99f9a3efe2ba46f9ba446b72a402f239e3357c12
1169Author: Gaetan Nadon <memsize@videotron.ca>
1170Date:   Sun May 16 16:46:17 2010 -0400
1171
1172    XORG_LINT_LIBRARY: rework to match XORG_WITH_LINT
1173    
1174    XORG_LINT_LIBRARY has implementations dependencies on XORG_WITH_LINT
1175    The library name can no longer be set by overloading the semantic
1176    of --enable-lint-library.
1177    If this function is required it should be added using an AC_ARG_VAR.
1178    
1179    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1180    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1181
1182commit 2cbe2acb5c70a76830f6ddc1bdc66c333507996f
1183Author: Gaetan Nadon <memsize@videotron.ca>
1184Date:   Sat May 15 14:16:36 2010 -0400
1185
1186    XORG_WITH_LINT: rework and extend platform coverage
1187    
1188    Guess the lint program name by platform.
1189    Use ARG variable for user input values.
1190    Provide default flags per platform.
1191    
1192    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1193    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1194
1195commit 4fd20af3ebf6bcfa4e991af6fd11d78494e4b95b
1196Author: Gaetan Nadon <memsize@videotron.ca>
1197Date:   Fri May 14 20:19:15 2010 -0400
1198
1199    XORG_DEFAULT_OPTIONS: add AC_PROG_INSTALL
1200    
1201    All modules install something.
1202    This makes it clear it can removed from modules config.
1203    
1204    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1205
1206commit 958c872c82c0612911e398304111ea5d98dbe973
1207Author: Gaetan Nadon <memsize@videotron.ca>
1208Date:   Fri May 14 17:55:13 2010 -0400
1209
1210    XORG_STRICT_OPTION: remove redundant expansion of AC_PROG_CC macro
1211    
1212    Calling AC_PROG_CC before AC_PROG_CC_C99 is not required.
1213    C99 is not an add-on to CC although either one will cache results
1214    than can be used by the other.
1215    
1216    This is effectively a no-op. Note that if a module configure.ac
1217    file calls AC_PROG_CC after AC_PROG_CC_C99, the compiler will be reset
1218    to ISO_C89 from ISO_C99.
1219    Currently about half the xorg modules use C89 while the other half use C99.
1220    
1221    Reviewed-by: Rémi Cardona <remi@gentoo.org>
1222    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1223
1224commit 795e808cb32d183f9d8040749899e325420e9798
1225Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1226Date:   Tue Apr 13 03:57:58 2010 -0500
1227
1228    doctools: accept an optional minimal version
1229    
1230    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1231    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1232
1233commit 0913df6f5f24ea589b254d6f2a78483bf3a3c5d6
1234Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1235Date:   Fri Apr 9 12:40:12 2010 -0500
1236
1237    linuxdoc: Use XORG_WITH_PS2PDF to check for ps2pdf
1238    
1239    Besides reusing existing code, this allows linuxdoc PDF output to be
1240    enabled or disabled by configure.
1241    
1242    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1243    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1244    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1245
1246commit e78c909f0e8ea3ee4a38fb7d93fe350bfae7990b
1247Author: Gaetan Nadon <memsize@videotron.ca>
1248Date:   Tue Apr 27 15:00:37 2010 -0400
1249
1250    LinuxDoc: add -f option to filter out the ^H in text output
1251    
1252    Remove backspace-overstrikes from the intermediate
1253    form generated by groff.
1254    These appear as blocks in some text editors and as ^H in vi.
1255    
1256    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1257
1258commit def9ff6a564b6b3a81a862e0db1673b3cd77d5ea
1259Author: Gaetan Nadon <memsize@videotron.ca>
1260Date:   Mon Apr 5 08:02:28 2010 -0400
1261
1262    Version bump: 1.7.0
1263    
1264    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1265
1266commit 5d7f8c2638a3b2c3bba8deb01e94703310b62cc4
1267Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1268Date:   Thu Mar 25 18:10:00 2010 -0500
1269
1270    doc: add XORG_CHECK_SGML_DOCTOOLS to detect xorg-sgml-doctools
1271    
1272    Trying to find X11/defs.ent with AC_CHECK_FILE does not work when
1273    cross-compiling, and the check assumed that xorg-sgml-doctools is
1274    installed to the same prefix which need not always be the case.
1275    
1276    xorg-sgml-doctools 1.4 provides a pkg-config file which we can use
1277    instead, fixing both those cases.  This macro is provided in util-macros
1278    instead of with xorg-sgml-doctools, otherwise the latter would become a
1279    hard dependency just to run autoreconf.
1280    
1281    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1282    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1283
1284commit c03e7dbca608f6fa3f1f53f5fc9f279eab62bdb4
1285Author: Gaetan Nadon <memsize@videotron.ca>
1286Date:   Mon Mar 29 11:53:10 2010 -0400
1287
1288    config: remove the xorg-macros pc.in file from EXTRA_DIST
1289    
1290    Automake always includes it in the tarball.
1291    
1292    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1293
1294commit be6c44abf825a5814ca836165f62b66c30e7a966
1295Author: Gaetan Nadon <memsize@videotron.ca>
1296Date:   Thu Mar 11 11:11:42 2010 -0500
1297
1298    Version bump: 1.6.1
1299    
1300    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1301
1302commit b1660bfd095627778496bf403a741ff6ad44659a
1303Author: Gaetan Nadon <memsize@videotron.ca>
1304Date:   Tue Mar 9 10:52:15 2010 -0500
1305
1306    doc: fix typo in AC_MSG_CHECKING for XORG_CHECK_LINUXDOC
1307    
1308    The message should start with a lowercase letter.
1309    
1310    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1311    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1312    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1313    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1314
1315commit 2c833326fdd83039999b5563eb9f621ff57e3bf5
1316Author: Gaetan Nadon <memsize@videotron.ca>
1317Date:   Tue Mar 9 10:13:22 2010 -0500
1318
1319    doc: Specify minimum xmlto version to XORG_WITH_DOXYGEN
1320    
1321    Adds an optional parameter to XORG_WITH_DOXYGEN to enforce a minimum
1322    version needed like the asciidoc version check.
1323    
1324    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1325    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1326
1327commit d7cedc8ce552581c9acbfbe373cbee16a689abef
1328Author: Dan Nicholson <dbn.lists@gmail.com>
1329Date:   Wed Mar 3 20:16:46 2010 -0800
1330
1331    doc: Specify minimum xmlto version to XORG_WITH_XMLTO
1332    
1333    Adds an optional parameter to XORG_WITH_XMLTO to enforce a minimum
1334    version needed like the asciidoc version check.
1335    
1336    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1337
1338commit c87b5e9657e3fa1270f7283ab8b16aed1be7b5fd
1339Author: Dan Nicholson <dbn.lists@gmail.com>
1340Date:   Wed Mar 3 20:16:45 2010 -0800
1341
1342    doc: Specify minimum asciidoc version to XORG_WITH_ASCIIDOC
1343    
1344    Adds an optional parameter to XORG_WITH_ASCIIDOC to enforce a minimum
1345    version needed.
1346    
1347    Tested-by: Gaetan Nadon <memsize@videotron.ca>
1348    Tested-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
1349    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1350
1351commit a01b2ce6b196555660a64c43623acab1f6fea76a
1352Author: Dan Nicholson <dbn.lists@gmail.com>
1353Date:   Sat Feb 27 11:28:08 2010 -0800
1354
1355    silent: Set AM_DEFAULT_VERBOSITY for compatibility on older automake
1356    
1357    Custom silent rules will become recursive on older automake where
1358    AM_SILENT_RULES is not included. Set AM_DEFAULT_VERBOSITY in this
1359    fallback case for compatibility.
1360    
1361    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1362    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1363
1364commit de24a6d42eafa1aaa089927e9b2c2c7ef8827550
1365Author: Gaetan Nadon <memsize@videotron.ca>
1366Date:   Tue Feb 23 11:03:42 2010 -0500
1367
1368    AM_SILENT_RULES: move from XORG_CWARNFLAGS to XORG_DEFAULT_OPTIONS
1369    
1370    This m4 statement does not belong in the macro for compiler
1371    warning flags. It is more appropriate to group it with the macro
1372    providing default options for X.Org modules.
1373    
1374    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1375    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1376
1377commit 0851a3455fddbbaef73fae088469a48f2f975783
1378Author: Gaetan Nadon <memsize@videotron.ca>
1379Date:   Fri Jan 29 14:02:26 2010 -0500
1380
1381    Version bump: 1.6.0
1382    
1383    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1384
1385commit a8f386498bb18c7f95f874a56e3526a1b0b3029c
1386Author: Gaetan Nadon <memsize@videotron.ca>
1387Date:   Tue Feb 2 17:14:00 2010 -0500
1388
1389    doc: add XORG_ENABLE_DEVEL_DOCS and XORG_ENABLE_SPECS
1390    
1391    Identical to XORG_ENABLE_DOCS, this macros allows modules
1392    to classify docs per type and selectively control their building.
1393    
1394    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1395
1396commit 1df1e7fd649b4ff3e00a908d4ade54bc6b32892f
1397Author: Gaetan Nadon <memsize@videotron.ca>
1398Date:   Sun Jan 31 08:56:50 2010 -0500
1399
1400    XORG_WITH_GROFF: add tests for -ms and -mm macro packages
1401    
1402    OS and distros often splits groff in a basic and full package, the former
1403    having the groff program and the later having devices, fonts and macros
1404    Checking for the groff executable is not enough.
1405    
1406    Use HAVE_GROFF if you do not use -ms or -mm
1407    Use HAVE_GROFF_MS and/or HAVE_GROFF_MM otherwise
1408    
1409    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1410
1411commit 6fce3ec9157794d1a90ae28b2615c00ce84f95ed
1412Author: Gaetan Nadon <memsize@videotron.ca>
1413Date:   Fri Jan 29 10:47:40 2010 -0500
1414
1415    Add XORG_ENABLE_DOCS to control the building of documentation
1416    
1417    This macro is intended for modules to control, in a single option,
1418    the building of the documentaion. Using --enable-docs=no, all
1419    documentation is skipped, regardless of the tool used to build it.
1420    
1421    It should be used in conjunction with other XORG_WITH_* macros
1422    which handle cases where some specific tool is not available.
1423    
1424    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1425
1426commit df1fe112b8fca77ce10ecfe2b9e4a082b29b732d
1427Author: Gaetan Nadon <memsize@videotron.ca>
1428Date:   Fri Jan 29 10:25:00 2010 -0500
1429
1430    Additional doc macros for GROFF, FOP and PS2PDF
1431    
1432    Identical to XMLTO, DOXYGEN and ASCIIDOC.
1433    Allow platform builders to selectively turn off tools that
1434    are not present or back level. Matching documentation target
1435    will be shipped.
1436    
1437    For example, --without-fop will skip the pdf format while
1438    allowing other formats to proceed.
1439    
1440    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1441
1442commit 4411328d3200392e9b8d830a45d9ac679abb4ead
1443Author: Jeremy Huddleston <jeremyhu@apple.com>
1444Date:   Wed Feb 3 23:39:37 2010 -0800
1445
1446    Add -Wformat=2 to the default CWARNFLAGS
1447    
1448    This will include -Wformat-security to catch possible security problems in formatting in printf, scanf, etc.
1449    
1450    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1451    Reviewed-by: Matt Turner <mattst88@gmail.com>
1452
1453commit 46d22716aed8d7e8ee188c2f2d2b3ba600dc3dd3
1454Author: Gaetan Nadon <memsize@videotron.ca>
1455Date:   Sun Jan 17 21:21:10 2010 -0500
1456
1457    Version bump: 1.5.0
1458    
1459    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1460
1461commit 7e89b1cecfdb8115fa159584762f4d0db7455305
1462Author: Gaetan Nadon <memsize@videotron.ca>
1463Date:   Sun Jan 17 21:01:44 2010 -0500
1464
1465    Add XORG_WITH_ASCIIDOC and XORG_WITH_DOXYGEN
1466    
1467    Based on XORG_WITH_XMLTO
1468    
1469    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1470
1471commit 296c390247553b0070dd05260fe6f55f793a374c
1472Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1473Date:   Tue Jan 5 23:04:25 2010 +0100
1474
1475    Add XORG_WITH_XMLTO to factorize xmlto tests.
1476    
1477    This also allow to configure with --without-xmlto to ignore
1478    a 3rd party xmlto tool on systems that normally don't have it,
1479    in order to have reproducable builds.
1480    
1481    Reviewed-by: Rémi Cardona <remi@gentoo.org>
1482    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1483    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1484
1485commit 2e75ae9b22de0fa36adde6de7b7e5c1c1a825d69
1486Author: Julien Cristau <jcristau@debian.org>
1487Date:   Sat Jan 16 15:00:38 2010 +0000
1488
1489    Bump to 1.4.2
1490
1491commit 1c8cfa5cd1881f810ed62ff082e67777985c7599
1492Author: Alan Coopersmith <alan.coopersmith@sun.com>
1493Date:   Thu Jan 14 09:32:32 2010 -0800
1494
1495    Update Sun license notices to current X.Org standard form
1496    
1497    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1498
1499commit 43e41a5537ba892613f2a9f79cdf209fd7c915b3
1500Author: Julien Cristau <jcristau@debian.org>
1501Date:   Sat Jan 2 20:44:37 2010 +0000
1502
1503    INSTALL doesn't belong in docdir, use pkgdatadir instead
1504    
1505    docdir stays in xorg-macros.pc so we don't break the existing
1506    $(INSTALL_CMD).
1507    
1508    Tested-by: Gaetan Nadon <memsize@videotron.ca>
1509    Signed-off-by: Julien Cristau <jcristau@debian.org>
1510    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1511
1512commit 29f4c09cc252d834278e6e1ad77ad56dc0545d29
1513Author: Gaetan Nadon <memsize@videotron.ca>
1514Date:   Tue Dec 15 14:25:17 2009 -0500
1515
1516    configure.ac: use single statement for file generation
1517    
1518    Reported-by: Peter Hutterer <peter.hutterer at who-t.net>
1519    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1520
1521commit c3c40da5392c2f1fe4b15c6e90dc8325b3c26561
1522Author: Gaetan Nadon <memsize@videotron.ca>
1523Date:   Tue Dec 15 14:01:05 2009 -0500
1524
1525    macros.m4.in: use backticks rather than $() for cmd subs
1526    
1527    Reviewed-by: Dan Nicholson <dbn.lists at gmail.com>
1528    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1529
1530commit 48e2b3d0ee8d637d83b88bf29c6d417f61aaa0e4
1531Author: Colin Watson <cjwatson@canonical.com>
1532Date:   Sat Oct 10 13:28:28 2009 +0100
1533
1534    Use conservative default for malloc(0) when cross-compiling #24460
1535    
1536    When cross-compiling, AC_RUN_IFELSE can't run test programs.
1537    MALLOC_ZERO_RETURNS_NULL=yes is a conservative default in this case.
1538    
1539    Signed-off-by: Colin Watson <cjwatson@canonical.com>
1540    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1541
1542commit 2c83c9068167729652994cf3203ca27245745482
1543Author: Adam Jackson <ajax@redhat.com>
1544Date:   Mon Dec 14 17:12:13 2009 -0500
1545
1546    util-macros 1.4.1
1547    
1548    Signed-off-by: Adam Jackson <ajax@redhat.com>
1549
1550commit 8e126170a4bf23ae73a08d254f6c6fb7e6b46748
1551Author: Adam Jackson <ajax@redhat.com>
1552Date:   Mon Dec 14 17:05:48 2009 -0500
1553
1554    Don't mention libdir in the .pc file
1555    
1556    Signed-off-by: Adam Jackson <ajax@redhat.com>
1557
1558commit 862911eb71165c9409044986171b8ce2c1ec70b7
1559Author: Adam Jackson <ajax@redhat.com>
1560Date:   Mon Dec 14 17:05:10 2009 -0500
1561
1562    Install the .pc file in $(datadir)
1563    
1564    Signed-off-by: Adam Jackson <ajax@redhat.com>
1565
1566commit 03b04a6b5d61aafbd2705f7d29e58e0c92553a4a
1567Author: Adam Jackson <ajax@redhat.com>
1568Date:   Mon Dec 14 16:54:41 2009 -0500
1569
1570    macros 1.4.0
1571
1572commit 64e61146ecf6cde01a72d95f905f8d3790b78b58
1573Author: Carl Worth <cworth@cworth.org>
1574Date:   Mon Nov 30 20:00:31 2009 -0800
1575
1576    Install .pc file in $libdir where it belongs (not $datadir).
1577    
1578    The .pc file was previously being installed in ${prefix}/share/pkgconfig
1579    but all other modules install their .pc files to ${prefix}/lib/pkgconfig
1580
1581commit 1e50b971bf7273f958e11cbcf3dc07a6fab04335
1582Author: Gaetan Nadon <memsize@videotron.ca>
1583Date:   Sat Nov 21 17:28:32 2009 -0500
1584
1585    xorg-macros.pc.in: create a meta data file for util-macros
1586    
1587    This is motivated primarly by XORG_INSTALL who needs to locate
1588    the docdir when invoked from any module that may not be installed
1589    using same prefix (default or otherwise).
1590    
1591    There are other potential use for this file.
1592
1593commit ceecddadf923ceae76c12057103ec7a409718a34
1594Author: Gaetan Nadon <memsize@videotron.ca>
1595Date:   Thu Oct 22 12:20:42 2009 -0400
1596
1597    Add an XORG_INSTALL macro to allow comps to copy the INSTALL file #24206
1598    
1599    The Makefile installs INSTALL in share/doc/util-macros
1600        An INSTALL_CMD is provided in the new XORG_INSTALL macro
1601        which is added to XORG_DEFAULT_OPTIONS.
1602    
1603        Components add INSTALL target to their Makefile similar to ChangeLog
1604
1605commit e6ceec1bc497ce9d311fd17e9a171e83148362ad
1606Author: Gaetan Nadon <memsize@videotron.ca>
1607Date:   Mon Oct 12 11:07:14 2009 -0400
1608
1609    Add an XORG_INSTALL macro to allow comps to copy the INSTALL file #24206
1610    
1611    The Makefile installs INSTALL in share/doc/util-macros
1612    An INSTALL_CMD is provided in the new XORG_INSTALL macro
1613    which is added to XORG_DEFAULT_OPTIONS.
1614    
1615    Components add INSTALL target to their Makefile similar to ChangeLog
1616
1617commit 22d7360510553775650e6a4e134f165937db4abe
1618Author: Gaetan Nadon <memsize@videotron.ca>
1619Date:   Sat Oct 10 15:38:19 2009 -0400
1620
1621    INSTALL file missing/incorrect #24206
1622    
1623    Add missing INSTALL file. Use standard GNU file on building tarball
1624    For all X.Org components.
1625
1626commit bf44a8df3831ac465fd79937b059e54c4dc34486
1627Author: Gaetan Nadon <memsize@videotron.ca>
1628Date:   Sat Oct 10 15:33:58 2009 -0400
1629
1630    .gitignore: use common defaults with custom section # 24239
1631    
1632    Using common defaults will reduce errors and maintenance.
1633    Only the very small or inexistent custom section need periodic maintenance
1634    when the structure of the component changes. Do not edit defaults.
1635    For all X.Org components.
1636
1637commit 98c7586b04dea14d89df6e7ad1c733e6539cd095
1638Author: Gaetan Nadon <memsize@videotron.ca>
1639Date:   Sat Nov 7 07:58:33 2009 -0500
1640
1641    Lower version from 2.63 to 2.60 Tinderbox failed
1642
1643commit b47a30d3c91fbd5b230a11b1a5ddbfb943bcd7b2
1644Author: Gaetan Nadon <memsize@videotron.ca>
1645Date:   Mon Oct 12 10:57:13 2009 -0400
1646
1647    configuration: update, fix warnings, apply global maintenance #24450
1648    
1649    Update configure.ac using autotools utilities and wiki guidelines
1650    
1651    configure.ac: AM_MAINTAINER_MODE missing #24238
1652    
1653    This turns off maintainer mode build rules in tarballs.
1654    For all X.Org components.
1655
1656commit f8695cf7b892028bf7c502e85f26f0a756edd316
1657Author: Gaetan Nadon <memsize@videotron.ca>
1658Date:   Mon Oct 12 10:37:36 2009 -0400
1659
1660    ChangeLog: generated file not cleaned from the dist directory #24278
1661    
1662        CHANGELOG_CMD was written in the wrong directory.
1663        Update cmd to generate in $(top_srcdir)
1664    
1665        Tested in regular build with git: dist, distcheck and distclean
1666        Tested in VPATH build with git:  dist, distcheck and distclean
1667        Tested above scenario from tarballs with git not available
1668
1669commit d6584a4a52a6fb0eaf979555097bb32621c13cb1
1670Author: Alan Coopersmith <alan.coopersmith@sun.com>
1671Date:   Wed Sep 9 13:31:38 2009 -0700
1672
1673    Version bump: 1.3.0
1674    
1675    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1676
1677commit 79c00a5b5c7866fcc4756993cf4bf4eb2234e9de
1678Author: Gaetan Nadon <memsize@videotron.ca>
1679Date:   Tue Sep 1 09:45:30 2009 -0400
1680
1681    Fix obsolete macro warnings for AC_HELP_STRING #23628
1682    
1683    When checking for warnings in any module using XORG_RELEASE_VERSION
1684    one or more warnings on AC_HELP_STRING appears. The macro has been
1685    replaced with AS_HELP_STRING
1686    
1687    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1688    Acked-by: Alan Coopersmith <alan.coopersmith@sun.com>
1689
1690commit 4c91617d964915005634339afa24b04ec8a2f801
1691Author: Peter Hutterer <peter.hutterer@who-t.net>
1692Date:   Tue Sep 1 10:33:37 2009 +1000
1693
1694    Add XORG_DEFAULT_OPTIONS meta-macro.
1695    
1696    Many modules use the same set of m4 macros. Additions to the macros require
1697    updating the configure.ac for each module affected. In the case of e.g.
1698    protos and libs this means updating every single module.
1699    
1700    This patch adds a XORG_DEFAULT_OPTIONS meta-macro that uses the other macros
1701    defined. Macros can be added to this meta-macro and modules immediately get
1702    to make use of it - without changes required to configure.ac.
1703    
1704    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1705
1706commit 3b7dd69d0bf6bc19f0e4403bb6611de87497aac3
1707Author: Pauli Nieminen <suokkos@gmail.com>
1708Date:   Sat Jul 25 15:53:02 2009 +0300
1709
1710    Add XORG_STRICT_OPTION macro for strict compilation option
1711    
1712    Strict compilation option can be used to get rid of warnings that often are
1713    showing real hidden bug in code. That just waits to cause problems.
1714    
1715    CWARNFLAGS has to be added to AM_C(PP)FLAGS to use strict compilation mode
1716    in Makefile.am. Automatic addition to compiler flags would cause some configure
1717    checks fail.
1718    
1719    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1720
1721commit b0618a909a56d958a6690318545379e105587d82
1722Author: Peter Hutterer <peter.hutterer@who-t.net>
1723Date:   Tue Aug 25 09:40:01 2009 +1000
1724
1725    Add AM_SILENT_RULES to default XORG_CWARNFLAGS
1726    
1727    Automake 1.11 supports silent builds with the new AM_SILENT_RULES.
1728    http://sources.redhat.com/automake/automake.html#Options
1729    
1730    This loosely qualifies as a CWARNFLAG since it allows all the warnings to be
1731    seen and enables modules to gain support from the feature without any
1732    changes needed to configure.
1733    
1734    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1735    Signed-off-by: James Cloos <cloos@jhcloos.com>
1736
1737commit 347e2ae727ac43026776154172ca1ad0360c903c
1738Author: Alan Coopersmith <alan.coopersmith@sun.com>
1739Date:   Thu Jun 18 11:26:09 2009 -0700
1740
1741    Version bump: 1.2.2
1742    
1743    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1744
1745commit b885bb59ec23bb338c8df68e40c6ef2c2a9325cc
1746Author: Jon TURNEY <jon.turney@dronecode.org.uk>
1747Date:   Mon Jun 8 14:17:06 2009 +0100
1748
1749    Use correct CWARNFLAGS when cross compiling
1750    
1751    Rather than checking the version of some random gcc which happens to be in
1752    the path to determine which warning flags are supported, we should check the
1753    gcc we are going to use for the build
1754    
1755    For example, when cross-compiling, if the host gcc is >= 3.4 but the
1756    cross-compiler gcc is not, this will cause unsupported warning flags to be
1757    used
1758    
1759    This seems to work, but I don't know enough autofoolery to be sure this is
1760    right...
1761    
1762    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1763
1764commit 21a957428aa69b03f585378dc6e70ad9f5c513c6
1765Author: Dan Nicholson <dbn.lists@gmail.com>
1766Date:   Fri Feb 6 12:28:03 2009 -0800
1767
1768    Use m4 for XORG_MACROS_VERSION to error during autoconf
1769    
1770    Check the needed macros version with m4 so that the proper version is
1771    determined during autoconf. This prevents a faulty configure from being
1772    generated.
1773    
1774    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1775
1776commit 72d82ed965f9cfbc310897ec17d2dc10bddcef4e
1777Author: Dan <danstowell+xorg@gmail.com>
1778Date:   Thu Feb 19 06:50:30 2009 -0800
1779
1780    Fix incorrect warning message in XORG_MACROS_VERSION
1781    
1782    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1783
1784commit b3a43fbe312d4da796aa1fcb04a8a27f7961641d
1785Author: Dan Nicholson <dbn.lists@gmail.com>
1786Date:   Thu Feb 5 13:30:27 2009 -0800
1787
1788    Restore part of the XORG_MACROS_VERSION comment
1789    
1790    The 1.1 or later part is actually important since XORG_MACROS_VERSION
1791    didn't exist before then.
1792    
1793    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1794
1795commit f05148fa57a1ebdb75135f026b7c5f4678a3b293
1796Author: Dan Nicholson <dbn.lists@gmail.com>
1797Date:   Thu Feb 5 09:17:17 2009 -0800
1798
1799    Fix comment in XORG_MACROS_VERSION on usage
1800    
1801    The comment recommending checking XORG_MACROS_VERSION with m4_ifndef was
1802    flawed for two reasons:
1803    
1804     * m4_fatal should be used if the macro is not defined. There's no use
1805       generating configure if the macro doesn't exist. Just fail during
1806       autoconf.
1807     * There's no reason to mention the version needed in the message. That
1808       check does not do version verification. That's what the actual macro
1809       is for.
1810    
1811    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
1812
1813commit 96585612d17d31fa9dd0f5c260fc33f72be9a75f
1814Author: Jeremy Huddleston <jeremy@redxiii.local>
1815Date:   Sun Feb 1 21:09:44 2009 -0800
1816
1817    XORG_CWARNFLAGS: += is not valid for appending in bourn scripts
1818    
1819    Fixes:
1820    
1821    ./configure: line 12921: CWARNFLAGS+= -Wold-style-definition -Wdeclaration-after-statement: command not found
1822
1823commit 58803c60b73110a49aecec4202e7820887633bcc
1824Author: Alan Coopersmith <alan.coopersmith@sun.com>
1825Date:   Tue Dec 16 15:05:46 2008 -0800
1826
1827    Version bump: 1.2.1
1828
1829commit e1d9461d1325bb7e48ef616650eb1d49f8945c2b
1830Author: Alan Coopersmith <alan.coopersmith@sun.com>
1831Date:   Tue Dec 16 15:05:05 2008 -0800
1832
1833    Replace gitweb URL with cgit URL in README
1834
1835commit 55e8d740881ef622376440819119641e67aeb285
1836Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1837Date:   Mon Dec 8 17:40:31 2008 +0100
1838
1839    fix distcheck target
1840    
1841    Arrange that distcleancheck ignores ChangeLog left over by distclean.
1842    
1843    Don't mention ChangeLog under *CLEANFILES, can't be rebuilt from release
1844    tarball; ChangeLog is automatically distributed, no need to mention it.
1845
1846commit 88920d0896be5194f626888d5d8b54edd1ffe1f6
1847Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1848Date:   Wed Dec 10 08:45:56 2008 +0100
1849
1850    use more CWARNFLAGS with gcc 3.4 too.
1851    
1852    Only gcc 3.3 and earlier version don't support them.
1853    Reported and tested by Peter Breitenlohner.
1854
1855commit 9ff834493ece0a0ea7d7f15c1706bab022362cc5
1856Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1857Date:   Sun Dec 7 11:54:39 2008 +0100
1858
1859    Fix CWARNFLAGS for gcc versions < 4
1860
1861commit 1d2a0c58ffa7be9c47ea0a097f54e012cf5d44de
1862Author: Alan Coopersmith <alan.coopersmith@sun.com>
1863Date:   Wed Jul 30 13:47:04 2008 -0700
1864
1865    Allow setting XORG_SGML_PATH to a non-default path when running configure
1866
1867commit dcbbcb582cf712e59c1474632380943bea8f1a5e
1868Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1869Date:   Fri Nov 14 23:06:48 2008 +0100
1870
1871    bump to 1.2.0
1872
1873commit 0e8c41dd09080cf692b7437bb23435137febaf26
1874Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1875Date:   Fri Nov 14 23:05:45 2008 +0100
1876
1877    fix XORG_PROG_RAWCPP for cygwin
1878    
1879    Patch by Yaakov Selkowitz from xorg mailing list
1880    http://lists.freedesktop.org/archives/xorg/attachments/20081016/04a64242/attachment.asc
1881
1882commit 4cce4c8169a252bce129411dbf70c3212974e7ca
1883Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1884Date:   Fri Nov 14 22:59:28 2008 +0100
1885
1886    define XORG_CWARNFLAGS macro
1887
1888commit 2663b7a6b31e5e3d03b42a50b27f64737a35e9aa
1889Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1890Date:   Fri Nov 14 22:38:27 2008 +0100
1891
1892    define and use XORG_CHANGELOG macro
1893
1894commit b8a5186c585b4f01971457f0d59cc7480cf528e8
1895Author: Peter Breitenlohner <peb@mppmu.mpg.de>
1896Date:   Fri Nov 14 22:26:06 2008 +0100
1897
1898    reorganize autoconf macro files
1899    
1900    append xorgversion.m4 to xorg-macros.m4.in, instead of installing
1901    it as separate file.
1902    Avoid copying some code from xorgversion.m4 to configure.ac.
1903
1904commit a3a533044de7c8c360d0de312ac75b32db04e35e
1905Author: Adam Jackson <ajax@redhat.com>
1906Date:   Wed Mar 5 14:53:00 2008 -0500
1907
1908    bump to 1.1.6
1909
1910commit e1c1ee013e72dafd7b00ca96a8d4a25273b88e15
1911Author: Jeremy Huddleston <jeremy@tifa-2.local>
1912Date:   Sat Feb 16 02:18:50 2008 -0800
1913
1914    Support version strings  like 1.2.3-blah4
1915
1916commit e20c503d24e5ccf03035aa0f6d833d235d2179df
1917Author: Keith Packard <keithp@koto.keithp.com>
1918Date:   Mon Aug 13 19:21:58 2007 -0700
1919
1920    Cannot use AC_CHECK_FILE when cross compiling; assume no LINUXDOC.
1921    
1922    As AC_CHECK_FILE cannot be used when cross compiling, just assume linuxdoc
1923    is not present.
1924
1925commit f2ddb356d86225a8ff6d1d1397fb2156cebd360f
1926Author: Daniel Stone <daniel@fooishbar.org>
1927Date:   Sun Dec 24 06:17:44 2006 +0200
1928
1929    bump to 1.1.5
1930
1931commit e8b485d9252ffbb357a0b987ab1488d4033b555c
1932Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1933Date:   Mon Dec 18 18:25:25 2006 -0800
1934
1935    Bug 9368: non portable sed usage in xorgversion.m4
1936    
1937    Bugzilla #9368 <https://bugs.freedesktop.org/show_bug.cgi?id=9368>
1938    Patch #8140 <https://bugs.freedesktop.org/attachment.cgi?id=8140>
1939
1940commit 0a4aadbda211a5128bae1c2e860b781c95c4bbf5
1941Author: Daniel Stone <daniel@fooishbar.org>
1942Date:   Sat Dec 16 01:14:27 2006 +0200
1943
1944    bump to 1.1.4
1945
1946commit eb371188086824c4655840dd72831d16fbfb17ce
1947Author: Daniel Stone <daniel@fooishbar.org>
1948Date:   Wed Dec 6 19:02:46 2006 +0200
1949
1950    Makefile.am: make ChangeLog hook safer
1951    Make ChangeLog hook as safe as possible.
1952
1953commit e091014e3c7573a49ce51d67f359bd0f3d3e1893
1954Author: Daniel Stone <daniel@fooishbar.org>
1955Date:   Thu Nov 30 22:05:27 2006 +0200
1956
1957    bump to 1.1.3
1958
1959commit f15961997e9f5986857ed0b143cbaafda1a84cb8
1960Author: Andres Salomon <dilinger@debian.org>
1961Date:   Thu Nov 30 22:05:13 2006 +0200
1962
1963    xorgversion: automatic PACKAGE_VERSION_* (bug #8590)
1964    Automatically define PACKAGE_VERSION_{MAJOR,MINOR,PATCHLEVEL} when
1965    XORG_RELEASE_VERSION is called.
1966
1967commit 0d92c7e31df95c09a9cf1215e9ccb069da97f27a
1968Author: Daniel Stone <daniel@fooishbar.org>
1969Date:   Wed Nov 8 16:38:16 2006 +0200
1970
1971    bump to 1.1.2
1972
1973commit d7a63459d1b1313fbde2827c00b36ee1e9c37f70
1974Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
1975Date:   Fri Nov 3 12:43:12 2006 -0500
1976
1977    Introduce separate configure switches for each output format.
1978
1979commit 5dc687a27322c9c6f7f9fb69b7005f35030b9571
1980Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
1981Date:   Thu Nov 2 19:49:29 2006 -0500
1982
1983    Fix handling of defs.ent to allow arbitrary install prefixes.
1984
1985commit 58a807e728bfbb3fac080adbb7c502ef3531d5f3
1986Author: David Nusinow <dnusinow@debian.org>
1987Date:   Sun Oct 29 18:48:34 2006 -0500
1988
1989    Add support for building docbook docs
1990
1991commit bcd763dd427d2afd9066d52990363398d15d2c6a
1992Author: David Nusinow <dnusinow@debian.org>
1993Date:   Sun Oct 15 22:45:58 2006 -0400
1994
1995    Make building pdf's configurable, though only disabled when it is explicitly set to no
1996
1997commit de2a4b2880117f1de38c9f870024cfb8a9f3ba8d
1998Author: Daniel Stone <daniel@fooishbar.org>
1999Date:   Sun Aug 27 12:59:25 2006 +0300
2000
2001    make ChangeLog hook distcheck-safe
2002
2003commit d9062e4077ebfd0985baf8418f3d0f111b9ddbba
2004Author: Daniel Stone <daniel@fooishbar.org>
2005Date:   Sun Aug 27 12:50:20 2006 +0300
2006
2007    xorg-macros: remove GNU-userland special case; bump to 1.1.1
2008    Remove special-casing of man page suffices for GNU-userland systems (Linux,
2009    Hurd, GNU/kFreeBSD).  Bump to version 1.1.1.
2010
2011commit 28d7a6d80abb2d8d1a670b09394a5fc5458dd98e
2012Author: Alan Coopersmith <alan.coopersmith@sun.com>
2013Date:   Thu Jul 20 18:13:50 2006 -0700
2014
2015    Version bump to 1.1.0
2016
2017commit efac6ccd6f0b5d673397441df753893b18c6a998
2018Author: Alan Coopersmith <alanc@alans-ferrari.(none)>
2019Date:   Tue Jul 18 14:44:30 2006 -0700
2020
2021    Ignore xorg-macros.m4 (built by configure) and make dist/distcheck files
2022
2023commit c6f51fb11a0f264e9cd89cf27916ca83c418f6ab
2024Author: Alan Coopersmith <alan.coopersmith@sun.com>
2025Date:   Thu Jul 13 17:00:19 2006 -0700
2026
2027    Add XORG_LINT_LIBRARY for building lint library data files
2028
2029commit 33b44547db1b801a520b64dd67c468ab04eaf269
2030Author: Alan Coopersmith <alan.coopersmith@sun.com>
2031Date:   Thu Jul 13 14:31:20 2006 -0700
2032
2033    Replace static ChangeLog with dist-hook to generate from git log
2034
2035commit 953df72ff3b8ecf8ac3eadc90ddefd6d0ca6b43e
2036Author: Alan Coopersmith <alan.coopersmith@sun.com>
2037Date:   Thu Jul 13 13:49:46 2006 -0700
2038
2039    Add pointer to git repository to README
2040
2041commit a3ce32d91835471b7f91742850d78b186c4cbe8f
2042Author: Alan Coopersmith <alan.coopersmith@sun.com>
2043Date:   Thu Jul 13 13:46:43 2006 -0700
2044
2045    Add XORG_MACROS_VERSION macro to check minimum version of xorg-macros.m4
2046    
2047    - Move xorg-macros.m4 to xorg-macros.m4.in so @VERSION@ can be substituted from
2048      the version listed in configure.ac
2049    - Add comments to each macro listing what version it was first added in
2050
2051commit 29e3f6d9c7670ff95dc03c9d494dc5f4b93741a4
2052Author: Alan Coopersmith <alan.coopersmith@sun.com>
2053Date:   Thu Jul 13 11:46:48 2006 -0700
2054
2055    Add README file with links to bugzilla & mailing list
2056
2057commit b794890e202dc2359069836d9ebc2ad29f86dfac
2058Author: Alan Coopersmith <alan.coopersmith@sun.com>
2059Date:   Thu Jul 13 11:42:41 2006 -0700
2060
2061    Fill in COPYING file with licenses from other files
2062
2063commit 1bc5f3d51d6bbe749e229c74fb2b834f903dcbd6
2064Author: Alan Coopersmith <alan.coopersmith@sun.com>
2065Date:   Thu Jul 13 11:41:20 2006 -0700
2066
2067    Correct Sun license notice
2068
2069commit 53519cafb9a145901730fb0f2a1fd78e5a0a82e7
2070Author: Michael Banck <mbanck@debian.org>
2071Date:   Thu Jul 13 00:09:23 2006 -0700
2072
2073    Bug #6782: Fix *_MAN_* macros to support GNU/Hurd
2074    
2075    X.Org Bug #6782 <https://bugs.freedesktop.org/show_bug.cgi?id=6782>
2076    Patch #5519 <https://bugs.freedesktop.org/attachment.cgi?id=5519>
2077
2078commit aa72e4701d6653a7cf7d47b51b705e1c0890f381
2079Author: Alan Coopersmith <alan.coopersmith@sun.com>
2080Date:   Wed Jul 12 19:31:47 2006 -0700
2081
2082    Add XORG_WITH_LINT to add --with-lint flag for checking with lint, sparse, etc.
2083
2084commit 08130178348738603ab916036ac63afd41b27e94
2085Author: Alan Coopersmith <alan.coopersmith@sun.com>
2086Date:   Wed Jul 12 19:30:25 2006 -0700
2087
2088    Create .gitignore
2089
2090commit ddb3d2e94df03c5d06717189f5e349342ad0fa09
2091Author: Adam Jackson <ajax@nwnk.net>
2092Date:   Fri May 19 18:46:00 2006 +0000
2093
2094    Bump to 1.0.2
2095
2096commit 1e910874c0c4211b0d6e462e5cdffb4c86e27e6f
2097Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2098Date:   Fri Apr 21 22:47:13 2006 +0000
2099
2100    X.Org Bug #6654 <https://bugs.freedesktop.org/show_bug.cgi?id=6654> Patch
2101        #5374 <https://bugs.freedesktop.org/attachment.cgi?id=5374> Fix *_MAN_*
2102        macros to support GNU/kFreeBSD (Robert Millan)
2103
2104commit 3ee458d03fcebc01d337d01e5e31dede704d56ff
2105Author: Kevin E Martin <kem@kem.org>
2106Date:   Wed Dec 21 02:30:08 2005 +0000
2107
2108    Update package version for X11R7 release.
2109
2110commit 09e1ea8a68915d5a8c3dd2c2adbbbcd1bfdf2bd3
2111Author: Adam Jackson <ajax@nwnk.net>
2112Date:   Mon Dec 19 16:36:02 2005 +0000
2113
2114    Stub COPYING files
2115
2116commit 986030a4deca03addb3e5b40da66c8baa78941a5
2117Author: Kevin E Martin <kem@kem.org>
2118Date:   Thu Dec 15 00:24:40 2005 +0000
2119
2120    Update package version number for final X11R7 release candidate.
2121
2122commit af0164c2ded2dcc95b72ca3b9bfbad9b790490f7
2123Author: Kevin E Martin <kem@kem.org>
2124Date:   Fri Dec 9 15:28:41 2005 +0000
2125
2126    Better macro to check whether any of malloc(0), realloc(ptr,0) or calloc(0)
2127        return NULL since Xlib expects all three to return a valid pointer.
2128
2129commit 80c3aba8ac4af96c3d9407ecbed2f6c813adbbe1
2130Author: Kevin E Martin <kem@kem.org>
2131Date:   Fri Dec 9 03:01:09 2005 +0000
2132
2133    Add support for building other formats from sgml docs.
2134
2135commit 98959e58700f53c1cafba3b4a2fa6e103c71a55d
2136Author: Kevin E Martin <kem@kem.org>
2137Date:   Sat Dec 3 05:49:47 2005 +0000
2138
2139    Update package version number for X11R7 RC3 release.
2140
2141commit 222df94cf4d433b893c092ccd7c38d86d59ce034
2142Author: Kevin E Martin <kem@kem.org>
2143Date:   Sat Dec 3 04:41:21 2005 +0000
2144
2145    Add macro to detect when malloc(0) returns NULL for use in libraries.
2146
2147commit 07aaba7edc3028b6066a552ef0636986adddb6ef
2148Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2149Date:   Mon Nov 28 21:58:11 2005 +0000
2150
2151    Bug #5167 <https://bugs.freedesktop.org/show_bug.cgi?id=5167> Linux prefers
2152        *.1x man pages in man1 subdirectory. Also allow builders to override
2153        man page suffixes & directories to match their environments via
2154        configure-time environment variables.
2155
2156commit 1545c8c930025d4f7d76e8d8f28ae87a53b5c9e9
2157Author: Kevin E Martin <kem@kem.org>
2158Date:   Wed Oct 19 02:48:17 2005 +0000
2159
2160    Update package version number for RC1 release.
2161
2162commit b15a7b3dcc5c8af0a1ab837d8ca03910611e0968
2163Author: Kristian Høgsberg <krh@redhat.com>
2164Date:   Mon Oct 17 16:04:44 2005 +0000
2165
2166    Add missing comma in AC_HELP_STRING call.
2167
2168commit 764ee0f698a17e34998b0e6d85f2c6cbf8f624c7
2169Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2170Date:   Mon Oct 3 21:22:08 2005 +0000
2171
2172    - For all drivers that have a <driver>.sgml file, add code in their build
2173        system to build the README file at make dist time
2174    - in util/macros/xorg-macros.m4, add a new XORG_CHECK_LINUXDOC macro that
2175        will check if the required tools and files exist, and if so set a
2176        conditional.
2177    - util/modular/symlink.sh
2178    - Link all the <driver>.sgml to xf86-video-<driver>/README.sgml
2179    - Add all the README.<driver> to the list of excluded files
2180    - xc/programs/Xserver/hw/xfree86/doc/sgml/SiS.sgml: Various changes to make
2181        it spew less warnings when the text file is built.
2182
2183commit d690e4a9febd07988d149a967791c5629c17b258
2184Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2185Date:   Thu Sep 29 22:57:31 2005 +0000
2186
2187    Add -undef to RAWCPPFLAGS if cpp used for RAWCPP supports it
2188
2189commit f950050734e36192307fcb11c70fbfb25fa03b9c
2190Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2191Date:   Sat Sep 24 02:30:22 2005 +0000
2192
2193    Add XORG_MANPAGE_SECTIONS() macro for handling the different man page
2194        sections used on Linux vs. BSD vs. SysV
2195
2196commit 7c9a7b7fb4955cef87cd4403c0f36b5f1a84d9c9
2197Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2198Date:   Mon Aug 15 19:53:37 2005 +0000
2199
2200    Move RAWCPP macro to xorg-macros.m4 so other modules can use it Add check
2201        for whether or not RAWCPP needs -traditional instead of hardcoding it,
2202        so non-gcc cpp's can be used
2203
2204commit 9161e0233a932f88a79d228f538565c48dba58d4
2205Author: Kevin E Martin <kem@kem.org>
2206Date:   Fri Jul 29 21:22:57 2005 +0000
2207
2208    Various changes preparing packages for RC0:
2209    - Verify and update package version numbers as needed
2210    - Implement versioning scheme
2211    - Change bug address to point to bugzilla bug entry form
2212    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
2213        reenable it)
2214    - Fix makedepend to use pkgconfig and pass distcheck
2215    - Update build script to build macros first
2216    - Update modular Xorg version
2217