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-08-24 19:06:41 +0300
committerjgeboski <jgeboski@gmail.com>2015-08-24 19:06:41 +0300
commita899c24c769e9fbb3828793d0a38d28e3a6b5279 (patch)
tree298741ea357c09bbc8d1371fdefd260d0cb2a51f
parent7e38237d11be1b99a711ad312fc4c3cae7f7fda1 (diff)
configure: added check for glib-genmarshal
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 3d1e685..4799bca 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,7 +92,12 @@ PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.20.0 gobject-2.0])
PKG_CHECK_MODULES([JSON], [json-glib-1.0 >= 0.14.0])
PKG_CHECK_MODULES([PURPLE], [purple < 3])
PKG_CHECK_MODULES([ZLIB], [zlib])
+
PKG_CHECK_VAR([GLIB_GENMARSHAL], [glib-2.0], [glib_genmarshal])
+AS_IF(
+ [test -z "$GLIB_GENMARSHAL"],
+ [AC_MSG_ERROR([The `glib-genmarshal' tool is missing.])]
+)
AS_IF(
[test -z "$PURPLE_PLUGINDIR"],