From: Tim-Philipp Müller Date: Sat, 30 Jan 2010 13:56:42 +0000 (+0000) Subject: gst-glib2.m4: add -DG_THREADS_MANDATORY to GLIB_CFLAGS X-Git-Tag: upstream/20130618~165 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96dc7930768997da39cd1e6b80485bc69b421601;p=platform%2Fupstream%2Fgst-common.git gst-glib2.m4: add -DG_THREADS_MANDATORY to GLIB_CFLAGS Threading is always enabled in GStreamer code, so we may just as well add -DG_THREADS_MANDATORY to GLIB_CFLAGS so that all GStreamer modules are automatically compiled with it (optimisation). --- diff --git a/m4/gst-glib2.m4 b/m4/gst-glib2.m4 index 3060e5e..7b03874 100644 --- a/m4/gst-glib2.m4 +++ b/m4/gst-glib2.m4 @@ -20,6 +20,11 @@ AC_DEFUN([AG_GST_GLIB_CHECK], AC_MSG_ERROR([This package requires GLib >= $GLIB_REQ to compile.]) fi + dnl Add define to tell GLib that threading is always enabled within GStreamer + dnl code (optimisation, bypasses checks if the threading system is enabled + dnl when using threading primitives) + GLIB_CFLAGS="$GLIB_CFLAGS -DG_THREADS_MANDATORY" + dnl for the poor souls who for example have glib in /usr/local AS_SCRUB_INCLUDE(GLIB_CFLAGS) ])