widget-factory: Example for edge-overshot

For extra fun, make some noise.
This commit is contained in:
Matthias Clasen
2014-10-20 20:54:31 -04:00
parent 7b28b1c9ba
commit 4cbc0191cb
3 changed files with 98 additions and 2 deletions

View File

@ -1672,6 +1672,16 @@ if test "$have_colord" = "yes"; then
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
##################################################