diff options
author | Joshua Judson Rosen | 2017-04-01 15:49:07 -0400 |
---|---|---|
committer | Joshua Judson Rosen | 2017-04-01 15:56:38 -0400 |
commit | fe41a6ef3012b4f35efc1f17d2daebe556282806 (patch) | |
tree | b807ff92bc6df4a2e60f4583562f4910cde00fa0 | |
parent | configure: don't bother explicitly AC_SUBST'ing after PKG_CHECK_MODULES (diff) | |
download | gnurobots-fe41a6ef3012b4f35efc1f17d2daebe556282806.tar.gz |
configure: check for GLib from beyond the g_type_init era
Since this GLib 1.35.1 was released >4 years ago
(which is presumably old enough to depend on it),
and the alternative is to drop Bradley's -Werror from AM_CFLAGS
and go back to using deprecated APIs.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ba77461..26ffaa1 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,7 @@ AC_PROG_CC_C99 GUILE_FLAGS +PKG_CHECK_MODULES(GLIB2, glib-2.0 >= 2.35.1) PKG_CHECK_MODULES(GTHREAD2, gthread-2.0 >= 2.4) PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.4) PKG_CHECK_MODULES(VTE, vte) |