Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Sat, 17 Apr 2021 05:39:12
Message-Id: 1618633444.f5542c77d4d96cdebb7c45686515e06c4a8d17e5.vapier@gentoo
1 commit: f5542c77d4d96cdebb7c45686515e06c4a8d17e5
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 03:07:37 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 04:24:04 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=f5542c77
7
8 build: refresh autotools a bit
9
10 Shuffle macro order to try and fix a few warnings about being used
11 too early.
12
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 .gitignore | 27 ++++++++++++++-------------
16 configure.ac | 2 +-
17 2 files changed, 15 insertions(+), 14 deletions(-)
18
19 diff --git a/.gitignore b/.gitignore
20 index 33f051f..553ea89 100644
21 --- a/.gitignore
22 +++ b/.gitignore
23 @@ -20,19 +20,20 @@ core
24 .gdb_history
25 .gdbinit
26
27 -aclocal.m4
28 -autom4te.cache
29 -build
30 -config.cache
31 -config.h
32 -config.h.in
33 -config.log
34 -config.status
35 -configure
36 -autotools
37 -libtool
38 -Makefile.in
39 -stamp-h1
40 +/aclocal.m4
41 +/autom4te.cache
42 +/autotools
43 +/build
44 +/config.cache
45 +/config.h
46 +/config.h.in
47 +/config.log
48 +/config.status
49 +/configure
50 +/INSTALL
51 +/libtool
52 +/Makefile.in
53 +/stamp-h1
54
55 /dumpelf
56 /lddtree
57
58 diff --git a/configure.ac b/configure.ac
59 index a22e11a..5ffd5ef 100644
60 --- a/configure.ac
61 +++ b/configure.ac
62 @@ -6,10 +6,10 @@ AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
63 AC_CONFIG_HEADER([config.h])
64 AC_CONFIG_MACRO_DIR([autotools/m4])
65
66 +AC_USE_SYSTEM_EXTENSIONS
67 AC_PROG_CC_C99
68 AM_PROG_CC_C_O
69 AM_PROG_AR
70 -AC_USE_SYSTEM_EXTENSIONS
71 LT_INIT
72 PKG_PROG_PKG_CONFIG