summaryrefslogtreecommitdiff
path: root/Makefile.am
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.
* 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.
* 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
* 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-141-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.
* 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.
* prevent 'make dist' from happeningRyan Lortie2015-02-201-0/+8
|
* Initial commitRyan Lortie2015-02-171-0/+21