diff options
author | Martin Szulecki | 2015-10-06 21:35:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2015-10-06 21:35:13 +0200 |
commit | d92855b7216554d21cc574861b3bba64c00fdb7b (patch) | |
tree | 5f6523966874e29ff9a6e34806ce5f5787e81f90 | |
parent | 1d2303e42500a66970a056b991b5d191dec9958f (diff) | |
download | idevicerestore-d92855b7216554d21cc574861b3bba64c00fdb7b.tar.gz idevicerestore-d92855b7216554d21cc574861b3bba64c00fdb7b.tar.bz2 |
Require autoconf 2.64+ to use package bugreport and project URL in AC_INIT
-rw-r--r-- | configure.ac | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 7f38884..8fa934b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,11 @@ -dnl Process this file with autoconf to produce a configure script. +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. -AC_PREREQ(2.61) -AC_INIT(idevicerestore, 1.0) +AC_PREREQ(2.64) +AC_INIT([idevicerestore], [1.0], [https://github.com/libimobiledevice/idevicerestore/issues],, [http://libimobiledevice.org]) + +AC_CANONICAL_SYSTEM +AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) @@ -9,8 +13,6 @@ AC_CONFIG_SRCDIR([src/]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) -AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE() AC_PROG_CC AM_PROG_CC_C_O |