From: Matthew Fernandez Date: Sat, 19 Jun 2021 00:07:53 +0000 (-0700) Subject: update Graphviz URL in AC_INIT configure setup X-Git-Tag: 2.48.0~40^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f7f4a54f9b8617f2d536cd51f758b48bf23a16b;p=graphviz update Graphviz URL in AC_INIT configure setup This URL was out of date (the current Graphviz URL is https://graphviz.org/), but the third parameter of AC_INIT is also expected to be the bug tracker, not the project’s homepage. --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c08211c8..813c700f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- updated Graphviz bug report URL in the Autotools build system + ## [2.47.3] - 2021-06-19 ### Changed diff --git a/configure.ac b/configure.ac index 55b23e86f..cd1f813a1 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,8 @@ dnl Set Graphviz version information # graphviz_version_commit m4_include(./version.m4) -AC_INIT([graphviz],[graphviz_version_major().graphviz_version_minor().graphviz_version_micro()],[http://www.graphviz.org/]) +AC_INIT([graphviz],[graphviz_version_major().graphviz_version_minor().graphviz_version_micro()], + [https://gitlab.com/graphviz/graphviz/-/issues]) GRAPHVIZ_VERSION_MAJOR=graphviz_version_major() GRAPHVIZ_VERSION_MINOR=graphviz_version_minor()