m4/gst-arch.m4: add PPC64 so we can have separate structure sizes for it
[platform/upstream/gst-common.git] / m4 / gst-gstreamer.m4
1 dnl check for gstreamer
2 dnl check for installed gstreamer first
3 dnl if necessary, check for uninstalled gstreamer
4 dnl AC_SUBST GST_CFLAGS and GST_LIBS
5 AC_DEFUN([GST_GSTREAMER],[
6   PKG_CHECK_MODULES(GST, gstreamer, HAVE_GST=yes, HAVE_GST=no)
7   if test "x$HAVE_GST" = "xno";
8   then
9     PKG_CHECK_MODULES(GST, gstreamer-uninstalled, HAVE_GST=yes, exit)
10   fi
11   AC_SUBST(GST_CFLAGS)
12   AC_SUBST(GST_LIBS)
13 ])
14