summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Vermeulen <bert@biot.com>2012-06-23 01:17:36 +0200
committerBert Vermeulen <bert@biot.com>2012-06-23 01:26:20 +0200
commit387b6e3bb4340e20c978a8c47037d0bea9cca3c0 (patch)
tree814052042d264f2f5afe7afa90e147574a2c90ac
parent2dc6d41c64a8235308e61b4f9b509c7fecb2b502 (diff)
downloadlibsigrokdecode-387b6e3bb4340e20c978a8c47037d0bea9cca3c0.tar.gz
libsigrokdecode-387b6e3bb4340e20c978a8c47037d0bea9cca3c0.zip
sr/srd/cli: require glib version >= 2.28
Needed for g_get_monotonic_time(). Thanks to Tomaž Šolc.
-rw-r--r--README2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 1ac8b42..a61a4a6 100644
--- a/README
+++ b/README
@@ -21,7 +21,7 @@ Requirements
- automake >= 1.11
- libtool
- pkg-config >= 0.22
- - libglib >= 2.22.0
+ - libglib >= 2.28.0
- Python >= 3.0
diff --git a/configure.ac b/configure.ac
index ec1a14f..0819c4a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ AC_SUBST(SRD_LIB_LDFLAGS)
# libglib-2.0 is always needed.
# Note: glib-2.0 is part of the libsigrokdecode API
# (hard pkg-config requirement).
-AM_PATH_GLIB_2_0([2.22.0],
+AM_PATH_GLIB_2_0([2.28.0],
[CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
# Python support. We require at least Python >= 3.0.