From: Peter Eisentraut Date: Fri, 2 Aug 2019 06:50:32 +0000 (+0200) Subject: configure.ac: Update AC_INIT invocation X-Git-Tag: pgbouncer_1_11_0~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d864ebdcfcfabc14233732e7975a17aef865467b;p=pgbouncer configure.ac: Update AC_INIT invocation Add bug report and URL information, update PgBouncer capitalization. --- diff --git a/Makefile b/Makefile index 2e13d00..0663ed0 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ deb: debuild -b -us -uc w32arch = i686-w64-mingw32 -w32zip = pgbouncer-$(PACKAGE_VERSION)-win32.zip +w32zip = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip zip: configure clean rm -rf buildexe mkdir buildexe @@ -140,7 +140,7 @@ zip: configure clean zip-up: $(w32zip) rsync $(w32zip) pgf:web/pgbouncer/htdocs/win32/ -tgz = pgbouncer-$(PACKAGE_VERSION).tar.gz +tgz = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz tgz-up: $(tgz) rsync $(tgz) pgf:web/pgbouncer/htdocs/testing/ diff --git a/configure.ac b/configure.ac index e681603..a41958d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,9 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(pgbouncer, 1.10.0) +AC_INIT([PgBouncer], + [1.10.0], + [https://github.com/pgbouncer/pgbouncer/issues], [], + [https://pgbouncer.github.io/]) AC_CONFIG_SRCDIR(src/janitor.c) AC_CONFIG_HEADER(lib/usual/config.h) AC_PREREQ([2.59])