diff options
author | Ted Gould <ted@canonical.com> | 2009-03-17 11:00:01 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-03-17 11:00:01 -0500 |
commit | fdc47f8ef835d7a06f97f60caa1d476eb26db1f2 (patch) | |
tree | 10d0ce81472b15bd4324dc671be30eea2ed6525b /configure.ac | |
parent | cad75161c3193652507cba2cafec732a0757ae03 (diff) | |
download | libayatana-indicator-fdc47f8ef835d7a06f97f60caa1d476eb26db1f2.tar.gz libayatana-indicator-fdc47f8ef835d7a06f97f60caa1d476eb26db1f2.tar.bz2 libayatana-indicator-fdc47f8ef835d7a06f97f60caa1d476eb26db1f2.zip |
Making it so that the GIR stuff autodetects and only builds if available.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac index e32da5f..fe049c3 100644 --- a/configure.ac +++ b/configure.ac @@ -61,19 +61,22 @@ AC_SUBST(LIBINDICATE_LIBS) # GObject Introspection ########################### -PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0 >= 0.6]) - -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) +PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0 >= 0.6], gir_ok=yes, gir_ok=no) + +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 |