commit: f5542c77d4d96cdebb7c45686515e06c4a8d17e5 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org> AuthorDate: Sat Apr 17 03:07:37 2021 +0000 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org> CommitDate: Sat Apr 17 04:24:04 2021 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=f5542c77
build: refresh autotools a bit Shuffle macro order to try and fix a few warnings about being used too early. Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org> .gitignore | 27 ++++++++++++++------------- configure.ac | 2 +- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 33f051f..553ea89 100644 --- a/.gitignore +++ b/.gitignore @@ -20,19 +20,20 @@ core .gdb_history .gdbinit -aclocal.m4 -autom4te.cache -build -config.cache -config.h -config.h.in -config.log -config.status -configure -autotools -libtool -Makefile.in -stamp-h1 +/aclocal.m4 +/autom4te.cache +/autotools +/build +/config.cache +/config.h +/config.h.in +/config.log +/config.status +/configure +/INSTALL +/libtool +/Makefile.in +/stamp-h1 /dumpelf /lddtree diff --git a/configure.ac b/configure.ac index a22e11a..5ffd5ef 100644 --- a/configure.ac +++ b/configure.ac @@ -6,10 +6,10 @@ AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([autotools/m4]) +AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC_C99 AM_PROG_CC_C_O AM_PROG_AR -AC_USE_SYSTEM_EXTENSIONS LT_INIT PKG_PROG_PKG_CONFIG
