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