From d46d52dfaab8a6704b0c5bf817e43fb3d2eb9a15 Mon Sep 17 00:00:00 2001 From: Robert Edmonds Date: Tue, 3 Jun 2014 16:34:38 -0400 Subject: [PATCH] configure.ac: use the 5-argument form of AC_INIT() and also define our own PACKAGE_DESCRIPTION --- configure.ac | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3da9205..8c8e7cc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,13 @@ -AC_PREREQ(2.60) -AC_INIT([protobuf-c], [1.0.0-rc1]) +AC_PREREQ(2.64) + +AC_INIT([protobuf-c], + [1.0.0-rc1], + [https://github.com/protobuf-c/protobuf-c/issues], + [protobuf-c], + [https://github.com/protobuf-c/protobuf-c]) +PACKAGE_DESCRIPTION="Protocol Buffers implementation in C" +AC_SUBST(PACKAGE_DESCRIPTION) + AC_CONFIG_SRCDIR([protobuf-c/protobuf-c.c]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules subdir-objects])