summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add A[CX]_CHECK_DEFINEHEADmasterEmmanuele Bassi2019-04-201-0/+1
| | | | The gnome-keyring module started depending on this macro.
* Ignore aliasesEmmanuele Bassi2019-04-201-1/+1
| | | | | | Aliases for old names should be skipped when checking the names that have been defined, otherwise we'll always trip a check for a name that has been defined but not used.
* Revert "Update autoconf-archive to v2019.01.06"Emmanuele Bassi2019-01-111-0/+0
| | | | | | | This reverts commit c25f1e8d86abb1f472e09cd18f7527294234502e. There's a cascade of dependencies introduced by this update that cannot be resolved in a way that doesn't make the existence of m4-common moot.
* Update autoconf-archive to v2019.01.06Sébastien Wilmet2019-01-111-0/+0
|
* Replace git.gnome.org by Gitlab URL in <GitRepository> in DOAP fileAndre Klapper2018-12-161-2/+2
|
* Merge branch 'wip/lantw/add-more-stdcxx-macros' into 'master'Philip Chimento2018-07-291-1/+4
|\ | | | | | | | | Add more AX_CXX_COMPILE_STDCXX_* macros See merge request GNOME/m4-common!1
| * Add more AX_CXX_COMPILE_STDCXX_* macroswip/lantw/add-more-stdcxx-macrosTing-Wei Lan2018-06-151-1/+4
|/ | | | PackageKit needs AX_CXX_COMPILE_STDCXX_14.
* Update autoconf-archive to v2018.03.13Sébastien Wilmet2018-04-081-0/+0
|
* Update autoconf-archiveSébastien Wilmet2018-01-241-0/+0
|
* Update autoconf-archiveSébastien Wilmet2017-10-151-0/+0
| | | | There are more flags to AX_COMPILER_FLAGS.
* Update autoconf-archiveSébastien Wilmet2017-05-211-0/+0
|
* Update autoconf-archiveSébastien Wilmet2017-03-201-0/+0
| | | | To have a fix for AX_CODE_COVERAGE, at least.
* Update autoconf-archiveMichael Catanzaro2016-12-171-0/+0
| | | | | | This pulls in a small fix for AX_GENERATE_CHANGELOG: http://git.savannah.gnu.org/cgit/autoconf-archive.git/commit/?id=1dd56cc4748ef2cbf415760287481bf89c5821da
* build: Remove dnl lines with m4 itselfPhilip Chimento2016-11-131-1/+2
| | | | | | | | | | Instead of a non-optimally-portable regex, use m4 itself to remove dnl lines. Plain m4 without any autoconf extensions will remove dnl, but not expand any of the autoconf stuff. This is because autoconf undefines all of the built-in m4 macros and defines new ones that plain m4 is unaware of. https://bugzilla.gnome.org/show_bug.cgi?id=774299
* Update autoconf-archivePhilip Chimento2016-11-121-0/+0
| | | | | | | Fixes a bug with AX_COMPILER_FLAGS_LDFLAGS on macOS. See https://github.com/peti/autoconf-archive/pull/100 https://bugzilla.gnome.org/show_bug.cgi?id=774339
* Add AX_GENERATE_CHANGELOG macroPhilip Withnall2016-07-121-0/+1
| | | | | | It’s now needed by libgdata, and is a generally useful macro to have. https://www.gnu.org/software/autoconf-archive/ax_generate_changelog.html
* Add missing AX_CXX_COMPILE_STDCXX macroEmmanuele Bassi2016-07-121-0/+1
| | | | | If we don't add ax_cxx_compile_stdcxx.m4, then AX_CXX_COMPILE_STDCXX_11 won't ever work.
* Add AX_CHECK_ENABLE_DEBUG and AX_VALGRIND_CHECK macrosPhilip Withnall2016-06-281-0/+2
| | | | | | They are generally useful; AX_CHECK_ENABLE_DEBUG is recommended on the gnome-common migration page (https://wiki.gnome.org/Projects/GnomeCommon/Migration).
* Add GJS macrosPhilip Chimento2016-05-142-0/+3
| | | | | | These are useful for Gnome's Javascript applications. https://bugzilla.gnome.org/show_bug.cgi?id=766460
* Add AX_CHECK_LINK_FLAG macroPhilip Withnall2016-03-171-0/+1
| | | | It’s needed for AX_APPEND_LINK_FLAGS.
* Add AX_APPEND_LINK_FLAGS macroPhilip Withnall2016-03-171-0/+1
| | | | It’s needed for compiling gssdp.
* Add AX_CXX_COMPILE_STDCXX_11 macroKalev Lember2015-12-221-0/+1
| | | | It's needed for building PackageKit in gnome-continuous.
* Merge pull request #2 from mcatanzaro/patch-2Allison Ryan Lortie2015-11-241-1/+3
|\ | | | | Include AX_PKG_CHECK_MODULES
| * Add some more macros used by gtksourceviewMichael Catanzaro2015-10-071-1/+3
|/ | | | | | | These seem to be generally useful Note, a workaround to avoid flagging AX_PACKAGE_REQUIRES as a macro... it would be better to do this in a smarter way.
* Makefile: work around AX_REQUIRE_DEFINED problemRyan Lortie2015-05-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We check to make sure that we properly include all needed .m4 files that are used from other .m4 files we install by building a list of all references and checking to make sure those are all actually defined. This has been tripped up by this macro definition in ax_compiler_flags.m4: m4_defun([_AX_COMPILER_FLAGS_LANG], [m4_ifdef([_AX_COMPILER_FLAGS_LANG_]$1[_enabled], [], [m4_define([_AX_COMPILER_FLAGS_LANG_]$1[_enabled], [])dnl AX_REQUIRE_DEFINED([AX_COMPILER_FLAGS_]$1[FLAGS])])dnl ]) which tries to depend on a macro with a name calculated from its argument. Our simple regexp matching decides that AX_COMPILER_FLAGS_ is the name of the required macro here, and that is not defined anywhere, so the build fails. Update the regexp not to match macro names ending with an underscore in order to work around the issue for now. I tried to use m4 to expand the file, but it seems that it doesn't work because the invocations are protected by the [quoting] used in AC_-style macro invocations. Maybe we can find a better way to fix this in the future, but this approach works for now.
* update autoconf-archiveRyan Lortie2015-05-271-0/+0
|
* prevent 'make dist' from happeningRyan Lortie2015-02-201-0/+8
|
* add READMERyan Lortie2015-02-201-0/+30
| | | | Document what this is, and how people ought to make use of it.
* add autogen.sh for jhbuildRyan Lortie2015-02-171-0/+10
|
* Initial commitRyan Lortie2015-02-176-0/+68