diff options
author | Ted Gould <ted@canonical.com> | 2009-03-17 13:38:20 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-03-17 13:38:20 -0500 |
commit | ec34124181a8574efd64cae932dd95a2622d99d4 (patch) | |
tree | 8ae71848c7ef49e780babe3b2a62783addc0a6e4 /configure.ac | |
parent | fdc47f8ef835d7a06f97f60caa1d476eb26db1f2 (diff) | |
download | libayatana-indicator-ec34124181a8574efd64cae932dd95a2622d99d4.tar.gz libayatana-indicator-ec34124181a8574efd64cae932dd95a2622d99d4.tar.bz2 libayatana-indicator-ec34124181a8574efd64cae932dd95a2622d99d4.zip |
Seems that we still get errors without it being there, I'm not sure why, but making it so that we can explicitly disable the gobject-introspection. That should work for now.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 38 |
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 ]) |