aboutsummaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorEvgeni Golov <evgeni@debian.org>2012-06-10 09:32:04 +0200
committerEvgeni Golov <evgeni@debian.org>2012-06-10 09:32:04 +0200
commit086dae17154b4da70d39cbf62a4cdd766ea1b132 (patch)
tree8ea6c510637be4af5f47c727d1e94f4166ea0976 /bindings
parent0bf6adacf509aff960b1f450e4c7f01c3f4ca090 (diff)
downloadlibayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.tar.gz
libayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.tar.bz2
libayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.zip
make building mono extension optional, so we can build on archs that do not have mono
Diffstat (limited to 'bindings')
-rw-r--r--bindings/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/bindings/Makefile.am b/bindings/Makefile.am
index 8e621e4..d1f6d73 100644
--- a/bindings/Makefile.am
+++ b/bindings/Makefile.am
@@ -1,10 +1,12 @@
if USE_GTK3
SUBDIRS = \
- mono \
vala
else
SUBDIRS = \
- mono \
python \
vala
endif
+
+if HAS_MONO
+SUBDIRS += mono
+endif