From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4EB351382C5 for ; Sat, 17 Apr 2021 05:39:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 622CDE083E; Sat, 17 Apr 2021 05:39:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43C3EE083E for ; Sat, 17 Apr 2021 05:39:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E5993409F1 for ; Sat, 17 Apr 2021 05:39:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47A854A8 for ; Sat, 17 Apr 2021 05:39:08 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1618633444.f5542c77d4d96cdebb7c45686515e06c4a8d17e5.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: .gitignore configure.ac X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: f5542c77d4d96cdebb7c45686515e06c4a8d17e5 X-VCS-Branch: master Date: Sat, 17 Apr 2021 05:39:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d0e30e9-1fb6-4c5f-b818-dfe196bca2f5 X-Archives-Hash: 4cc1357c742b41a00064004498db7db5 commit: f5542c77d4d96cdebb7c45686515e06c4a8d17e5 Author: Mike Frysinger gentoo org> AuthorDate: Sat Apr 17 03:07:37 2021 +0000 Commit: Mike Frysinger gentoo 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 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