summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Version bump: 1.19.0util-macros-1.19.0Gaetan Nadon2014-03-271-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_PROG_RAWCPP: Add TRADITIONALCPPFLAGSHans de Goede2014-03-271-0/+2
| | | | | | | | | | | | | | In some cases we may want to have -traditional for proper whitespace preserving without -undef, as we actually want the system definitions to be in place so we can #ifdef on them. IE in xinit various .cpp files contain things like #ifdef __APPLE__ and #ifdef __linux__ So this patch adds a TRADITIONALCPPFLAGS variable which contains just -traditional where applicable without the other RAWCPPFLAGS for unsetting the system definitions. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Provide the automake INSTALL file at level 1.11Gaetan Nadon2014-03-271-21/+100
| | | | | | | | | | Now that the minimum level for automake is 1.11, replace the current INSTALL with the one from automake 1.11. Recall that the file in this package is installed in $pkgdatadir and is copied by each xorg module through the make 'dist' target. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Add XORG_WITH_M4 macroArnaud Fontaine2014-02-081-0/+23
| | | | | | | | | Originally from XCB, this macro checks for the presence of m4 or gm4 which supports -I dir. The AC_PATH_PROGS_FEATURE_CHECK autoconf macro requires autoconf 2.62. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Bump minimum Autoconf required version to 2.62Gaetan Nadon2014-02-061-1/+1
| | | | | | | | | | | | | | | | The main motivation is to catch-up with the development reality and allow use of features in Autoconf 2.62 as well as Automake 1.11. As usual this means no features found only in versions above those specified are allowed. This is implementing the policy change which is described in: http://www.x.org/wiki/Building_the_X_Window_System/?updated#index2h3 Discussion on xorg minimum autotools requirements: http://lists.x.org/archives/xorg-devel/2013-October/038325.html Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_COMPILER_FLAGS: Add -Wlogical-op to default warning setAlan Coopersmith2013-12-061-1/+1
| | | | | | | | We've fixed several bugs it uncovered already, only one warning left that it adds in a default build. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Version bump: 1.18.0util-macros-1.18.0Gaetan Nadon2013-12-031-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_TESTSET_CFLAG: add -fd which is the SUNCC -Wold-style-definitionGaetan Nadon2013-12-031-1/+1
| | | | | | | Seen in the XCB configuration and found missing in xorg. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_WITH_DOXYGEN: check for the dot graphics utilityGaetan Nadon2013-12-021-1/+17
| | | | | | | | | | It is part of the graphviz package and it may be used by doxygen if the HAVE_DOT is set to "yes" in the doxygen configuration file. The calling module handles if the tool is mandatory or not. Doxygen will work fine without it, but no fancy graphics. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* CWARNFLAGS: comment out -Wcast-qualGaetan Nadon2013-12-021-1/+1
| | | | | | | | | | | On a full X build, this warning accounts for the 5,888 warnings on a total of 12,042. The line is moved to the "noisy" section of warnings. There is a discussion about the pros and cons here: http://lists.x.org/archives/xorg-devel/2013-November/039069.html Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* xorg-macros.m4.in: use the autoconf cache for XORG_CHECK_MALLOC_ZERORoss Burton2013-10-121-4/+5
| | | | | | | | | | | | | Improve configure speed by checking the autoconf cache before compiling and running the test. As this means cross-compilation environments can trivially seed this cache as appropriate, remove the cross-compiling value (which for embedded systems using uclibc is wrong). Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Revert "Interleaved C code and declarations is no longer a portability issue."Bart Massey2013-09-121-0/+1
| | | | | | | This reverts commit 689ea0ec5d8b7594ba2fa9e27b2458cea8a58724. Community consensus is that, while this style is no longer a portability issue, it's a style issue.
* Interleaved C code and declarations is no longer a portability issue.Arnaud Fontaine2013-09-111-1/+0
| | | | | | | This was only supported from GCC 3.0 and OpenBSD was still using GCC 2.95 until recently. Signed-off-by: Arnaud Fontaine <arnau@debian.org>
* Version bump: 1.17.1util-macros-1.17.1Alan Coopersmith2013-09-061-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Strip trailing whitespaceAlan Coopersmith2013-09-063-5/+5
| | | | | | sed -i 's/[[:space:]]*$//' * Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Use the right variable names for the compiler flags in XORG_TESTSET_CFLAGChris Wilson2013-08-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | Whilst populating the xorg_cv_ cache entries, and the subsequent xorg_testset_, we always include the FLAG_PREFIX in the name, to distinguish between C and C++ iterations. However, in the body of the test function, we dropped the FLAG_PREFIX expansion and so always used the empty string and hence did not correctly detect incorrect flags. The bug was introduced with commit 51f69514e65637f575df901ef942515e70314f6a Author: Chase Douglas <chase.douglas@canonical.com> Date: Mon Mar 12 11:49:28 2012 -0700 Separate unknown warning options by language Reported-and-tested-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Sedat Dilek <sedat.dilek@gmail.com> Cc: Chase Douglas <chase.douglas@canonical.com> Cc: Gaetan Nadon<memsize@videotron.ca> Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* autogen.sh: Implement GNOME Build APIbaserock/morphColin Walters2013-01-151-1/+3
| | | | | | http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
* configure: Remove AM_MAINTAINER_MODEAdam Jackson2013-01-151-1/+0
| | | | Signed-off-by: Adam Jackson <ajax@redhat.com>
* Fix spacing in XORG_TESTSET_CFLAGYaakov Selkowitz2012-04-041-1/+1
| | | | | Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Version bump: 1.17util-macros-1.17Gaetan Nadon2012-03-131-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Separate unknown warning options by languageChase Douglas2012-03-121-13/+13
| | | | | | | | | | | | | | | If XORG_COMPILER_FLAGS is called more than once with separate languages, the unknown warning options used internally for unknown warning checking will be set the first time and then the cached value will be used for subsequent languages. This is a problem if the compilers differ between the languages. This change ensures that the unknown warning options are namespaced so multiple XORG_COMPILER_FLAGS calls with different languages are checked separately. Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
* Fix cflag test compiler message and cache idsChase Douglas2012-03-121-2/+6
| | | | | | | | | When the language is C++, the flag checking message references $CC instead of $CXX. The cache id is also xorg_cv_cc_* instead of xorg_cv_cxx_*. This change fixes both issues. Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
* Don't use AS_ECHO in XORG_TESTSET_CFLAGJon TURNEY2012-03-121-5/+5
| | | | | | | | | | Further to commit 52ef6f6, since AS_ECHO isn't supported in autoconf 2.61 either, rewrite use of cache variable in XORG_TESTSET_CFLAG so 'echo' isn't needed at all. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Gaetan Nadon<memsize@videotron.ca> Reviewed-by: Chase Douglas <chase.douglas@canonical.com> Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
* Add XORG_ENABLE_INTEGRATION_TESTSChase Douglas2012-03-121-0/+37
| | | | | | | | | | | | | | | This macro enables a builder to enable/disable integration testing It makes no assumption about the test cases' implementation Test cases may or may not use Automake "Support for test suites" Unit test support usually requires less dependencies and may be built and run under less stringent environments than integration tests. Thus, two separate options for unit and integration testing is desirable. Copied from XORG_ENABLE_UNIT_TESTS. Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
* Version bump: 1.16.2util-macros-1.16.2Gaetan Nadon2012-03-051-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Define BASE_CXXFLAGS when C++ is the chosen languageChase Douglas2012-03-011-71/+105
| | | | | | | | You can use this functionality by setting the language to C++ before calling XORG_DEFAULT_OPTIONS. This can accomplished with AC_LANG(C++). Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Make XORG_TESTSET_CFLAG work for multiple languagesChase Douglas2012-03-011-21/+32
| | | | | Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
* Use AS_ECHO rather than AS_ECHO_N in XORG_TESTSET_CFLAGJon TURNEY2012-02-191-1/+1
| | | | | | | | The AS_ECHO_N macro was only introduced in autoconf 2.62. Backticks remove trailing newlines, so we don't need to use echo -n Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Cache the results of checking compiler flag support in XORG_TESTSET_CFLAGJon TURNEY2012-01-221-13/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since checking all those warning flags takes an amount of time I find irritating, here is an attempt at caching the results of checking compiler warning flag support A couple of aspects which need definitely need review or testing: * I've tried to get things right when not the first flag in the list of alternates is supported, but this really needs testing with a compiler other than gcc * The cache variable naming policy is a bit opaque me, so the names used may need corecting * I've tried to be careful, but who knows what portability sins I have committed :-) This change reduces the time to run the ./configure script produced from a configure.ac containing just AC_INIT([test], 1.0) XORG_COMPILER_FLAGS XORG_CWARNFLAGS XORG_STRICT_OPTION AC_OUTPUT() from ~60s to ~20s on my cygwin machine, and from ~15s to ~9s on a linux VM running on the same hardware v2: AS_TR_SH transforms characters which are invalid in shell variable names, so we don't have to use sed to transform spaces ourself Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Version bump: 1.16.1util-macros-1.16.1Jeremy Huddleston2012-01-201-1/+1
| | | | Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Provide a configure option to turn off the selective -Werror=... CFLAGSJeremy Huddleston2011-12-291-0/+24
| | | | | | | | | | Provide end users with a workaround if they find code doesn't build with the -Werror=... flags provided by BASE_CFLAGS. This can be useful if newer util-macros are used with older source code that had problems, or in the rare case when warnings are expanded to hit more cases (although this case should not happen too much in practice). Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Remove -Winline from BASE_CFLAGSJeremy Huddleston2011-12-101-1/+0
| | | | | | | This might be useful for performance tuning builds against specific compilers, but it is a bit too noisy to be used in general. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Version bump: 1.16.0util-macros-1.16.0Gaetan Nadon2011-12-071-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_TESTSET_CFLAG: Try to both compile & link with the flagsAlan Coopersmith2011-12-011-1/+1
| | | | | | | | | Catches build problems caused by compilers that ignore unknown flags at compile time and pass them to the linker at link time, when the linker considers unknown flags to be fatal errors. Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* XORG_TESTSET_CFLAG: Add support fot -Werror=unused-command-line-argumentJeremy Huddleston2011-11-111-4/+22
| | | | | | This warning was was added to clang in r144365 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Add XORG_MEMORY_CHECK_FLAGS and require it in XORG_ENABLE_UNIT_TESTSAlan Coopersmith2011-11-071-0/+47
| | | | | | | | | | | | | | | | Based on the checks already in libXt/configure.ac and proposed for xserver/configure.ac - makes a common implementation before we make more copies. Callers should be able to just add TESTS_ENVIRONMENT = $(XORG_MALLOC_DEBUG_ENV) If built with an older xorg-macros, then the tests will simply be less stringent, matching what happens on platforms without any simple malloc debugging facilities available. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
* Define __wrap_exit in test program source for XORG_LD_WRAPAlan Coopersmith2011-11-071-3/+8
| | | | | | | | | Otherwise the test fails on Solaris releases that actually have support for ld -wrap because the linker instead returns an error that __wrap_exit is an undefined symbol. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
* Add an optional argument to XORG_LD_WRAPAlan Coopersmith2011-11-071-3/+8
| | | | | | | | | | Allows specifying if ld -wrap support is 'required' or 'optional' for unit tests, so that builds like the xserver which only need ld -wrap for some tests can allow users to enable the others when ld -wrap is not available. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
* Add additional flags to XORG_COMPILER_FLAGSJeremy Huddleston2011-11-061-0/+34
| | | | Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Update XORG_CWARNFLAGS to use XORG_COMPILER_FLAGSJeremy Huddleston2011-11-061-13/+3
| | | | Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Add XORG_COMPILER_FLAGS to replace XORG_CWARNFLAGSJeremy Huddleston2011-11-061-1/+47
| | | | | | See: https://bugs.freedesktop.org/show_bug.cgi?id=31238 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Use XORG_TESTSET_CFLAG in XORG_STRICT_OPTIONJeremy Huddleston2011-11-061-19/+9
| | | | Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
* Add XORG_TESTSET_CFLAG which can be used to test what flags the compiler ↵Jeremy Huddleston2011-11-061-0/+52
| | | | | | | supports Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Fix the test for -Werror=attributesJeremy Huddleston2011-11-061-1/+1
| | | | | | | | The current test was always failing to compile because 'return 0;' was global rather than in the body of a function. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Version bump: 1.15.0util-macros-1.15.0Gaetan Nadon2011-06-231-1/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_WITH_XSLTPROC: warn at development time rather than config timeGaetan Nadon2011-06-221-4/+2
| | | | | | | | Catching up unimplemented features should be done earlier by the developer during autoconf rather than during configure. Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Add XORG_WITH_PERL macroGaetan Nadon2011-06-221-0/+56
| | | | | | | | | | Following the same pattern as XMLTO and friends. Allows all modules to use the same interface, variables and options to check for perl. Perl is used in libX11 and xserver. Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_WITH_FOP: add minimum version checking supportGaetan Nadon2011-06-221-3/+20
| | | | | | | | | | | | | | | | | | | Adding this feature is motivated by a bug in fop 0.95 where fop crashes in the presence of some characters like the latin capital sharp s. Fop version 1.0 works correctly. This is the same feature found in XMLTO and the likes. In the macro public interface there is a shift in parameter position for the DEFAULT parameter. Doing development on older libraries (point releases on older versions) will still work the same way as the "no" value will be interpreted as the minimum version. It won't be found, so fop will be disabled anyway. Only libX11 has used XORG_WITH_FOP(no) and will be changed with a version bump on util-macros. Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* XORG_PROG_RAWCPP: use AC_LANG_SOURCE to prevent warningsGaetan Nadon2011-06-051-4/+2
| | | | | | | | | The source for the AC_LANG_CONFTEST should be passed to AC_LANG_SOURCE to satisfy the more stringent testing done by autoconf 2.68. It is available in autoconf 2.60 where AC_LANG_DEFINES_PROVIDED is not. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Version bump: 1.14.0util-macros-1.14.0Alan Coopersmith2011-05-271-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>