diff options
author | Peter Eisentraut | 2020-02-28 07:54:49 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-02-28 12:12:21 +0000 |
commit | 1933ae629e7b706c6c23673a381e778819db307d (patch) | |
tree | 1075d45bcb23ae61685fe45ab1578cbeeb069a15 /configure.in | |
parent | 864934131ef72dc3a403ad1375a94543fcc04206 (diff) |
Add PostgreSQL home page to --help output
Per emerging standard in GNU programs and elsewhere. Autoconf already
has support for specifying a home page, so we can just that.
Reviewed-by: Daniel Gustafsson <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a2db1884d3c..e2ae4e2d3e1 100644 --- a/configure.in +++ b/configure.in @@ -17,7 +17,7 @@ dnl Read the Autoconf manual for details. dnl m4_pattern_forbid(^PGAC_)dnl to catch undefined macros -AC_INIT([PostgreSQL], [13devel], [[email protected]]) +AC_INIT([PostgreSQL], [13devel], [[email protected]], [], [https://www.postgresql.org/]) m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required. Untested combinations of 'autoconf' and PostgreSQL versions are not |