diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-10-20 20:54:31 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-10-20 20:54:31 -0400 |
commit | 4cbc0191cbf9412eb96e25f5e75dfe6516c8ceea (patch) | |
tree | db2f23f32b33cb55837688bb2b01cfc24f1f7920 /configure.ac | |
parent | 7b28b1c9ba42d62a65c14934cd3d691a0fb91726 (diff) | |
download | gtk+-4cbc0191cbf9412eb96e25f5e75dfe6516c8ceea.tar.gz |
widget-factory: Example for edge-overshot
For extra fun, make some noise.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3ca894275c..d614dde0d7 100644 --- a/configure.ac +++ b/configure.ac @@ -1673,6 +1673,16 @@ fi AM_CONDITIONAL(HAVE_COLORD, test "x$have_colord" = "xyes") ################################################## +# Check for libcanberra (only used in examples) +################################################## + +PKG_CHECK_MODULES(LIBCANBERRA, libcanberra-gtk3, + have_libcanberra=yes, have_libcanberra=no) +if test "$have_libcanberra" = "yes"; then + AC_DEFINE(HAVE_LIBCANBERRA, 1, [define if we have libcanberra]) +fi + +################################################## # Checks for gtk-doc and docbook-tools ################################################## |