diff options
author | Robert Nagy <[email protected]> | 2017-03-28 17:54:56 +0200 |
---|---|---|
committer | Robert Nagy <[email protected]> | 2017-03-28 17:54:56 +0200 |
commit | 2dec278f3e3278f91c8471f89a5495d877d2d490 (patch) | |
tree | b3881158ef850df6d40b50e986a8e74a20d86250 | |
parent | 9fcab3f4e9746b85453e6514d1687dbbba86c32a (diff) | |
download | libmateweather-2dec278f3e3278f91c8471f89a5495d877d2d490.tar.bz2 libmateweather-2dec278f3e3278f91c8471f89a5495d877d2d490.tar.xz |
actually check the $GIO_REQUIRED variable's value
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5940a24..515ea8c 100644 --- a/configure.ac +++ b/configure.ac @@ -71,7 +71,7 @@ PKG_CHECK_MODULES(LIBSOUP, [libsoup-2.4 >= $LIBSOUP_REQUIRED]) dnl -- check for gio (required) ----------------------------------------- PKG_CHECK_MODULES(GIO, - [gio-2.0 >= GIO_REQUIRED]) + [gio-2.0 >= $GIO_REQUIRED]) AC_SUBST(GIO_CFLAGS) dnl -- check for glib; redundant at this point, but sets $GLIB_MKENUMS |