From d07f23ccab3670136348309f7786b19fd93f9d36 Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Wed, 7 Oct 2015 09:41:22 -0500 Subject: Add some more macros used by gtksourceview 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.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8dbbd97..b251ffb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,16 +6,18 @@ dist_aclocal_DATA = \ autoconf-archive/m4/ax_append_flag.m4 \ autoconf-archive/m4/ax_check_compile_flag.m4 \ autoconf-archive/m4/ax_is_release.m4 \ + autoconf-archive/m4/ax_code_coverage.m4 \ autoconf-archive/m4/ax_compiler_flags.m4 \ autoconf-archive/m4/ax_compiler_flags_cflags.m4 \ autoconf-archive/m4/ax_compiler_flags_cxxflags.m4 \ autoconf-archive/m4/ax_compiler_flags_ldflags.m4 \ autoconf-archive/m4/ax_compiler_flags_gir.m4 \ + autoconf-archive/m4/ax_pkg_check_modules.m4 \ autoconf-archive/m4/ax_require_defined.m4 \ $(NULL) all-local: $(dist_aclocal_DATA) - cat $^ | grep -v '^#' | sed -e 's/\.*//' | grep -o '\' | sort | uniq > used + cat $^ | grep -v '^#' | grep -v 'AX_PACKAGE_REQUIRES' | sed -e 's/\.*//' | grep -o '\' | sort | uniq > used cat $^ | grep ^AC_DEFUN | grep -o '\' | sort | uniq > defined diff -u used defined rm -f used defined -- cgit v1.2.1