mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
adding manual examples to build, along with deps don't worry, this should work if you don't have libgnomeui
Original commit message from CVS: adding manual examples to build, along with deps don't worry, this should work if you don't have libgnomeui
This commit is contained in:
parent
f98c840f6a
commit
40e88820f7
1 changed files with 16 additions and 7 deletions
23
configure.ac
23
configure.ac
|
@ -415,6 +415,16 @@ AC_SUBST(GST_PLUGIN_LDFLAGS)
|
|||
|
||||
AC_CONFIG_SUBDIRS(libs/ext/cothreads)
|
||||
|
||||
dnl ##################################################
|
||||
dnl # deps for examples from manual #
|
||||
dnl ##################################################
|
||||
|
||||
PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0,
|
||||
HAVE_LIBGNOMEUI="yes", HAVE_LIBGNOMEUI="no")
|
||||
AC_SUBST(LIBGNOMEUI_CFLAGS)
|
||||
AC_SUBST(LIBGNOMEUI_LIBS)
|
||||
AM_CONDITIONAL(HAVE_LIBGNOMEUI, test "x$HAVE_LIBGNOMEUI" = "xyes")
|
||||
|
||||
dnl ##################################################
|
||||
dnl # Prepare informative messages to display at end #
|
||||
dnl ##################################################
|
||||
|
@ -477,22 +487,21 @@ testsuite/refcounting/Makefile
|
|||
testsuite/threads/Makefile
|
||||
examples/Makefile
|
||||
examples/autoplug/Makefile
|
||||
examples/cutter/Makefile
|
||||
examples/helloworld/Makefile
|
||||
examples/helloworld2/Makefile
|
||||
examples/launch/Makefile
|
||||
examples/manual/Makefile
|
||||
examples/mixer/Makefile
|
||||
examples/pingpong/Makefile
|
||||
examples/plugins/Makefile
|
||||
examples/queue/Makefile
|
||||
examples/queue2/Makefile
|
||||
examples/queue3/Makefile
|
||||
examples/queue4/Makefile
|
||||
examples/thread/Makefile
|
||||
examples/mixer/Makefile
|
||||
examples/cutter/Makefile
|
||||
examples/launch/Makefile
|
||||
examples/xml/Makefile
|
||||
examples/plugins/Makefile
|
||||
examples/typefind/Makefile
|
||||
examples/mixer/Makefile
|
||||
examples/pingpong/Makefile
|
||||
examples/xml/Makefile
|
||||
tools/Makefile
|
||||
docs/Makefile
|
||||
docs/gst/Makefile
|
||||
|
|
Loading…
Reference in a new issue