summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add XORG_DEFAULT_NOCODE_OPTIONS and bump version to 1.20.0HEADutil-macros-1.20.0masterAlan Coopersmith2023-02-123-10/+22
| | | | | | | | Allows data, doc, & font modules that don't compile any code to avoid spending time running a bunch of compiler tests whose results they'll ignore and never use. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Call AC_PROG_CC instead of AC_PROG_CC_C99 if autoconf >= 2.70Alan Coopersmith2023-02-091-2/+10
| | | | | | | | | | | | | | | | | | | | Clears up deprecation warnings: configure.ac:38: warning: The macro `AC_PROG_CC_C99' is obsolete. configure.ac:38: You should run autoupdate. ./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from... aclocal.m4:2959: XORG_COMPILER_BRAND is expanded from... aclocal.m4:3078: XORG_COMPILER_FLAGS is expanded from... aclocal.m4:3267: XORG_DEFAULT_OPTIONS is expanded from... configure.ac:38: the top level ./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from... aclocal.m4:2990: XORG_TESTSET_CFLAG is expanded from... aclocal.m4:3082: XORG_COMPILER_FLAGS is expanded from... aclocal.m4:3254: XORG_DEFAULT_OPTIONS is expanded from... configure.ac:28: the top level Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* gitlab CI: stop requiring Signed-off-by in commitsAlan Coopersmith2023-02-091-2/+2
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Fix spelling/wording issuesAlan Coopersmith2022-01-152-12/+12
| | | | | | | Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* gitlab CI: add a basic build testAlan Coopersmith2022-01-151-0/+98
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Build xz tarballs instead of bzip2Alan Coopersmith2022-01-151-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Version bump: 1.19.3util-macros-1.19.3Matt Turner2021-01-241-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gmail.com>
* Update configure.ac bug URL for gitlab migrationAlan Coopersmith2018-12-071-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Update README for gitlab migrationAlan Coopersmith2018-11-193-22/+21
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* XORG_PROG_RAWCPP: Use AC_PATH_TOOL to find preprocessorMarvin Schmidt2018-03-301-1/+1
| | | | | | | | | | On some distributions tools like cpp are prefixed with the host-triple, to check for this prefixed version first AC_PATH_TOOL should be used. If no prefixed cpp, it will fallback to the unprefixed name. https://bugs.freedesktop.org/show_bug.cgi?id=96257 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Version bump: 1.19.2util-macros-1.19.2Alan Coopersmith2018-03-041-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Update check for manpage section numbers to not rely on Solaris versionAlan Coopersmith2017-11-111-12/+19
| | | | | | | | | Check for a specific file instead of a specific set of versions from uname, to cope with manpage section alignment coming to 11.4 instead of 12.0. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
* Rework INSTALL_CMD to touch/echo >&2 only as neededEmil Velikov2017-02-201-2/+3
| | | | | | | | | | | | | | | | | | Analogous to previous commit. With this commit we no longer get the following erroneous messages during `make distcheck'. " failed to copy INSTALL from util-macros: installing possibly empty INSTALL. ... failed to copy INSTALL from util-macros: installing possibly empty INSTALL. " Cc: Gaetan Nadon <memsize@videotron.ca> Cc: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
* Rework CHANGELOG_CMD to touch/echo >&2 only as neededEmil Velikov2017-02-201-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently CHANGELOG_CMD issues a touch ChangeLog; echo "Scary message" >&2 even if the file is already present. For example, when running `make distcheck' the following is observed: " /bin/sh: ../../.changelog.tmp: Permission denied git directory not found: installing possibly empty changelog. ... /bin/sh: ../../.changelog.tmp: Permission denied git directory not found: installing possibly empty changelog. " That in itself happens since srcdir is RO, thus shell redirection [to srcddir/.changelog.tmp] fails. At the same time the latter message is wrong and misleading since the file is already there, with the correct contents. Silence the permissing warning (/dev/null is our friend), and add a simple `test -e .../ChangeLog || (...' prior to the touch/echo combo. As we're here also update the message to be more generic, since there are multiple other reasons why things can fail. Cc: Gaetan Nadon <memsize@videotron.ca> Cc: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
* Version bump: 1.19.1util-macros-1.19.1Matt Turner2017-01-291-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gmail.com>
* autogen: add default patch prefixMihail Konev2017-01-261-0/+3
| | | | Signed-off-by: Mihail Konev <k.mvc@ya.ru>
* autogen.sh: use quoted string variablesEmil Velikov2017-01-261-4/+4
| | | | | | | | | Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
* autogen.sh: use exec instead of waiting for configure to finishPeter Hutterer2017-01-261-1/+1
| | | | | | | Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
* Fix XORG_WITH_XMLTO to work with xmlto >= 0.0.27Andreas Boll2016-01-141-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting with xmlto version 0.0.27 the return code of xmlto --skip-validation txt conftest.xml is non-zero if conftest.xml is an empty file. As a consequence the macro XORG_WITH_XMLTO returns "xmlto cannot generate text format, this format skipped" and therefore libraries like libxi, libxdmcp and others won't convert docbook XML to text format. This changed behavior was introduced with the following change in xmlto: xmlto.in: use correctly exit code from xsltproc See also: https://fedorahosted.org/xmlto/changeset/77 This patch fixes this by additionally testing xmlto with a non-empty XML file. More details can be found at: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613674 Thanks to Peter Pearse, Helmut Grohne and Gaetan Nadon. v2: To maintain compatibility with older xorg tarballs don't replace the original test with the empty XML file but instead add a fallback to additionally test with a non-empty XML file if the original test fails. Use the alternate solution with <x></x> to skip compatibility issues with different docbook versions. Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Julien Cristau <jcristau@debian.org>
* XORG_MANPAGE_SECTIONS: limit SysV man page sections to Solaris 2.0-11Alan Coopersmith2015-10-281-9/+13
| | | | | | | | | | | All others (including other SunOS/Solaris releases) use the traditional Bell Labs / BSD / Linux section numbering. (The [[01]] is an m4-quoted shell character set of "[01]" to make sure autoconf doesn't lose the [] when generating the configure script.) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
* 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>