commit: 9260f5d00fd898389224956819ee65f8a376d547 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Jan 24 03:12:43 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jan 24 03:12:43 2023 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=9260f5d0
elfix: modernise autotools usage a bit Signed-off-by: Sam James <sam <AT> gentoo.org> configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 84ef48d..5a036a6 100644 --- a/configure.ac +++ b/configure.ac @@ -16,11 +16,12 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -AC_PREREQ([2.68]) -AC_INIT([elfix], [0.9], [http://bugs.gentoo.org/]) +AC_PREREQ([2.71]) +AC_INIT([elfix],[0.9],[https://bugs.gentoo.org/]) AC_CONFIG_SRCDIR([src/paxctl-ng.c]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([1.11 foreign]) +AC_CONFIG_MACRO_DIRS([m4]) +AM_INIT_AUTOMAKE([1.15 foreign no-dist-gzip dist-xz]) AM_SILENT_RULES([no]) LT_PREREQ([2.4])
