back to HEAD
[platform/upstream/gstreamer.git] / configure.ac
1 AC_PREREQ(2.52)
2
3 dnl initialize autoconf
4 dnl we don't specify PACKAGE and VERSION because AS_VERSION puts it together
5 AC_INIT
6
7 dnl when going to/from release please set the nano (fourth number) right !
8 dnl releases only do Wall, cvs and prerelease does Werror too
9 AS_VERSION(gstreamer, GST_VERSION, 0, 9, 6, 1,
10     GST_CVS="no", GST_CVS="yes")
11
12 dnl can autoconf find the source ?
13 AC_CONFIG_SRCDIR([gst/gst.c])
14
15 dnl define the output header for config
16 AM_CONFIG_HEADER([config.h])
17
18 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
19 AM_MAINTAINER_MODE
20
21 dnl sets host_* variables
22 AC_CANONICAL_HOST
23
24 dnl initialize automake
25 dnl FIXME: this is deprecated use, we should move PACKAGE and VERSION to
26 dnl AC_INIT, but then we need to parse the version to pass to AS_VERSION
27 AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
28
29 dnl our libraries and install dirs use major.minor as a version
30 GST_MAJORMINOR=$GST_VERSION_MAJOR.$GST_VERSION_MINOR
31 dnl we override it here for release candidates for a new series
32 # GST_MAJORMINOR=0.9
33 AC_SUBST(GST_MAJORMINOR)
34
35 dnl CURRENT, REVISION, AGE
36 dnl - library source changed -> increment REVISION
37 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
38 dnl - interfaces added -> increment AGE
39 dnl - interfaces removed -> AGE = 0
40 dnl sets GST_LT_LDFLAGS
41 AS_LIBTOOL(GST, 8, 0, 0)
42 AS_LIBTOOL_TAGS
43 AM_PROG_LIBTOOL
44
45 dnl *** autotools stuff ****
46
47 dnl allow for different autotools
48 AS_AUTOTOOLS_ALTERNATE
49
50 dnl Add parameters for aclocal
51 AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
52
53 dnl set up gettext
54 dnl the version check needs to stay here because autopoint greps for it
55 AM_GNU_GETTEXT_VERSION([0.11.5])
56 AM_GNU_GETTEXT([external])
57 GST_GETTEXT([gstreamer-$GST_MAJORMINOR])
58
59 dnl *** check for arguments to configure ***
60
61 dnl subsystems - can influence other decisions so needs to be high up
62 dnl we need to AM_CONDITIONAL them here for automake 1.6.x compatibility
63 GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
64 AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_GST_DISABLE_DEBUG" = "xyes")
65 GST_CHECK_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
66 AM_CONDITIONAL(GST_DISABLE_LOADSAVE, test "x$GST_DISABLE_LOADSAVE" = "xyes")
67 GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
68 AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
69 GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
70 AM_CONDITIONAL(GST_DISABLE_TRACE, test "x$GST_DISABLE_TRACE" = "xyes")
71 GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
72 AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
73 GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
74 AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
75 GST_CHECK_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
76 AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, test "x$GST_DISABLE_ENUMTYPES" = "xyes")
77 GST_CHECK_SUBSYSTEM_DISABLE(INDEX,[index])
78 AM_CONDITIONAL(GST_DISABLE_INDEX, test "x$GST_DISABLE_INDEX" = "xyes")
79 GST_CHECK_SUBSYSTEM_DISABLE(NET,[network distribution])
80 AM_CONDITIONAL(GST_DISABLE_NET, test "x$GST_DISABLE_NET" = "xyes")
81 GST_CHECK_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
82 AM_CONDITIONAL(GST_DISABLE_PLUGIN, test "x$GST_DISABLE_PLUGIN" = "xyes")
83 GST_CHECK_SUBSYSTEM_DISABLE(URI,[uri handlers])
84 AM_CONDITIONAL(GST_DISABLE_URI, test "x$GST_DISABLE_URI" = "xyes")
85
86 GST_ARG_DEBUG
87 GST_ARG_PROFILING
88 GST_ARG_VALGRIND
89 GST_ARG_GCOV
90
91 GST_ARG_EXAMPLES
92
93 GST_ARG_WITH_PKG_CONFIG_PATH
94 GST_ARG_WITH_PACKAGE_NAME([GStreamer])
95 GST_ARG_WITH_PACKAGE_ORIGIN
96
97 dnl use a cache dir for storing element registry info.
98 GST_CACHE_DIR=${localstatedir}/cache/gstreamer-$GST_MAJORMINOR
99
100 AC_ARG_WITH(cachedir,
101   AC_HELP_STRING([--with-cachedir],
102     [specify path to use for plugin and command completion registries]),
103   [
104     case "${withval}" in
105       yes) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
106       no)  AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
107       *)   GST_CACHE_DIR="${withval}" ;;
108     esac
109   ], 
110   [:]) dnl Default value
111
112 AS_AC_EXPAND(GST_CACHE_DIR, $GST_CACHE_DIR)
113 AC_DEFINE_UNQUOTED(GST_CACHE_DIR, "$GST_CACHE_DIR", [Location of registry])
114 AC_MSG_NOTICE(Using $GST_CACHE_DIR as registry cache dir)
115
116 dnl building of tests
117 AC_ARG_ENABLE(tests,
118   AC_HELP_STRING([--disable-tests], [disable building test apps]),
119   [
120     case "${enableval}" in
121       yes) BUILD_TESTS=yes ;;
122       no)  BUILD_TESTS=no ;;
123       *)   AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
124     esac
125   ], 
126 [BUILD_TESTS=yes]) dnl Default value
127 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
128
129 dnl tests known to fail
130 AC_ARG_ENABLE(failing-tests,
131   AC_HELP_STRING([--disable-failing-tests],
132     [disable building tests known to fail]),
133   [
134     case "${enableval}" in
135       yes) BUILD_FAILING_TESTS=yes ;;
136       no)  BUILD_FAILING_TESTS=no ;;
137       *)   AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
138     esac
139   ], 
140   [BUILD_FAILING_TESTS=no]) dnl Default value
141 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
142 if test x$BUILD_FAILING_TESTS = xyes; then
143   AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
144 else
145   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.])
146 fi
147
148 dnl poison destroyed objects
149 AC_ARG_ENABLE(poisoning,
150   AC_HELP_STRING([--enable-poisoning],
151     [enable poisoning of deallocated objects]),
152   [
153     case "${enableval}" in
154       yes) USE_POISONING=yes ;;
155       no)  USE_POISONING=no ;;
156       *)   AC_MSG_ERROR(bad value ${enableval} for --enable-poisoning) ;;
157     esac
158   ], 
159   [USE_POISONING=no]) dnl Default value
160 if test "x$USE_POISONING" = xyes; then
161   AC_DEFINE(USE_POISONING, 1,
162     [Define if we should poison deallocated memory])
163 fi
164
165 dnl *** checks for platform ***
166
167 dnl * hardware/architecture *
168
169 dnl common/m4/gst-arch.m4
170 dnl check CPU type
171 GST_ARCH
172
173 dnl common/m4/gst-arch.m4
174 dnl check for unaligned access
175 GST_UNALIGNED_ACCESS
176 dnl create a configure variable for gst/gstconfig.h
177 if test x${as_cv_unaligned_access} = xyes ; then
178   GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 1"
179 else
180   GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 0"
181 fi
182 AC_SUBST(GST_HAVE_UNALIGNED_ACCESS_DEFINE)
183
184 dnl * software *
185
186 dnl check for large file support
187 dnl affected plugins must include config.h
188 AC_SYS_LARGEFILE
189
190 dnl HAVE_WIN32 currently means "disable POSIXisms".
191 case "$host" in
192   *-*-mingw*)
193     AC_DEFINE_UNQUOTED(HAVE_WIN32, 1, [Defined if compiling for Windows])
194     ;;
195   *)
196     ;;
197 esac
198
199 dnl *** checks for programs ***
200
201 dnl find a compiler
202 AC_PROG_CC
203
204 dnl find an assembler
205 AM_PROG_AS
206
207 dnl we use awk in the bison version check
208 AC_PROG_AWK
209
210 dnl we require bison for building the parser
211 dnl FIXME: check if AC_PROG_YACC is suitable here
212 dnl FIXME: make precious
213 AC_PATH_PROG(BISON_PATH, bison, no)
214 if test x$BISON_PATH = xno; then
215   AC_MSG_ERROR(Could not find bison)
216 fi
217
218 dnl check bison version
219 AC_MSG_CHECKING([bison version])
220
221 if $BISON_PATH --version | head -n 1 | $AWK '{ if ($4 < 1.35) exit 1; else exit 0;}'; 
222 then 
223   AC_MSG_RESULT([ok])
224 else 
225   AC_MSG_RESULT([too old.])
226   AC_MSG_ERROR([Your bison version is too old, v1.35 or later is required.])
227 fi
228
229 dnl we require flex for building the parser
230 dnl FIXME: check if AC_PROG_LEX is suitable here
231 AC_PATH_PROG(FLEX_PATH, flex, no)
232 if test x$FLEX_PATH = xno; then
233   AC_MSG_ERROR(Could not find flex)
234 fi
235
236 dnl Perl is used in building documentation
237 AC_PATH_PROG(PERL_PATH, perl, no)
238 if test x$PERL_PATH = xno; then
239   AC_MSG_ERROR(Could not find perl)
240 fi
241
242 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
243 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
244
245 dnl check for documentation tools
246 GST_DOCBOOK_CHECK
247 GTK_DOC_CHECK([1.3])
248
249 dnl *** checks for libraries ***
250
251 dnl For interactive UNIX (a Sun thing)
252 dnl FIXME: this adds -lcposix to LIBS, but I doubt we use LIBS
253 AC_ISC_POSIX
254
255 dnl *** checks for header files ***
256
257 dnl check if we have ANSI C header files
258 AC_HEADER_STDC
259
260 dnl Check for ucontext.h
261 AC_CHECK_HEADERS([ucontext.h])
262 AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
263 AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
264 AC_CHECK_HEADERS([process.h])
265
266 dnl *** checks for types/defines ***
267
268 dnl *** checks for structures ***
269
270 dnl *** checks for compiler characteristics ***
271
272 dnl make sure we can use "inline" from C code
273 AC_C_INLINE
274
275 OPT_CFLAGS=
276 dnl Check for some compiler flags that optimize our code.
277 if test "x$GCC" = xyes; then
278   AS_COMPILER_FLAG(-fno-common, OPT_CFLAGS="$OPT_CFLAGS -fno-common")
279 fi
280
281 dnl FIXME: decide what kind of flag this is, maybe it's not an optimization
282 dnl flag
283 dnl check if we should use -Wa,-mregnames on PowerPC, so we can use
284 dnl symbolic register names in inline asm
285 if test x$HAVE_CPU_PPC = xyes ; then
286   AS_COMPILER_FLAG(["-Wa,-mregnames"],
287     [OPT_CFLAGS="$OPT_CFLAGS -Wa,-mregnames"])
288 fi
289
290 dnl *** checks for library functions ***
291
292 AC_CHECK_FUNCS([sigaction])
293
294 dnl check for fseeko()
295 AC_FUNC_FSEEKO
296 dnl check for ftello()
297 AC_CHECK_FUNCS([ftello])
298
299 AC_CHECK_FUNCS([fgetpos])
300 AC_CHECK_FUNCS([fsetpos])
301
302 dnl check for mmap()
303 AC_FUNC_MMAP
304 AM_CONDITIONAL(HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" = "xyes")
305
306 dnl common/m4/gst-mcsc.m4
307 dnl check for makecontext and define HAVE_MAKECONTEXT if we have it
308 AC_CHECK_MCSC
309 if test "$ac_cv_check_mcsc" = "yes"; then
310   AC_DEFINE_UNQUOTED(HAVE_MAKECONTEXT, 1,
311                      [defined if we have makecontext ()])
312 fi
313
314 dnl Check for a way to display the function name in debug output
315 GST_CHECK_FUNCTION
316
317 dnl test for register_printf_function
318 AC_CHECK_FUNC(register_printf_function,
319   [
320     GST_PRINTF_EXTENSION_FORMAT_DEFINE="#define GST_PTR_FORMAT \"P\""
321     AC_DEFINE(HAVE_PRINTF_EXTENSION, 1,
322       [Defined if we have register_printf_function ()])
323   ],
324   GST_PRINTF_EXTENSION_FORMAT_DEFINE="#define GST_PTR_FORMAT \"p\""
325 )
326 AC_SUBST(GST_PRINTF_EXTENSION_FORMAT_DEFINE)
327
328 dnl test if we have dladdr(); we use it for debugging; see gst/gstinfo.c
329 save_cflags="$CFLAGS"
330 CFLAGS="$CFLAGS -D_GNU_SOURCE"
331 AC_CHECK_LIB(dl, dladdr,
332    AC_DEFINE(HAVE_DLADDR, 1,
333              [Defined if we have dladdr ()]))
334 CFLAGS="$save_cflags"
335
336 dnl *** checks for dependancy libraries ***
337
338 dnl GLib
339
340 GST_GLIB_CHECK([2.6])
341
342 dnl GLib 2.8 has some bug fixes that we like, so make sure our code knows
343 AC_MSG_CHECKING([glib version >= 2.8])
344 if pkg-config --atleast-version=2.8 glib-2.0; then
345   AC_MSG_RESULT(yes)
346   GST_HAVE_GLIB_2_8_DEFINE="#define GST_HAVE_GLIB_2_8 1"
347 else
348   AC_MSG_RESULT(no)
349   GST_HAVE_GLIB_2_8_DEFINE="/* #undef GST_HAVE_GLIB_2_8 */"
350 fi
351 AC_SUBST(GST_HAVE_GLIB_2_8_DEFINE)
352
353 dnl Check for glib2 without extra fat, useful for the unversioned tool frontends
354 PKG_CHECK_MODULES(GLIB_ONLY, glib-2.0 >= $GLIB_REQ)
355   
356 dnl libxml 2, which is/should be optional (FIXME)
357 if test "x$GST_DISABLE_LOADSAVE" = "xyes" && \
358    test "x$GST_DISABLE_REGISTRY" = "xyes"
359 then
360   AC_MSG_NOTICE([Registry and load/save are disabled, not checking for libxml2])
361 else
362   dnl check for libxml2 with minimum req version
363   GST_LIBXML2_CHECK(2.4.9)
364 fi
365
366 dnl check for "check", unit testing library/header
367 AM_PATH_CHECK(0.9.2,
368     [
369         HAVE_CHECK=yes
370         AC_MSG_NOTICE(CHECK_CFLAGS: $CHECK_CFLAGS)
371         AC_MSG_NOTICE(CHECK_LIBS: $CHECK_LIBS)
372     ],
373     HAVE_CHECK=no)
374 AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
375
376 dnl *** set variables based on configure arguments
377
378 dnl set license and copyright notice
379 GST_LICENSE="LGPL"
380 AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
381 AC_SUBST(GST_LICENSE)
382
383 dnl define LIBDIR so we can inform people where we live
384 AS_AC_EXPAND(LIBDIR, $libdir)
385 AC_DEFINE_UNQUOTED(LIBDIR, "$LIBDIR", [library dir])
386
387 dnl set location of plugin directory
388 GST_SET_PLUGINDIR
389
390 dnl FIXME: add LIBXML_PKG here
391 GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
392 AC_SUBST(GST_PKG_DEPS)
393
394 dnl define an ERROR_CFLAGS Makefile variable
395 GST_SET_ERROR_CFLAGS($GST_CVS)
396
397 dnl define correct level for debugging messages
398 GST_SET_LEVEL_DEFAULT($GST_CVS)
399
400 dnl *** finalize CFLAGS, LDFLAGS, LIBS
401
402 dnl Overview:
403 dnl GST_OPTION_CFLAGS:  common flags for profiling, debugging, errors, ...
404 dnl GST_ALL_*:          flags shared by all built objects
405 dnl GST_OBJ_*:          additional flags to link to the core library
406 dnl                     include GST_ALL_*
407 dnl GST_LT_LDFLAGS:     library versioning of our libraries
408 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
409
410 dnl GST_OPTION_CFLAGS
411 if test "x$USE_DEBUG" = xyes; then
412    PROFILE_CFLAGS="-g"
413 fi
414 AC_SUBST(PROFILE_CFLAGS)
415
416 DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
417 AC_SUBST(DEPRECATED_CFLAGS)
418
419 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
420 GST_OPTION_CFLAGS="\$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
421 AC_SUBST(GST_OPTION_CFLAGS)
422
423 dnl GST_ALL_*
424 dnl vars common to for all internal objects (core libs, elements, applications)
425 dnl CFLAGS:
426 dnl - XML needs to be added because xmlPtr is used in core
427 dnl - src and build dirs need to be added because every piece that gets built
428 dnl   will need the GStreamer source and generated headers
429 dnl LIBS: XML doesn't need to be added because we don't explicitly use symbols
430 dnl       from LibXML
431 GST_ALL_CFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir) $GLIB_CFLAGS $XML_CFLAGS \$(GST_OPTION_CFLAGS)"
432 dnl FIXME: check if LTLIBINTL is needed everywhere
433 dnl I presume it is given that it contains the symbols that _() stuff maps to
434 GST_ALL_LIBS="$GLIB_LIBS $LTLIBINTL"
435 dnl LDFLAGS modifier defining exported symbols from built shared objects
436 EXPORT_LDFLAGS="-export-symbols-regex [_]*\(gst_\|Gst\|GST_\).*"
437 dnl LDFLAGS really should only contain flags, not libs - they get added before
438 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
439 GST_ALL_LDFLAGS="$EXPORT_LDFLAGS -no-undefined"
440 AC_SUBST(GST_ALL_CFLAGS)
441 AC_SUBST(GST_ALL_LIBS)
442 AC_SUBST(GST_ALL_LDFLAGS)
443
444 dnl GST_OBJ_*
445 dnl default vars for all internal objects built on libgstreamer
446 GST_OBJ_CFLAGS="\$(GST_ALL_CFLAGS)"
447 GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la \$(GST_ALL_LIBS)"
448 GST_OBJ_LDFLAGS="$GST_LT_LDFLAGS $GST_ALL_LDFLAGS"
449 AC_SUBST(GST_OBJ_CFLAGS)
450 AC_SUBST(GST_OBJ_LIBS)
451 AC_SUBST(GST_OBJ_LDFLAGS)
452
453 dnl GST_PLUGIN_LDFLAGS
454 dnl LDFLAGS for plugins; include GST_ALL_LDFLAGS
455 GST_PLUGIN_LDFLAGS="-module -avoid-version $GST_ALL_LDFLAGS"
456 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
457
458 dnl ##################################################
459 dnl # deps for examples from manual                  #
460 dnl ##################################################
461
462 PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0,
463                   HAVE_LIBGNOMEUI="yes", HAVE_LIBGNOMEUI="no")
464 AM_CONDITIONAL(HAVE_LIBGNOMEUI, test "x$HAVE_LIBGNOMEUI" = "xyes")
465
466 AC_CONFIG_FILES(
467 Makefile
468 gst/Makefile
469 gst/gstconfig.h
470 gst/gstversion.h
471 gst/base/Makefile
472 gst/check/Makefile
473 gst/indexers/Makefile
474 gst/net/Makefile
475 gst/elements/Makefile
476 gst/parse/Makefile
477 libs/Makefile
478 libs/gst/Makefile
479 libs/gst/controller/Makefile
480 libs/gst/dataprotocol/Makefile
481 po/Makefile.in
482 check/Makefile
483 tests/Makefile
484 tests/instantiate/Makefile
485 tests/muxing/Makefile
486 tests/seeking/Makefile
487 tests/sched/Makefile
488 tests/threadstate/Makefile
489 testsuite/Makefile
490 testsuite/caps/Makefile
491 testsuite/debug/Makefile
492 testsuite/dlopen/Makefile
493 testsuite/elements/Makefile
494 testsuite/indexers/Makefile
495 testsuite/parse/Makefile
496 testsuite/plugin/Makefile
497 testsuite/refcounting/Makefile
498 testsuite/states/Makefile
499 testsuite/threads/Makefile
500 testsuite/trigger/Makefile
501 examples/Makefile
502 examples/controller/Makefile
503 examples/cutter/Makefile
504 examples/helloworld/Makefile
505 examples/launch/Makefile
506 examples/manual/Makefile
507 examples/mixer/Makefile
508 examples/metadata/Makefile
509 examples/pingpong/Makefile
510 examples/plugins/Makefile
511 examples/pwg/Makefile
512 examples/queue/Makefile
513 examples/retag/Makefile
514 examples/thread/Makefile
515 examples/typefind/Makefile
516 examples/xml/Makefile
517 tools/Makefile
518 common/Makefile
519 common/m4/Makefile
520 docs/Makefile
521 docs/faq/Makefile
522 docs/gst/Makefile
523 docs/libs/Makefile
524 docs/manual/Makefile
525 docs/pwg/Makefile
526 docs/xsl/Makefile
527 docs/version.entities
528 win32/common/config.h
529 pkgconfig/Makefile
530 stamp.h
531 pkgconfig/gstreamer.pc
532 pkgconfig/gstreamer-uninstalled.pc
533 pkgconfig/gstreamer-base.pc
534 pkgconfig/gstreamer-base-uninstalled.pc
535 pkgconfig/gstreamer-check.pc
536 pkgconfig/gstreamer-check-uninstalled.pc
537 pkgconfig/gstreamer-controller.pc
538 pkgconfig/gstreamer-controller-uninstalled.pc
539 pkgconfig/gstreamer-dataprotocol.pc
540 pkgconfig/gstreamer-dataprotocol-uninstalled.pc
541 pkgconfig/gstreamer-net.pc
542 pkgconfig/gstreamer-net-uninstalled.pc
543 gstreamer.spec
544 )
545 AC_OUTPUT