Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgeboski <jgeboski@gmail.com>2015-07-16 16:11:14 +0300
committerjgeboski <jgeboski@gmail.com>2015-07-16 16:11:14 +0300
commit70c8f3cd5d7ffb9862efaee9ba4309b6ff567f82 (patch)
tree85999fba925ece97785931c64383de35715c1ff0
parent3553cb7c13aec6b755bdeb7c5578a621faa2d471 (diff)
configure: dropped required glib version to 2.20.0
It was initially thought the plugin would conform to 2.32.0 without any sort of compatibility symbols. But with the plugin being right from the upstream purple3 sources, which is using glib 2.20.0, this plugin has already conformed to using 2.20.0. Drop the version to allow for people who are stuck in the past to use the plugin. Also worth noting, upstream purple3 is likely bumping the glib version to 2.40.0. It is unknown if this plugin will continue to carry around compatibility symbols, or if it will just simply require the newer version of glib.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3093d73..a8e7b31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -91,7 +91,7 @@ AC_ARG_WITH(
)
AM_CONDITIONAL([WITH_SSL_CERTS], [test "x$WITH_SSL_CERTS" == "xyes"])
-PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.32.0])
+PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.20.0])
PKG_CHECK_MODULES([JSON], [json-glib-1.0 >= 0.14.0])
PKG_CHECK_MODULES([PURPLE], [purple <= 3])
PKG_CHECK_MODULES([ZLIB], [zlib])