aboutsummaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-06-18 14:55:21 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-06-18 14:55:21 -0500
commitad488dfada353b7776fcb71ef41f01ddc8e5560f (patch)
treef546389d5a1a9baf4a342e971b8fb865fa486fc1 /bindings
parent2723b6c1064be7f5f1d4557416f774d02b233a49 (diff)
parent086dae17154b4da70d39cbf62a4cdd766ea1b132 (diff)
downloadlibayatana-appindicator-ad488dfada353b7776fcb71ef41f01ddc8e5560f.tar.gz
libayatana-appindicator-ad488dfada353b7776fcb71ef41f01ddc8e5560f.tar.bz2
libayatana-appindicator-ad488dfada353b7776fcb71ef41f01ddc8e5560f.zip
merge lp:~evgeni/libappindicator/optional-mono to make Mono binding generation optional. This way we don't FTB on architectures that don't support 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