diff options
author | infirit <[email protected]> | 2014-07-25 17:50:54 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-28 00:23:28 +0200 |
commit | f1515b509037bb1dc641ae7784ff13ba61a8d50e (patch) | |
tree | 846fdf8424a6465e3e76652c7b0ee6137eca3c24 /configure.ac | |
parent | 3d2442e9cf7dd3ec58db302001ca98efbfa953d0 (diff) | |
download | eom-f1515b509037bb1dc641ae7784ff13ba61a8d50e.tar.bz2 eom-f1515b509037bb1dc641ae7784ff13ba61a8d50e.tar.xz |
Add the necessary machinery to generate the introspection data from eom
Annotations are still missing, but this provides enough for basic introspection usage
Based on eog commit b316c9e0b30a8c6d67feb8f21a20268e18c8cc3d
From Claudio Saavedra <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d237baf..ad6932b 100644 --- a/configure.ac +++ b/configure.ac @@ -128,6 +128,16 @@ EOM_MODULES="gtk+-$GTK_API_VERSION >= $GTK_REQUIRED \ mate-icon-theme >= $MATE_ICON_THEME_REQUIRED \ shared-mime-info >= $SHARED_MIME_INFO_REQUIRED" +# Introspection +GOBJECT_INTROSPECTION_CHECK([0.9.3]) + +if test "$found_introspection" = "yes"; then + have_introspection=yes + AC_DEFINE([HAVE_INTROSPECTION], [1], [Define to enable GObject Introspection]) +else + have_introspection=no +fi + # *************** # ZLIB (required) # *************** @@ -522,4 +532,5 @@ Configure summary: RSVG support ...............: ${have_rsvg} Colour management support ..: ${have_lcms} D-Bus activation............: ${have_dbus} + GObject Introspection.......: ${have_introspection} " |