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, 9, 1, 1, GST_CVS="no", GST_CVS="yes")
8 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
10 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
12 dnl our libraries and install dirs use major.minor as a version
13 GST_MAJORMINOR=$GST_VERSION_MAJOR.$GST_VERSION_MINOR
14 dnl we override it here for release candidates for a new series
16 AC_SUBST(GST_MAJORMINOR)
19 dnl For interactive UNIX (a Sun thing)
22 dnl CURRENT, REVISION, AGE
23 dnl - library source changed -> increment REVISION
24 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
25 dnl - interfaces added -> increment AGE
26 dnl - interfaces removed -> AGE = 0
27 AS_LIBTOOL(GST, 6, 0, 0)
30 AC_CONFIG_SRCDIR([gst/gst.c])
31 AM_CONFIG_HEADER(config.h)
33 dnl Add parameters for aclocal
34 AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4 -I .")
40 dnl the gettext stuff needed
41 AM_GNU_GETTEXT_VERSION(0.11.5)
42 AM_GNU_GETTEXT([external])
44 GETTEXT_PACKAGE=gstreamer-$GST_MAJORMINOR
45 AC_SUBST(GETTEXT_PACKAGE)
46 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
47 [gettext package name])
49 dnl define LOCALEDIR in config.h
50 AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
51 AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
54 dnl define LIBDIR so we can inform people where we live
55 AS_AC_EXPAND(LIBDIR, $libdir)
56 AC_DEFINE_UNQUOTED([LIBDIR], "$LIBDIR",
59 GST_SET_ERROR_CFLAGS($GST_CVS)
61 dnl We disable static building for development, for time savings
62 dnl *NOTE*: dnl this line before release, so release does static too
68 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
69 dnl messages printed when running cvs builds
70 if test "x$GST_CVS" = "xyes"; then
71 AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
74 dnl subsystems - can influence other decisions so needs to be high up
75 dnl we need to do AM_CONDITIONAL them here for automake 1.6.x compatibility
76 GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
77 AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_DISABLE_GST_DEBUG" = "xyes")
78 GST_CHECK_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
79 AM_CONDITIONAL(GST_DISABLE_LOADSAVE, test "x$GST_DISABLE_LOADSAVE" = "xyes")
80 GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
81 AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
82 GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
83 AM_CONDITIONAL(GST_DISABLE_TRACE, test "x$GST_DISABLE_TRACE" = "xyes")
84 GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
85 AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
86 GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
87 AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
88 GST_CHECK_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
89 AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, test "x$GST_DISABLE_ENUMTYPES" = "xyes")
90 GST_CHECK_SUBSYSTEM_DISABLE(INDEX,[index])
91 AM_CONDITIONAL(GST_DISABLE_INDEX, test "x$GST_DISABLE_INDEX" = "xyes")
92 GST_CHECK_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
93 AM_CONDITIONAL(GST_DISABLE_PLUGIN, test "x$GST_DISABLE_PLUGIN" = "xyes")
94 GST_CHECK_SUBSYSTEM_DISABLE(URI,[uri handlers])
95 AM_CONDITIONAL(GST_DISABLE_URI, test "x$GST_DISABLE_URI" = "xyes")
97 dnl ##############################
98 dnl # Do automated configuration #
99 dnl ##############################
104 dnl allow for different autotools
105 AS_AUTOTOOLS_ALTERNATE()
107 dnl modify pkg-config path
108 AC_ARG_WITH(pkg-config-path,
109 AC_HELP_STRING([--with-pkg-config-path],
110 [colon-separated list of pkg-config(1) dirs]),
111 [export PKG_CONFIG_PATH=${withval}])
116 dnl Perl is used in building documentation
117 AC_PATH_PROG(PERL_PATH, perl, no)
118 if test x$PERL_PATH = xno; then
119 AC_MSG_ERROR(Could not find perl)
124 dnl we require bison for building the parser
125 dnl FIXME: check if AC_PROG_YACC is suitable here
126 AC_PATH_PROG(BISON_PATH, bison, no)
127 if test x$BISON_PATH = xno; then
128 AC_MSG_ERROR(Could not find bison)
131 dnl check bison version
132 AC_MSG_CHECKING([bison version])
134 if $BISON_PATH --version | head -n 1 | $AWK '{ if ($4 < 1.35) exit 1; else exit 0;}';
138 AC_MSG_RESULT([too old.])
139 AC_MSG_ERROR([Your bison version is too old, v1.35 or later is required.])
142 dnl we require flex for building the parser
143 dnl FIXME: check if AC_PROG_LEX is suitable here
144 AC_PATH_PROG(FLEX_PATH, flex, no)
145 if test x$FLEX_PATH = xno; then
146 AC_MSG_ERROR(Could not find flex)
150 dnl We should really use AC_SYS_LARGEFILE, but the problem is
151 dnl many of the plugins don't include "config.h". To assure
152 dnl binary compatibility, it is necessary that all gstreamer
153 dnl code be compiled with the same sizeof(off_t), so we use
154 dnl the following crude hack.
157 AC_MSG_CHECKING(for large file support)
159 #define _LARGEFILE_SOURCE
160 #define _FILE_OFFSET_BITS 64
161 #include <sys/types.h>
162 int main () { return !(sizeof(off_t) == 8); }
166 GST_PKG_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
177 if test "$ac_cv_func_mmap_fixed_mapped" = "yes" ; then
178 GST_DISABLE_OMEGA_COTHREADS=no
180 GST_DISABLE_OMEGA_COTHREADS=yes
182 dnl for future --disabling, maybe. Right now, it depends on HAVE_MMAP
183 AM_CONDITIONAL(GST_DISABLE_OMEGA_COTHREADS, test "x$GST_DISABLE_OMEGA_COTHREADS" = "xyes")
185 dnl check for makecontext and define HAVE_MAKECONTEXT if we have it
187 if test "$ac_cv_check_mcsc" = "yes"; then
188 AC_DEFINE_UNQUOTED(HAVE_MAKECONTEXT, $HAVE_MAKECONTEXT,
189 [defined if we have makecontext ()])
192 dnl Check for a way to display the function name in debug output
195 dnl check if we should use -Wa,-mregnames on PowerPC, so we can use
196 dnl symbolic register names in inline asm
197 if test x$HAVE_CPU_PPC = xyes ; then
198 AS_COMPILER_FLAG(["-Wa,-mregnames"],
199 [GST_INT_CFLAGS="$GST_INT_CFLAGS -Wa,-mregnames"],
204 AC_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),
205 enable_gcov=$enableval,enable_gcov=no)
206 if test x$enable_gcov = xyes ; then
207 AS_COMPILER_FLAG(["-fprofile-arcs"],
208 [GST_INT_CFLAGS="$GST_INT_CFLAGS -fprofile-arcs"],
210 AS_COMPILER_FLAG(["-ftest-coverage"],
211 [GST_INT_CFLAGS="$GST_INT_CFLAGS -ftest-coverage"],
213 GST_INT_CFLAGS=`echo "$GST_INT_CFLAGS" | sed -e 's/-O[0-9]*//g'`
215 AC_DEFINE_UNQUOTED(GST_GCOV_ENABLED, 1, [Defined if gcov is enabled to force a rebuild due to config.h changing])
217 AM_CONDITIONAL(GST_GCOV_ENABLED, test x$enable_gcov = xyes)
219 dnl Check for some compiler flags that optimize our code.
220 if test "x$GCC" = xyes; then
221 AS_COMPILER_FLAG(-fno-common,GST_INT_CFLAGS="$GST_INT_CFLAGS -fno-common",)
224 dnl HAVE_WIN32 currently means "disable POSIXisms".
227 AC_DEFINE_UNQUOTED(HAVE_WIN32, 1, [Defined if compiling for Windows])
233 GST_UNALIGNED_ACCESS()
234 if test x${as_cv_unaligned_access} = xyes ; then
235 GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 1"
237 GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 0"
239 AC_SUBST(GST_HAVE_UNALIGNED_ACCESS_DEFINE)
241 dnl Check for essential libraries first:
242 dnl ====================================
245 dnl Minimum required version of GLib2
246 dnl required for compilation without warnings
250 dnl Check for glib2 with sugar on top
251 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQ gobject-2.0 gthread-2.0 gmodule-2.0,HAVE_GLIB2=yes,HAVE_GLIB2=no)
252 dnl for the poor souls who for example have glib in /usr/local
253 AS_SCRUB_INCLUDE(GLIB2_CFLAGS)
254 GLIB_LIBS=$GLIB2_LIBS
255 GLIB_CFLAGS=$GLIB2_CFLAGS
257 AC_SUBST(GLIB_CFLAGS)
259 if test "x$HAVE_GLIB2" = "xno"; then
260 AC_MSG_ERROR([GStreamer requires GLib $GLIB2_REQ to compile.])
263 dnl Check for glib2 without extra fat, useful for the unversioned tool frontends
264 PKG_CHECK_MODULES(GLIB_ONLY, glib-2.0 >= $GLIB2_REQ)
265 AC_SUBST(GLIB_ONLY_CFLAGS)
266 AC_SUBST(GLIB_ONLY_LIBS)
269 if test "x$GST_DISABLE_LOADSAVE" = "xyes" && test "x$GST_DISABLE_REGISTRY" = "xyes"
271 AC_MSG_NOTICE([Registry and load/save are disabled, not checking for libxml2])
273 dnl check for libxml2 with minimum req version
274 GST_LIBXML2_CHECK(2.4.9)
278 dnl FIXME: This test passes on popt 1.6.2, maybe earlier, but popt 1.6.2
279 dnl causes segfaults on gst_init. Write a working test if possible.
280 GST_CHECK_LIBHEADER(POPT, popt, poptStrippedArgv,, popt.h, POPT_LIBS="-lpopt",
281 AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
282 download the latest version from
283 ftp://ftp.rpm.org/pub/rpm/dist/])
285 AC_MSG_NOTICE(Checking for POPT_TABLEEND)
290 #ifndef POPT_TABLEEND
298 AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
299 download the latest version from
300 ftp://ftp.rpm.org/pub/rpm/dist/])
302 AC_SUBST(POPT_CFLAGS)
305 dnl Check for ucontext.h
306 AC_CHECK_HEADER(ucontext.h, AC_DEFINE(HAVE_UCONTEXT_H, 1, [defined if we have ucontext.h]))
308 dnl check for "check", unit testing library/header
309 AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
310 AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
312 dnl ######################################################################
313 dnl # Check command line parameters, and set shell variables accordingly #
314 dnl ######################################################################
316 dnl FIXME: simplify all this down using a few m4 macros
318 AC_ARG_ENABLE(fast-stack-trash,
319 AC_HELP_STRING([--enable-fast-stack-trash],[use fast memory allocator (i586 or above)]),
320 [case "${enableval}" in
321 yes) USE_FAST_STACK_TRASH=yes;;
322 noset) USE_FAST_STACK_TRASH=no;;
323 no) USE_FAST_STACK_TRASH=no;;
324 *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
326 [USE_FAST_STACK_TRASH=yes]) dnl Default value
328 AC_ARG_ENABLE(plugin-builddir,
329 AC_HELP_STRING([--enable-plugin-builddir],[allow tests/demos to use non-installed plugins]),
330 [case "${enableval}" in
331 yes) PLUGINS_USE_BUILDDIR=yes ;;
332 no) PLUGINS_USE_BUILDDIR=no ;;
333 *) AC_MSG_ERROR(bad value ${enableval} for --enable-plugin-builddir) ;;
335 [PLUGINS_USE_BUILDDIR=no]) dnl Default value
337 AC_ARG_ENABLE(profiling,
338 AC_HELP_STRING([--enable-profiling],[adds -pg to compiler commandline, for profiling]),
339 [case "${enableval}" in
340 yes) USE_PROFILING=yes ;;
341 no) USE_PROFILING=no ;;
342 *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
344 [USE_PROFILING=no]) dnl Default value
346 dnl use a cache dir for storing element registry info.
347 dnl default to building registry in the source tree if we are enabling plugin build dir
348 if test "x$PLUGINS_USE_BUILDDIR" = "xyes"; then
351 dnl ${localstatedir} points to PREFIX/var
352 GST_CACHE_DIR=${localstatedir}/cache/gstreamer-$GST_MAJORMINOR
354 AC_ARG_WITH(cachedir,
355 AC_HELP_STRING([--with-cachedir],[specify path to use for plugin and command completion registries]),
356 [case "${withval}" in
357 yes) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
358 no) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
359 *) GST_CACHE_DIR="${withval}" ;;
361 [:]) dnl Default value
363 AS_AC_EXPAND(GST_CACHE_DIR, $GST_CACHE_DIR)
364 AC_DEFINE_UNQUOTED(GST_CACHE_DIR, "$GST_CACHE_DIR", [Location of registry])
365 AC_MSG_NOTICE(Using $GST_CACHE_DIR as registry cache dir)
367 dnl building of tests
369 AC_HELP_STRING([--disable-tests],[disable building test apps]),
370 [case "${enableval}" in
371 yes) BUILD_TESTS=yes ;;
372 no) BUILD_TESTS=no ;;
373 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
375 [BUILD_TESTS=yes]) dnl Default value
376 AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes")
378 dnl tests known to fail
379 AC_ARG_ENABLE(failing-tests,
380 AC_HELP_STRING([--disable-failing-tests],[disable building tests known to fail]),
381 [case "${enableval}" in
382 yes) BUILD_FAILING_TESTS=yes ;;
383 no) BUILD_FAILING_TESTS=no ;;
384 *) AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
386 [BUILD_FAILING_TESTS=no]) dnl Default value
387 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
388 if test x$BUILD_FAILING_TESTS = xyes; then
389 AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
391 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.])
394 AC_ARG_ENABLE(examples,
395 AC_HELP_STRING([--disable-examples],[disable building examples]),
396 [case "${enableval}" in
397 yes) BUILD_EXAMPLES=yes ;;
398 no) BUILD_EXAMPLES=no ;;
399 *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
401 [BUILD_EXAMPLES=yes]) dnl Default value
402 AM_CONDITIONAL(BUILD_EXAMPLES, test "x$BUILD_EXAMPLES" = "xyes")
404 dnl poison destroyed objects
405 AC_ARG_ENABLE(poisoning,
406 AC_HELP_STRING([--enable-poisoning],[enable poisoning of deallocated objects]),
407 [case "${enableval}" in
408 yes) USE_POISONING=yes ;;
409 no) USE_POISONING=no ;;
410 *) AC_MSG_ERROR(bad value ${enableval} for --enable-poisoning) ;;
412 [USE_POISONING=no]) dnl Default value
414 dnl Next, check for the optional components:
415 dnl ========================================
419 AC_HELP_STRING([--disable-debug],[disable addition of -g debugging info]),
420 [case "${enableval}" in
421 yes) USE_DEBUG=yes ;;
423 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
425 [USE_DEBUG=yes]) dnl Default value
427 dnl valgrind inclusion
428 AC_ARG_ENABLE(valgrind,
429 AC_HELP_STRING([--disable-valgrind],[disable run-time valgrind detection]),
430 [case "${enableval}" in
431 yes) USE_VALGRIND="$USE_DEBUG" ;;
432 no) USE_VALGRIND=no ;;
433 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind) ;;
435 [USE_VALGRIND="$USE_DEBUG"]) dnl Default value
437 if test "x$USE_VALGRIND" = xyes; then
439 PKG_CHECK_MODULES(VALGRIND, valgrind > $VALGRIND_REQ, USE_VALGRIND="yes", USE_VALGRIND="no")
441 if test "x$USE_VALGRIND" = xyes; then
442 AC_DEFINE(HAVE_VALGRIND, 1, [Define if valgrind should be used])
443 AC_MSG_NOTICE(Using extra code paths for valgrind)
445 AC_SUBST(VALGRIND_CFLAGS)
446 AC_SUBST(VALGRIND_LIBS)
448 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
449 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
451 dnl ################################################
452 dnl # Set defines according to variables set above #
453 dnl ################################################
456 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
457 dnl HAVE_ and it is likely to be easier to stick with the old name
458 if test "x$USE_FAST_STACK_TRASH" = xyes; then
459 AC_DEFINE(USE_FAST_STACK_TRASH, 1, [Define if we should use i586 optimized stack functions])
462 if test "x$USE_POISONING" = xyes; then
463 AC_DEFINE(USE_POISONING, 1, [Define if we should poison deallocated memory])
466 dnl test for sigaction()
467 AC_CHECK_FUNC(sigaction,
468 AC_DEFINE(HAVE_SIGACTION, 1,
469 [Defined if we have sigaction ()]))
471 dnl test for register_printf_function
472 AC_CHECK_FUNC(register_printf_function,
474 GST_PRINTF_EXTENSION_FORMAT_DEFINE="#define GST_PTR_FORMAT \"P\""
475 AC_DEFINE(HAVE_PRINTF_EXTENSION, 1,
476 [Defined if we have register_printf_function ()])
478 GST_PRINTF_EXTENSION_FORMAT_DEFINE="#define GST_PTR_FORMAT \"p\""
480 AC_SUBST(GST_PRINTF_EXTENSION_FORMAT_DEFINE)
482 dnl test if we have dladdr(); we use it for debugging
483 save_cflags="$CFLAGS"
484 CFLAGS="$CFLAGS -D_GNU_SOURCE"
485 AC_CHECK_LIB(dl, dladdr,
486 AC_DEFINE(HAVE_DLADDR, 1,
487 [Defined if we have dladdr ()]))
488 CFLAGS="$save_cflags"
490 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
491 AC_DEFINE(PLUGINS_USE_BUILDDIR, 1, [Define if plugins should be loaded from the build tree - only developers should use this])
494 if test "x$USE_DEBUG" = xyes; then
495 GST_INT_CFLAGS="$GST_INT_CFLAGS -g"
498 dnl #############################
499 dnl # Set automake conditionals #
500 dnl #############################
502 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
503 dnl HAVE_ and it is likely to be easier to stick with the old name
504 AM_CONDITIONAL(EXPERIMENTAL, test "x$EXPERIMENTAL" = "yes")
505 AM_CONDITIONAL(BROKEN, test "x$BROKEN" = "yes")
506 AM_CONDITIONAL(PLUGINS_USE_BUILDDIR, test "x$PLUGINS_USE_BUILDDIR" = "xyes")
509 dnl ############################
510 dnl # Set up some more defines #
511 dnl ############################
513 dnl set license and copyright notice
514 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
516 dnl package name in plugins
517 AC_ARG_WITH(package-name,
518 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
519 [case "${withval}" in
520 yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
521 no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
522 *) GST_PACKAGE="${withval}" ;;
526 if test "x$GST_CVS" = "xyes"
529 GST_PACKAGE="GStreamer CVS/prerelease"
531 GST_PACKAGE="GStreamer source release"
535 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
536 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
538 dnl package origin URL
539 AC_ARG_WITH(package-origin,
540 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
541 [case "${withval}" in
542 yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
543 no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
544 *) GST_ORIGIN="${withval}" ;;
546 [GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
547 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
548 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
550 dnl Set location of plugin directory
551 AS_AC_EXPAND(PLUGINS_DIR, ${libdir}/gstreamer-$GST_MAJORMINOR)
552 AC_DEFINE_UNQUOTED(PLUGINS_DIR, "$PLUGINS_DIR", [Define the plugin directory])
553 AC_SUBST(PLUGINS_DIR)
554 AC_MSG_NOTICE([Using $PLUGINS_DIR as the plugin install location])
556 dnl Set location of uninstalled plugin directory
557 PLUGINS_BUILDDIR=`pwd`
558 AC_DEFINE_UNQUOTED(PLUGINS_BUILDDIR, "$PLUGINS_BUILDDIR", [Define the uninstalled plugin directory])
559 AC_SUBST(PLUGINS_BUILDDIR)
561 dnl LDFLAGS modifier defining exported symbols from built objects
562 EXPORT_LDFLAGS="-export-symbols-regex [_]*\(gst_\|Gst\|GST_\).*"
564 dnl GST_PKG_*: the flags we use that are also used
565 dnl for external applications/.pc file
566 dnl GST_LIB_*: used for the main library
567 dnl GST_OBJ_*: the flags we use for all the objects internal to the core
568 dnl GST_PLUGIN_*: additional flags we use for all plugins
570 dnl finalize _CFLAGS and _LIBS
571 dnl flags exported for external applications and use in our pkg-config .pc files
572 dnl since glib and xml are package deps, there's no need to include their cflags
573 dnl in the pkg-config file
575 GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
576 AC_SUBST(GST_PKG_CFLAGS)
577 AC_SUBST(GST_PKG_LIBS)
578 AC_SUBST(GST_PKG_DEPS)
580 dnl flags shared for all internal objects (core libs, elements, applications)
581 dnl we disable deprecated internally
582 dnl XML, GLib, popt, GST_INT, VALGRIND, and the right include for CFLAGS
583 dnl no need to add XML, GLib, popt explicitly since libgstreamer pulls them in
584 GST_INT_CFLAGS="$GLIB_CFLAGS $XML_CFLAGS $GST_PKG_CFLAGS \
585 $GST_INT_CFLAGS \$(ERROR_CFLAGS) -DGST_DISABLE_DEPRECATED"
587 dnl Private vars for libgst only
588 GST_LIB_CFLAGS="$GST_PKG_CFLAGS $GST_INT_CFLAGS \
589 $VALGRIND_CFLAGS -I\$(top_srcdir)"
590 GST_LIB_LIBS="$XML_LIBS $GLIB_LIBS -lpopt $GST_PKG_LIBS $LTLIBINTL $VALGRIND_LIBS"
591 GST_LIB_LDFLAGS="$GST_LT_LDFLAGS -version-info $GST_LIBVERSION -no-undefined $EXPORT_LDFLAGS"
592 AC_SUBST(GST_LIB_CFLAGS)
593 AC_SUBST(GST_LIB_LIBS)
594 AC_SUBST(GST_LIB_LDFLAGS)
596 dnl Vars for all internal objects built on libgstreamer
597 GST_OBJ_CFLAGS="$GST_INT_CFLAGS -I\$(top_srcdir)/libs -I\$(top_srcdir)"
598 GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la"
600 AC_SUBST(GST_OBJ_CFLAGS, "$GST_OBJ_CFLAGS")
601 AC_SUBST(GST_OBJ_LIBS, "$GST_OBJ_LIBS")
603 dnl specific additional LDFLAGS for plugins
604 GST_PLUGIN_LDFLAGS="-module -avoid-version $EXPORT_LDFLAGS"
605 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
607 plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
610 dnl ##################################################
611 dnl # deps for examples from manual #
612 dnl ##################################################
614 PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0,
615 HAVE_LIBGNOMEUI="yes", HAVE_LIBGNOMEUI="no")
616 AC_SUBST(LIBGNOMEUI_CFLAGS)
617 AC_SUBST(LIBGNOMEUI_LIBS)
618 AM_CONDITIONAL(HAVE_LIBGNOMEUI, test "x$HAVE_LIBGNOMEUI" = "xyes")
620 dnl ##################################################
621 dnl # Prepare informative messages to display at end #
622 dnl ##################################################
626 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
627 infomessages="$infomessages
628 *** Warning: You have configured using the --enable-plugin-builddir option.
630 This option is for development purposes only: binaries built with
631 it should be used with code in the build tree only. To build an
632 installable version, use ./configure without the --enable-plugin-builddir
633 option. Note that the autogen.sh script supplies the plugin builddir
634 option automatically -- run ./autogen.sh -- --disable-plugin-builddir to make
635 an installable build.
640 dnl #########################
641 dnl # Make the output files #
642 dnl #########################
644 dnl libs/ext/Makefile
645 dnl nothing there yet !
653 gst/indexers/Makefile
654 gst/elements/Makefile
656 gst/schedulers/Makefile
657 gst/registries/Makefile
660 libs/gst/control/Makefile
661 libs/gst/dataprotocol/Makefile
662 libs/gst/getbits/Makefile
666 tests/instantiate/Makefile
667 tests/memchunk/Makefile
668 tests/muxing/Makefile
669 tests/seeking/Makefile
671 tests/threadstate/Makefile
673 testsuite/bytestream/Makefile
674 testsuite/caps/Makefile
675 testsuite/cleanup/Makefile
676 testsuite/debug/Makefile
677 testsuite/dlopen/Makefile
678 testsuite/dynparams/Makefile
679 testsuite/elements/Makefile
680 testsuite/indexers/Makefile
681 testsuite/negotiation/Makefile
682 testsuite/pad/Makefile
683 testsuite/parse/Makefile
684 testsuite/plugin/Makefile
685 testsuite/refcounting/Makefile
686 testsuite/schedulers/Makefile
687 testsuite/states/Makefile
688 testsuite/threads/Makefile
689 testsuite/trigger/Makefile
691 examples/cutter/Makefile
692 examples/helloworld/Makefile
693 examples/launch/Makefile
694 examples/manual/Makefile
695 examples/mixer/Makefile
696 examples/pingpong/Makefile
697 examples/plugins/Makefile
698 examples/pwg/Makefile
699 examples/queue/Makefile
700 examples/retag/Makefile
701 examples/thread/Makefile
702 examples/typefind/Makefile
703 examples/xml/Makefile
712 docs/plugins/Makefile
713 docs/plugins/gstreamer-plugins.types
716 docs/version.entities
719 pkgconfig/gstreamer.pc
720 pkgconfig/gstreamer-uninstalled.pc
721 pkgconfig/gstreamer-base.pc
722 pkgconfig/gstreamer-base-uninstalled.pc
723 pkgconfig/gstreamer-control.pc
724 pkgconfig/gstreamer-control-uninstalled.pc
725 pkgconfig/gstreamer-dataprotocol.pc
726 pkgconfig/gstreamer-dataprotocol-uninstalled.pc
728 echo "$infomessages", infomessages="$infomessages"