2 AC_CANONICAL_TARGET([])
4 dnl when going to/from release please set the nano (fourth number) right !
5 dnl releases only do Wall, cvs and prerelease does Werror too
6 AS_VERSION(gstreamer, GST_VERSION, 0, 7, 2, 1, GST_CVS="no", GST_CVS="yes")
8 if test x$program_suffix = xNONE ; then
9 program_suffix=-$GST_VERSION_MAJOR.$GST_VERSION_MINOR
12 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
14 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
16 dnl our libraries and install dirs use major.minor as a version
17 GST_MAJORMINOR=$GST_VERSION_MAJOR.$GST_VERSION_MINOR
18 AC_SUBST(GST_MAJORMINOR)
21 dnl For interactive UNIX (a Sun thing)
24 dnl CURRENT, REVISION, AGE
25 dnl - library source changed -> increment REVISION
26 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
27 dnl - interfaces added -> increment AGE
28 dnl - interfaces removed -> AGE = 0
29 AS_LIBTOOL(GST, 4, 0, 0)
31 AC_CONFIG_SRCDIR([gst/gst.c])
32 AM_CONFIG_HEADER(config.h)
34 dnl Add parameters for aclocal
35 dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
36 ACLOCAL="$ACLOCAL -I common/m4 $ACLOCAL_FLAGS"
42 dnl AC_PROC_INTLTOOL([0.26])
43 dnl AM_GNU_GETTEXT([external])
44 ALL_LINGUAS="de es no nl"
45 GETTEXT_PACKAGE=gstreamer-$GST_VERSION_MAJOR.$GST_VERSION_MINOR
46 AC_SUBST(GETTEXT_PACKAGE)
47 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],"$GETTEXT_PACKAGE",[gettext package name])
50 AM_GLIB_DEFINE_LOCALEDIR(GST_LOCALEDIR)
52 dnl decide on error flags
53 AS_COMPILER_FLAG(-Wall,GST_ERROR="$GST_ERROR -Wall",GST_ERROR="$GST_ERROR")
54 if test "x$GST_CVS" = "xyes"; then
55 AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
56 GST_ERROR="$GST_ERROR"
59 dnl We disable static building for development, for time savings
60 dnl *NOTE*: dnl this line before release, so release does static too
65 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
66 dnl messages printed when running cvs builds
67 if test "x$GST_CVS" = "xyes"; then
68 AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
71 dnl ##############################
72 dnl # Do automated configuration #
73 dnl ##############################
78 dnl allow for different autotools
79 AS_AUTOTOOLS_ALTERNATE()
81 dnl modify pkg-config path
82 AC_ARG_WITH(pkg-config-path,
83 AC_HELP_STRING([--with-pkg-config-path],
84 [colon-separated list of pkg-config(1) dirs]),
85 [export PKG_CONFIG_PATH=${withval}])
90 dnl Perl is used in building documentation
91 AC_PATH_PROG(PERL_PATH, perl, no)
92 if test x$PERL_PATH = xno; then
93 AC_MSG_ERROR(Could not find perl)
96 dnl we require bison for building of some of the marshal files
97 dnl FIXME: check if AC_PROG_YACC is suitable here
98 AC_PATH_PROG(BISON_PATH, bison, no)
99 if test x$BISON_PATH = xno; then
100 AC_MSG_ERROR(Could not find bison)
103 dnl we require flex for building the parser
104 dnl FIXME: check if AC_PROG_LEX is suitable here
105 AC_PATH_PROG(FLEX_PATH, flex, no)
106 if test x$FLEX_PATH = xno; then
107 AC_MSG_ERROR(Could not find flex)
111 dnl We should really use AC_SYS_LARGEFILE, but the problem is
112 dnl many of the plugins don't include "config.h". To assure
113 dnl binary compatibility, it is necessary that all gstreamer
114 dnl code be compiled with the same sizeof(off_t), so we use
115 dnl the following crude hack.
119 dnl GST_CFLAGS are split up as GST_EXT_CFLAGS and GST_INT_CFLAGS
121 dnl this is so we can make GST_CFLAGS for external modules available
122 dnl without mixing in internal (uninstalled) CFLAGS
125 dnl disable deprecated functions internally
126 GST_INT_CFLAGS="-DGST_DISABLE_DEPRECATED"
128 AC_MSG_CHECKING(for large file support)
130 #define _LARGEFILE_SOURCE
131 #define _FILE_OFFSET_BITS 64
132 #include <sys/types.h>
133 int main () { return !(sizeof(off_t) == 8); }
137 GST_EXT_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
146 dnl check for makecontext and define HAVE_MAKECONTEXT if we have it
148 if test "$ac_cv_check_mcsc" == "yes"; then
149 AC_DEFINE_UNQUOTED(HAVE_MAKECONTEXT, $HAVE_MAKECONTEXT,
150 [defined if we have makecontext ()])
153 dnl Check for a way to display the function name in debug output
156 dnl check if we should use -Wa,-mregnames on PowerPC, so we can use
157 dnl symbolic register names in inline asm
158 if test x$HAVE_CPU_PPC = xyes ; then
159 AS_COMPILER_FLAG(["-Wa,-mregnames"],
160 [GST_INT_CFLAGS="$GST_INT_CFLAGS -Wa,-mregnames"],
165 dnl Check for essential libraries first:
166 dnl ====================================
169 dnl Minimum required version of GLib2
170 dnl required for compilation without warnings
175 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQ gobject-2.0 gthread-2.0 gmodule-2.0,HAVE_GLIB2=yes,HAVE_GLIB2=no)
176 GLIB_LIBS=$GLIB2_LIBS
177 GLIB_CFLAGS=$GLIB2_CFLAGS
179 AC_SUBST(GLIB_CFLAGS)
181 if test "x$HAVE_GLIB2" = "xno"; then
182 AC_MSG_ERROR([GStreamer requires GLib 2.0 to compile.])
185 GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
186 AC_SUBST(GST_PKG_DEPS)
189 dnl Minimum required version of libxml2
191 AC_SUBST(LIBXML2_REQ)
193 dnl check for libxml2
197 dnl FIXME: This test passes on popt 1.6.2, maybe earlier, but popt 1.6.2
198 dnl causes segfaults on gst_init. Write a working test if possible.
199 GST_CHECK_LIBHEADER(POPT, popt, poptStrippedArgv,, popt.h, POPT_LIBS="-lpopt",
200 AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
201 download the latest version from
202 ftp://ftp.rpm.org/pub/rpm/dist/])
204 AC_MSG_NOTICE(Checking for POPT_TABLEEND)
209 #ifndef POPT_TABLEEND
217 AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
218 download the latest version from
219 ftp://ftp.rpm.org/pub/rpm/dist/])
222 dnl Check for atomic.h
223 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
224 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
225 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
226 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
227 if test x$HAVE_ATOMIC_H = xyes; then
229 #include "asm/atomic.h"
230 main() {atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
233 if test x$HAVE_ATOMIC_H = xyes; then
234 AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
240 dnl Check for ucontext.h
241 AC_CHECK_HEADER(ucontext.h, AC_DEFINE(HAVE_UCONTEXT_H, 1, [defined if we have ucontext.h]))
243 dnl ######################################################################
244 dnl # Check command line parameters, and set shell variables accordingly #
245 dnl ######################################################################
247 dnl FIXME: simplify all this down using a few m4 macros
249 AC_ARG_ENABLE(libmmx,
250 AC_HELP_STRING([--enable-libmmx],[use libmmx, if available]),
251 [case "${enableval}" in
252 yes) USE_LIBMMX=$HAVE_LIBMMX ;;
254 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libmmx) ;;
256 [USE_LIBMMX=$HAVE_LIBMMX]) dnl Default value
258 AC_ARG_ENABLE(atomic,
259 AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
260 [case "${enableval}" in
261 yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
262 noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
263 no) USE_ATOMIC_H=no;;
264 *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
266 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
268 AC_ARG_ENABLE(fast-stack-trash,
269 AC_HELP_STRING([--enable-fast-stack-trash],[use fast memory allocator (i586 or above)]),
270 [case "${enableval}" in
271 yes) USE_FAST_STACK_TRASH=yes;;
272 noset) USE_FAST_STACK_TRASH=no;;
273 no) USE_FAST_STACK_TRASH=no;;
274 *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
276 [USE_FAST_STACK_TRASH=yes]) dnl Default value
278 AC_ARG_ENABLE(plugin-builddir,
279 AC_HELP_STRING([--enable-plugin-builddir],[allow tests/demos to use non-installed plugins]),
280 [case "${enableval}" in
281 yes) PLUGINS_USE_BUILDDIR=yes ;;
282 no) PLUGINS_USE_BUILDDIR=no ;;
283 *) AC_MSG_ERROR(bad value ${enableval} for --enable-plugin-builddir) ;;
285 [PLUGINS_USE_BUILDDIR=no]) dnl Default value
287 AC_ARG_ENABLE(profiling,
288 AC_HELP_STRING([--enable-profiling],[adds -pg to compiler commandline, for profiling]),
289 [case "${enableval}" in
290 yes) USE_PROFILING=yes ;;
291 no) UES_PROFILING=no ;;
292 *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
294 [USE_PROFILING=no]) dnl Default value
296 dnl use a cache dir for storing element registry info.
297 dnl default to building registry in the source tree if we are enabling plugin build dir
298 if test "x$PLUGINS_USE_BUILDDIR" = "xyes"; then
301 dnl ${localstatedir} points to PREFIX/var
302 GST_CACHE_DIR=${localstatedir}/cache/gstreamer-$GST_MAJORMINOR
304 AC_ARG_WITH(cachedir,
305 AC_HELP_STRING([--with-cachedir],[specify path to use for plugin and command completion registries]),
306 [case "${withval}" in
307 yes) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
308 no) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
309 *) GST_CACHE_DIR="${withval}" ;;
311 [:]) dnl Default value
313 AS_AC_EXPAND(GST_CACHE_DIR, $GST_CACHE_DIR)
314 AC_DEFINE_UNQUOTED(GST_CACHE_DIR, "$GST_CACHE_DIR", [Location of registry])
315 AC_MSG_NOTICE(Using $GST_CACHE_DIR as registry cache dir)
317 dnl building of tests
319 AC_HELP_STRING([--disable-tests],[disable building test apps]),
320 [case "${enableval}" in
321 yes) BUILD_TESTS=yes ;;
322 no) BUILD_TESTS=no ;;
323 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
325 [BUILD_TESTS=yes]) dnl Default value
326 AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes")
328 dnl tests known to fail
329 AC_ARG_ENABLE(failing-tests,
330 AC_HELP_STRING([--disable-failing-tests],[disable building tests known to fail]),
331 [case "${enableval}" in
332 yes) BUILD_FAILING_TESTS=yes ;;
333 no) BUILD_FAILING_TESTS=no ;;
334 *) AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
336 [BUILD_FAILING_TESTS=no]) dnl Default value
337 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
338 if test x$BUILD_FAILING_TESTS = xyes; then
339 AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
341 AC_MSG_WARN([Sissy ! By asking to not build the tests known to fail, you hereby waive your right to customer support. If you do not agree with this EULA, please press Ctrl-C before the next line is printed. By allowing the next line to be printed, you expressly acknowledge your acceptance of this EULA.])
344 AC_ARG_ENABLE(examples,
345 AC_HELP_STRING([--disable-examples],[disable building examples]),
346 [case "${enableval}" in
347 yes) BUILD_EXAMPLES=yes ;;
348 no) BUILD_EXAMPLES=no ;;
349 *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
351 [BUILD_EXAMPLES=yes]) dnl Default value
352 AM_CONDITIONAL(BUILD_EXAMPLES, test "x$BUILD_EXAMPLES" = "xyes")
354 dnl poison destroyed objects
355 AC_ARG_ENABLE(poisoning,
356 AC_HELP_STRING([--enable-poisoning],[enable poisoning of deallocated objects]),
357 [case "${enableval}" in
358 yes) USE_POISONING=yes ;;
359 no) USE_POISONING=no ;;
360 *) AC_MSG_ERROR(bad value ${enableval} for --enable-poisoning) ;;
362 [USE_POISONING=no]) dnl Default value
364 dnl Next, check for the optional components:
365 dnl ========================================
369 AC_HELP_STRING([--disable-debug],[disable addition of -g debugging info]),
370 [case "${enableval}" in
371 yes) USE_DEBUG=yes ;;
373 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
375 [USE_DEBUG=yes]) dnl Default value
376 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, true)
377 GST_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
379 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_LOADSAVE, true)
380 GST_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
381 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_PARSE, true)
382 GST_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
383 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_TRACE, true)
384 GST_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
385 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, true)
386 GST_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
388 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_REGISTRY, true)
389 GST_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
390 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, true)
391 GST_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
392 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_INDEX, true)
393 GST_SUBSYSTEM_DISABLE(INDEX,[index])
394 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_PLUGIN, true)
395 GST_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
396 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_URI, true)
397 GST_SUBSYSTEM_DISABLE(URI,[uri handlers])
399 dnl ################################################
400 dnl # Set defines according to variables set above #
401 dnl ################################################
404 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
405 dnl HAVE_ and it is likely to be easier to stick with the old name
406 if test "x$USE_LIBMMX" = xyes; then
407 AC_DEFINE(HAVE_LIBMMX, 1, [Define if libmmx is available])
410 if test "x$USE_ATOMIC_H" = xyes; then
411 AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
414 if test "x$USE_FAST_STACK_TRASH" = xyes; then
415 AC_DEFINE(USE_FAST_STACK_TRASH, 1, [Define if we should use i586 optimized stack functions])
418 if test "x$USE_POISONING" = xyes; then
419 AC_DEFINE(USE_POISONING, 1, [Define if we should poison deallocated memory])
422 dnl test if we have pthread_attr_setstack; if not use the older calls
423 AC_CHECK_LIB(pthread, pthread_attr_setstack,
424 AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACK, 1,
425 [Defined if libpthread has pthread_attr_setstack ()]))
427 dnl test if we have posix_memalign; FreeBSD doesn't
428 AC_CHECK_FUNC(posix_memalign,
429 AC_DEFINE(HAVE_POSIX_MEMALIGN, 1,
430 [Defined if we have posix_memalign ()]))
432 dnl test for sigaction()
433 AC_CHECK_FUNC(sigaction,
434 AC_DEFINE(HAVE_SIGACTION, 1,
435 [Defined if we have sigaction ()]))
437 dnl test if we have dladdr(); we use it for debugging
438 save_cflags="$CFLAGS"
439 CFLAGS="$CFLAGS -D_GNU_SOURCE"
440 AC_CHECK_LIB(dl, dladdr,
441 AC_DEFINE(HAVE_DLADDR, 1,
442 [Defined if we have dladdr ()]))
443 CFLAGS="$save_cflags"
445 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
446 AC_DEFINE(PLUGINS_USE_BUILDDIR, 1, [Define if plugins should be loaded from the build tree - only developers should use this])
449 if test "x$USE_DEBUG" = xyes; then
450 GST_INT_CFLAGS="$GST_INT_CFLAGS -g"
453 dnl #############################
454 dnl # Set automake conditionals #
455 dnl #############################
457 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
458 dnl HAVE_ and it is likely to be easier to stick with the old name
459 AM_CONDITIONAL(HAVE_ATOMIC_H, test "x$USE_ATOMIC_H" = "xyes")
461 AM_CONDITIONAL(EXPERIMENTAL, test "$EXPERIMENTAL" = "$xyes")
462 AM_CONDITIONAL(BROKEN, test "$BROKEN" = "$xyes")
464 AM_CONDITIONAL(PLUGINS_USE_BUILDDIR, test "x$PLUGINS_USE_BUILDDIR" = "xyes")
467 dnl ############################
468 dnl # Set up some more defines #
469 dnl ############################
471 dnl set license and copyright notice
472 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
473 dnl package name in plugins
474 AC_ARG_WITH(package-name,
475 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
476 [case "${withval}" in
477 yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
478 no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
479 *) GST_PACKAGE="${withval}" ;;
481 [GST_PACKAGE="GStreamer"]) dnl Default value
482 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
483 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
484 dnl package origin URL
485 AC_ARG_WITH(package-origin,
486 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
487 [case "${withval}" in
488 yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
489 no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
490 *) GST_ORIGIN="${withval}" ;;
492 [GST_ORIGIN="http://gstreamer.net"]) dnl Default value
493 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
494 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
496 dnl Set location of plugin directory
497 if test "x${prefix}" = "xNONE"; then
498 PLUGINS_DIR=${ac_default_prefix}/lib/gstreamer-$GST_MAJORMINOR
500 PLUGINS_DIR=${prefix}/lib/gstreamer-$GST_MAJORMINOR
502 AC_DEFINE_UNQUOTED(PLUGINS_DIR, "$PLUGINS_DIR", [Define the plugin directory])
503 AC_SUBST(PLUGINS_DIR)
505 dnl Set location of uninstalled plugin directory
506 PLUGINS_BUILDDIR=`pwd`
507 AC_DEFINE_UNQUOTED(PLUGINS_BUILDDIR, "$PLUGINS_BUILDDIR", [Define the uninstalled plugin directory])
508 AC_SUBST(PLUGINS_BUILDDIR)
510 dnl since glib and xml are package deps, there's no need to include their cflags
511 dnl in the pkg-config file
514 GST_PKG_CFLAGS=$GST_EXT_CFLAGS
515 GST_PKG_LIBS=$GST_EXT_LIBS
516 AC_SUBST(GST_PKG_CFLAGS)
517 AC_SUBST(GST_PKG_LIBS)
519 dnl finalize _CFLAGS and _LIBS
520 dnl add GLIB and XML if necessary to EXT_*
521 GST_CFLAGS="$GST_EXT_CFLAGS $XML_CFLAGS $GLIB_CFLAGS"
522 GST_LIBS="$GST_EXT_LIBS $XML_LIBS $GLIB_LIBS -lpopt"
524 dnl Private vars for libgst only
525 LIBGST_LIBS="$GST_LIBS"
526 LIBGST_CFLAGS="$GST_CFLAGS -I\$(top_srcdir) $GST_ERROR"
527 AC_SUBST(LIBGST_LIBS)
528 AC_SUBST(LIBGST_CFLAGS)
530 dnl Vars for everyone else
531 GST_INT_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la"
532 GST_INT_CFLAGS="$GST_INT_CFLAGS -I\$(top_srcdir)/libs -I\$(top_srcdir)/include"
534 AC_SUBST(GST_CFLAGS, "$LIBGST_CFLAGS $GST_INT_CFLAGS")
535 AC_SUBST(GST_LIBS, "$LIBGST_LIBS $GST_INT_LIBS")
537 GST_PLUGIN_LDFLAGS="-module -avoid-version"
538 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
541 dnl ##################################################
542 dnl # deps for examples from manual #
543 dnl ##################################################
545 PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0,
546 HAVE_LIBGNOMEUI="yes", HAVE_LIBGNOMEUI="no")
547 AC_SUBST(LIBGNOMEUI_CFLAGS)
548 AC_SUBST(LIBGNOMEUI_LIBS)
549 AM_CONDITIONAL(HAVE_LIBGNOMEUI, test "x$HAVE_LIBGNOMEUI" = "xyes")
551 dnl ##################################################
552 dnl # Prepare informative messages to display at end #
553 dnl ##################################################
557 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
558 infomessages="$infomessages
559 *** Warning: You have configured using the --enable-plugin-builddir option.
561 This option is for development purposes only: binaries built with
562 it should be used with code in the build tree only. To build an
563 installable version, use ./configure without the --enable-plugin-builddir
564 option. Note that the autogen.sh script supplies the plugin builddir
565 option automatically -- run ./autogen.sh -- --disable-plugin-builddir to make
566 an installable build.
571 dnl #########################
572 dnl # Make the output files #
573 dnl #########################
575 dnl libs/ext/Makefile
576 dnl nothing there yet !
583 gst/autoplug/Makefile
584 gst/indexers/Makefile
585 gst/elements/Makefile
587 gst/schedulers/Makefile
588 gst/registries/Makefile
591 libs/gst/bytestream/Makefile
592 libs/gst/control/Makefile
593 libs/gst/getbits/Makefile
597 tests/bufspeed/Makefile
598 tests/memchunk/Makefile
599 tests/muxing/Makefile
600 tests/seeking/Makefile
602 tests/threadstate/Makefile
604 testsuite/bins/Makefile
605 testsuite/bytestream/Makefile
606 testsuite/caps/Makefile
607 testsuite/cleanup/Makefile
608 testsuite/clock/Makefile
609 testsuite/debug/Makefile
610 testsuite/dynparams/Makefile
611 testsuite/elements/Makefile
612 testsuite/indexers/Makefile
613 testsuite/parse/Makefile
614 testsuite/plugin/Makefile
615 testsuite/refcounting/Makefile
616 testsuite/tags/Makefile
617 testsuite/threads/Makefile
619 examples/cutter/Makefile
620 examples/helloworld/Makefile
621 examples/launch/Makefile
622 examples/manual/Makefile
623 examples/mixer/Makefile
624 examples/pingpong/Makefile
625 examples/plugins/Makefile
626 examples/queue/Makefile
627 examples/queue2/Makefile
628 examples/queue3/Makefile
629 examples/queue4/Makefile
630 examples/retag/Makefile
631 examples/thread/Makefile
632 examples/typefind/Makefile
633 examples/xml/Makefile
640 docs/plugins/Makefile
641 docs/plugins/gstreamer-plugins.types
644 docs/version.entities
647 pkgconfig/gstreamer.pc
648 pkgconfig/gstreamer-uninstalled.pc
649 pkgconfig/gstreamer-control.pc
650 pkgconfig/gstreamer-control-uninstalled.pc
652 echo "$infomessages", infomessages="$infomessages"