aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-03-17 13:38:36 -0500
committerTed Gould <ted@canonical.com>2009-03-17 13:38:36 -0500
commitd4d1a0e65ddb98fae997e72bb4462b410cfd579a (patch)
treed25ba62e4027ef17db3e6dd0ca37ae30516ff344
parentbbf57e6b493628e0dc989cf0b0700e737ef8e0d0 (diff)
parentec34124181a8574efd64cae932dd95a2622d99d4 (diff)
downloadlibayatana-indicator-d4d1a0e65ddb98fae997e72bb4462b410cfd579a.tar.gz
libayatana-indicator-d4d1a0e65ddb98fae997e72bb4462b410cfd579a.tar.bz2
libayatana-indicator-d4d1a0e65ddb98fae997e72bb4462b410cfd579a.zip
Getting explicit disable
-rw-r--r--configure.ac38
1 files changed, 23 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac
index fe049c3..e3ade5b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -61,22 +61,29 @@ AC_SUBST(LIBINDICATE_LIBS)
# GObject Introspection
###########################
-PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0 >= 0.6], gir_ok=yes, gir_ok=no)
+AC_ARG_ENABLE(gobject-introspection, AC_HELP_STRING([--enable-gobject-introspection], [enable building the gobject-introspection files]), [enable_gir=$enableval], [enable_gir=yes])
+
+if test "x$enable_gir" = "xyes"; then
+ PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0 >= 0.6], gir_ok=yes, gir_ok=no)
+
+ if test "x$gir_ok" = "xyes"; then
+ G_IR_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
+ AC_SUBST(G_IR_SCANNER)
+ G_IR_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
+ AC_SUBST(G_IR_COMPILER)
+ G_IR_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
+ AC_SUBST(G_IR_GENERATE)
+
+ GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
+ AC_SUBST(GIRDIR)
+ TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
+ AC_SUBST(TYPELIBDIR)
+ fi
+else
+ gir_ok=no
+fi
AM_CONDITIONAL(USE_GIR, test "x$gir_ok" = "xyes")
-if test "x$gir_ok" = "xyes"; then
- G_IR_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
- AC_SUBST(G_IR_SCANNER)
- G_IR_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
- AC_SUBST(G_IR_COMPILER)
- G_IR_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
- AC_SUBST(G_IR_GENERATE)
-
- GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
- AC_SUBST(GIRDIR)
- TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
- AC_SUBST(TYPELIBDIR)
-fi
###########################
# GTK Doc
@@ -119,5 +126,6 @@ AC_MSG_NOTICE([
Indicator Applet Configuration:
- Prefix: $prefix
+ Prefix: $prefix
+ GObject Introspection: $gir_ok
])