[gjs/wip/ptomato/autotools: 4/16] build: Use five-argument form of AC_INIT
- From: Philip Chimento <pchimento src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs/wip/ptomato/autotools: 4/16] build: Use five-argument form of AC_INIT
- Date: Tue, 27 Sep 2016 06:03:45 +0000 (UTC)
commit ee91c5673058878659872a7bd27f4c3eb1b4e5e6
Author: Philip Chimento <philip chimento gmail com>
Date: Mon Sep 26 21:25:59 2016 -0700
build: Use five-argument form of AC_INIT
This adds the website location to the package's manifest. See:
https://wiki.gnome.org/Initiatives/GnomeGoals/ModernAutotools
This requires Autoconf 2.64 which is already many years old and available
in all major distros.
configure.ac | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index a887adb..19dee9a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,8 +7,10 @@ m4_define(pkg_micro_version, 0)
m4_define(pkg_version, pkg_major_version.pkg_minor_version.pkg_micro_version)
m4_define(pkg_int_version, (pkg_major_version * 100 + pkg_minor_version) * 100 + pkg_micro_version)
-AC_PREREQ(2.61)
-AC_INIT([gjs], pkg_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=gjs])
+AC_PREREQ([2.64])
+AC_INIT([gjs], [pkg_version],
+ [http://bugzilla.gnome.org/enter_bug.cgi?product=gjs],
+ [gjs], [https://wiki.gnome.org/Projects/Gjs])
AM_INIT_AUTOMAKE([dist-xz no-dist-gzip tar-ustar])
AX_IS_RELEASE([git-directory])
AC_CONFIG_SRCDIR([gjs/console.cpp])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]