From ad79032d86616166cb4b60618577a797a7afb9a5 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sat, 12 May 2012 23:31:27 +0200 Subject: use proper CClosure marshallers for vlc-player and experiment-navigator signals the ...VOID__LONG standard marshaller used worked for INT64 but this wasn't guaranteed (size of LONG is platform-dependant) * now, required marshallers are generated if they don't already exist in gobject, if they do, only an alias is defined * every widget has its own marshaller namespace * exclude marshallers from Doxygen docs --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 19bd684..867076c 100644 --- a/configure.ac +++ b/configure.ac @@ -27,6 +27,12 @@ if [[ $ac_cv_prog_cc_c99 = no ]]; then fi AM_PROG_CC_C_O +# might not be used if built from source distro +AC_CHECK_PROG(GLIB_GENMARSHAL, glib-genmarshal, glib-genmarshal) +if [[ x$GLIB_GENMARSHAL = x ]]; then + AC_MSG_ERROR([glib-genmarshal not found!]) +fi + AC_CHECK_PROG(DOXYGEN, doxygen, doxygen) AC_CHECK_PROG(XSLTPROC, xsltproc, xsltproc) XSLT_FLAGS="--xinclude" -- cgit v1.2.3