diff -r aa1f309ec686 -r f9cd59844f78 gst-gmyth/configure.ac --- a/gst-gmyth/configure.ac Tue May 01 17:03:38 2007 +0100 +++ b/gst-gmyth/configure.ac Wed Aug 01 14:22:14 2007 +0100 @@ -120,6 +120,14 @@ AC_SUBST(GMYTH_CFLAGS) AC_SUBST(GMYTH_LIBS) +PKG_CHECK_MODULES(X11, x11, HAVE_X11=yes,HAVE_X11=no) +if test "x$HAVE_X11" = "xno"; then + AC_MSG_ERROR(you need x11-dev installed) +fi +AC_SUBST(X11_CFLAGS) +AC_SUBST(X11_LIBS) + + dnl set the plugindir where plugins should be installed plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR" AC_SUBST(plugindir) @@ -136,6 +144,9 @@ Makefile \ nuvdemux/Makefile \ mythsrc/Makefile \ - concatmux/Makefile + concatmux/Makefile \ + playbinmaemo/Makefile \ + decodebin2/Makefile \ + multiqueue/Makefile )