diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2018-07-18 08:43:28 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2018-07-18 08:43:28 +0200 |
commit | 51c6b8cec423cf7f3a903f31648898f285226a48 (patch) | |
tree | 9f4f40f50d54444b16eb4099a61be7efaa4b0e3f /configure.ac | |
parent | 6bc4f4e20fe3a3c60b786140dc3b1f5fc9028e29 (diff) | |
download | glibmm-51c6b8cec423cf7f3a903f31648898f285226a48.tar.gz |
configure.ac: Require glib-2.0 >= 2.55.1
and update the bug report address in AC_INIT.
Fixes #29
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5ee14f3f..6f435373 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ ## along with this library. If not, see <http://www.gnu.org/licenses/>. AC_INIT([glibmm], [2.57.1], - [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm], + [https://gitlab.gnome.org/GNOME/glibmm/issues], [glibmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -82,7 +82,7 @@ AS_IF([test "x$enable_static" = xyes], AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library]) ]) -glibreq='2.0 >= 2.53.2' +glibreq='2.0 >= 2.55.1' GLIBMM_MODULES="sigc++-3.0 >= 2.99.5 glib-$glibreq gobject-$glibreq gmodule-$glibreq" GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq" |