Add framework for internationalization
[platform/upstream/gstreamer.git] / configure.ac
1 AC_INIT
2 AC_CANONICAL_TARGET([])
3
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, 0, 1, GST_CVS="no", GST_CVS="yes")
7
8 if test x$program_suffix = xNONE ; then
9   program_suffix=-$GST_VERSION_MAJOR.$GST_VERSION_MINOR
10 fi
11
12 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
13 AM_MAINTAINER_MODE
14 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
15
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)
19
20 AC_PROG_CC
21 dnl For interactive UNIX (a Sun thing)
22 AC_ISC_POSIX
23
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, 3, 0, 0)
30
31 AC_CONFIG_SRCDIR([gst/gst.c])
32 AM_CONFIG_HEADER(config.h)
33
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"
37
38 AM_PROG_CC_STDC
39 AM_PROG_AS
40 AS="${CC}"
41
42 dnl AC_PROC_INTLTOOL([0.26])
43 dnl AM_GNU_GETTEXT([external])
44 ALL_LINGUAS="de"
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])
48 AM_GLIB_GNU_GETTEXT
49
50 AM_GLIB_DEFINE_LOCALEDIR(GST_LOCALEDIR)
51
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 fi
57
58 dnl We disable static building for development, for time savings
59 dnl *NOTE*: dnl this line before release, so release does static too
60 dnl AM_DISABLE_STATIC
61
62 AC_HEADER_STDC([])
63
64
65 dnl ##############################
66 dnl # Do automated configuration #
67 dnl ##############################
68
69 dnl Check for tools:
70 dnl ================
71
72 dnl allow for different autotools
73 AS_AUTOTOOLS_ALTERNATE()
74
75 dnl modify pkg-config path
76 AC_ARG_WITH(pkg-config-path, 
77    AC_HELP_STRING([--with-pkg-config-path],
78                   [colon-separated list of pkg-config(1) dirs]),
79    [export PKG_CONFIG_PATH=${withval}])
80
81 GST_DOC()
82 GST_ARCH()
83
84 dnl Perl is used in building documentation
85 AC_PATH_PROG(PERL_PATH, perl, no)
86 if test x$PERL_PATH = xno; then
87   AC_MSG_ERROR(Could not find perl)
88 fi
89
90 dnl we require bison for building of some of the marshal files
91 dnl FIXME: check if AC_PROG_YACC is suitable here
92 AC_PATH_PROG(BISON_PATH, bison, no)
93 if test x$BISON_PATH = xno; then
94   AC_MSG_ERROR(Could not find bison)
95 fi
96
97 dnl we require flex for building the parser
98 dnl FIXME: check if AC_PROG_LEX is suitable here
99 AC_PATH_PROG(FLEX_PATH, flex, no)
100 if test x$FLEX_PATH = xno; then
101   AC_MSG_ERROR(Could not find flex)
102 fi
103
104 dnl
105 dnl We should really use AC_SYS_LARGEFILE, but the problem is
106 dnl many of the plugins don't include "config.h".  To assure
107 dnl binary compatibility, it is necessary that all gstreamer
108 dnl code be compiled with the same sizeof(off_t), so we use
109 dnl the following crude hack.
110 dnl
111
112 dnl
113 dnl GST_CFLAGS are split up as GST_EXT_CFLAGS and GST_INT_CFLAGS
114 dnl same for libs
115 dnl this is so we can make GST_CFLAGS for external modules available
116 dnl without mixing in internal (uninstalled) CFLAGS
117 dnl
118
119 dnl disable deprecated functions internally
120 GST_INT_CFLAGS="-DGST_DISABLE_DEPRECATED"
121
122 AC_MSG_CHECKING(for large file support)
123 AC_TRY_RUN([
124 #define _LARGEFILE_SOURCE
125 #define _FILE_OFFSET_BITS 64
126 #include <sys/types.h>
127 int main () { return !(sizeof(off_t) == 8); }
128 ],
129 [
130 AC_MSG_RESULT(yes)
131 GST_EXT_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
132 ],
133 [
134 AC_MSG_RESULT(no)
135 ],
136 [
137 AC_MSG_RESULT(no)
138 ])
139
140 dnl check for makecontext and define HAVE_MAKECONTEXT if we have it
141 AC_CHECK_MCSC()
142 if test "$ac_cv_check_mcsc" == "yes"; then
143   AC_DEFINE_UNQUOTED(HAVE_MAKECONTEXT, $HAVE_MAKECONTEXT,
144                      [defined if we have makecontext ()])
145 fi
146
147 dnl Check for a way to display the function name in debug output
148 GST_CHECK_FUNCTION()
149
150 dnl Check for essential libraries first:
151 dnl ====================================
152
153 dnl === GLib 2 ===
154 dnl Minimum required version of GLib2
155 dnl required for compilation without warnings
156 GLIB2_REQ="2.0.1"
157 AC_SUBST(GLIB2_REQ)
158
159 dnl Check for glib2
160 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQ gobject-2.0 gthread-2.0 gmodule-2.0,HAVE_GLIB2=yes,HAVE_GLIB2=no)
161 GLIB_LIBS=$GLIB2_LIBS
162 GLIB_CFLAGS=$GLIB2_CFLAGS
163 AC_SUBST(GLIB_LIBS)
164 AC_SUBST(GLIB_CFLAGS)
165
166 if test "x$HAVE_GLIB2" = "xno"; then
167   AC_MSG_ERROR([GStreamer requires GLib 2.0 to compile.])
168 fi
169
170 GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
171 AC_SUBST(GST_PKG_DEPS)
172   
173 dnl === libxml 2 ===
174 dnl Minimum required version of libxml2
175 LIBXML2_REQ="2.4.9"
176 AC_SUBST(LIBXML2_REQ)
177
178 dnl check for libxml2
179 GST_LIBXML2_CHECK()
180
181 dnl popt checks
182 dnl FIXME: This test passes on popt 1.6.2, maybe earlier, but popt 1.6.2
183 dnl        causes segfaults on gst_init. Write a working test if possible.
184 GST_CHECK_LIBHEADER(POPT, popt, poptStrippedArgv,, popt.h, POPT_LIBS="-lpopt",
185   AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
186                 download the latest version from 
187                 ftp://ftp.rpm.org/pub/rpm/dist/])
188 )
189 AC_MSG_NOTICE(Checking for POPT_TABLEEND)
190 AC_COMPILE_IFELSE([
191 #include <popt.h>
192 int main ()
193 {
194 #ifndef POPT_TABLEEND
195 #error
196 #else
197   return 0;
198 #endif
199 }
200 ],, [
201   dnl it failed
202   AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
203                 download the latest version from 
204                 ftp://ftp.rpm.org/pub/rpm/dist/])
205 ])
206
207 dnl Check for atomic.h
208 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
209 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
210 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
211 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
212 if test x$HAVE_ATOMIC_H = xyes; then
213   AC_LINK_IFELSE([
214 #include "asm/atomic.h"
215 main() {atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
216   ],, [
217     # Not successful
218     if test x$HAVE_ATOMIC_H = xyes; then
219       AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
220     fi
221     HAVE_ATOMIC_H=no
222   ])
223 fi
224
225 dnl Check for ucontext.h
226 AC_CHECK_HEADER(ucontext.h, AC_DEFINE(HAVE_UCONTEXT_H, 1, [defined if we have ucontext.h]))
227
228 dnl ######################################################################
229 dnl # Check command line parameters, and set shell variables accordingly #
230 dnl ######################################################################
231
232 dnl FIXME: simplify all this down using a few m4 macros
233
234 AC_ARG_ENABLE(libmmx,
235 AC_HELP_STRING([--enable-libmmx],[use libmmx, if available]),
236 [case "${enableval}" in
237   yes) USE_LIBMMX=$HAVE_LIBMMX ;;
238   no)  USE_LIBMMX=no ;;
239   *) AC_MSG_ERROR(bad value ${enableval} for --enable-libmmx) ;;
240 esac], 
241 [USE_LIBMMX=$HAVE_LIBMMX]) dnl Default value
242
243 AC_ARG_ENABLE(atomic,
244 AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
245 [case "${enableval}" in
246   yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
247   noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
248   no)  USE_ATOMIC_H=no;;
249   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
250 esac], 
251 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
252
253 AC_ARG_ENABLE(fast-stack-trash,
254 AC_HELP_STRING([--enable-fast-stack-trash],[use fast memory allocator (i586 or above)]),
255 [case "${enableval}" in
256   yes) USE_FAST_STACK_TRASH=yes;;
257   noset) USE_FAST_STACK_TRASH=no;;
258   no)  USE_FAST_STACK_TRASH=no;;
259   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
260 esac], 
261 [USE_FAST_STACK_TRASH=yes]) dnl Default value
262
263 AC_ARG_ENABLE(plugin-builddir,
264 AC_HELP_STRING([--enable-plugin-builddir],[allow tests/demos to use non-installed plugins]),
265 [case "${enableval}" in
266   yes) PLUGINS_USE_BUILDDIR=yes ;;
267   no)  PLUGINS_USE_BUILDDIR=no ;;
268   *) AC_MSG_ERROR(bad value ${enableval} for --enable-plugin-builddir) ;;
269 esac], 
270 [PLUGINS_USE_BUILDDIR=no]) dnl Default value
271
272 AC_ARG_ENABLE(profiling,
273 AC_HELP_STRING([--enable-profiling],[adds -pg to compiler commandline, for profiling]),
274 [case "${enableval}" in
275   yes) USE_PROFILING=yes ;;
276   no)  UES_PROFILING=no ;;
277   *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
278 esac], 
279 [USE_PROFILING=no]) dnl Default value
280
281 dnl use a cache dir for storing element registry info.
282 dnl default to building registry in the source tree if we are enabling plugin build dir
283 if test "x$PLUGINS_USE_BUILDDIR" = "xyes"; then
284   GST_CACHE_DIR=`pwd`
285 else
286   dnl ${localstatedir} points to PREFIX/var
287   GST_CACHE_DIR=${localstatedir}/cache/gstreamer-$GST_MAJORMINOR
288 fi
289 AC_ARG_WITH(cachedir,
290 AC_HELP_STRING([--with-cachedir],[specify path to use for plugin and command completion registries]),
291 [case "${withval}" in
292   yes) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
293   no) AC_MSG_ERROR(bad value ${withval} for --with-cachedir) ;;
294   *) GST_CACHE_DIR="${withval}" ;;
295 esac], 
296 [:]) dnl Default value
297
298 AS_AC_EXPAND(GST_CACHE_DIR, $GST_CACHE_DIR)
299 AC_MSG_NOTICE(Using $GST_CACHE_DIR as registry cache dir)
300
301
302 dnl building of tests
303 AC_ARG_ENABLE(tests,
304 AC_HELP_STRING([--disable-tests],[disable building test apps]),
305 [case "${enableval}" in
306   yes) BUILD_TESTS=yes ;;
307   no)  BUILD_TESTS=no ;;
308   *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
309 esac], 
310 [BUILD_TESTS=yes]) dnl Default value
311 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
312
313 dnl tests known to fail
314 AC_ARG_ENABLE(failing-tests,
315 AC_HELP_STRING([--disable-failing-tests],[disable building tests known to fail]),
316 [case "${enableval}" in
317   yes) BUILD_FAILING_TESTS=yes ;;
318   no)  BUILD_FAILING_TESTS=no ;;
319   *) AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
320 esac], 
321 [BUILD_FAILING_TESTS=no]) dnl Default value
322 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
323 if test x$BUILD_FAILING_TESTS = xyes; then
324   AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
325 else
326   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.])
327 fi
328
329 AC_ARG_ENABLE(examples,
330 AC_HELP_STRING([--disable-examples],[disable building examples]),
331 [case "${enableval}" in
332   yes) BUILD_EXAMPLES=yes ;;
333   no)  BUILD_EXAMPLES=no ;;
334   *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
335 esac], 
336 [BUILD_EXAMPLES=yes]) dnl Default value
337 AM_CONDITIONAL(BUILD_EXAMPLES,      test "x$BUILD_EXAMPLES" = "xyes")
338
339 dnl Next, check for the optional components:
340 dnl ========================================
341
342 dnl debugging stuff
343 AC_ARG_ENABLE(debug,
344 AC_HELP_STRING([--disable-debug],[disable addition of -g debugging info]),
345 [case "${enableval}" in
346   yes) USE_DEBUG=yes ;;
347   no)  USE_DEBUG=no ;;
348   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
349 esac],
350 [USE_DEBUG=yes]) dnl Default value
351 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, true)
352 GST_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
353
354 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_LOADSAVE, true)
355 GST_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
356 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_TYPEFIND, true)
357 GST_SUBSYSTEM_DISABLE(TYPEFIND,[typefind plugin],)
358 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_AUTOPLUG, true)
359 GST_SUBSYSTEM_DISABLE(AUTOPLUG,[autoplugger subsystem])
360 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_PARSE, true)
361 GST_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
362 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_TRACE, true)
363 GST_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
364 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, true)
365 GST_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
366
367 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_REGISTRY, true)
368 GST_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
369 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, true)
370 GST_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
371 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_INDEX, true)
372 GST_SUBSYSTEM_DISABLE(INDEX,[index])
373 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_PLUGIN, true)
374 GST_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
375 translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_URI, true)
376 GST_SUBSYSTEM_DISABLE(URI,[uri handlers])
377
378 dnl ################################################
379 dnl # Set defines according to variables set above #
380 dnl ################################################
381
382
383 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
384 dnl HAVE_ and it is likely to be easier to stick with the old name
385 if test "x$USE_LIBMMX" = xyes; then
386   AC_DEFINE(HAVE_LIBMMX, 1, [Define if libmmx is available])
387 fi
388
389 if test "x$USE_ATOMIC_H" = xyes; then
390   AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
391 fi
392
393 if test "x$USE_FAST_STACK_TRASH" = xyes; then
394   AC_DEFINE(USE_FAST_STACK_TRASH, 1, [Define if we should use i586 optimized stack functions])
395 fi
396
397 dnl test if we have pthread_attr_setstack; if not use the older calls
398 AC_CHECK_LIB(pthread, pthread_attr_setstack, 
399    AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACK, 1, 
400              [Defined if libpthread has pthread_attr_setstack ()]))
401
402 dnl test if we have posix_memalign; FreeBSD doesn't
403 AC_CHECK_FUNC(posix_memalign,
404    AC_DEFINE(HAVE_POSIX_MEMALIGN, 1,
405              [Defined if we have posix_memalign ()]))
406
407 dnl test for sigaction()
408 AC_CHECK_FUNC(sigaction,
409    AC_DEFINE(HAVE_SIGACTION, 1,
410              [Defined if we have sigaction ()]))
411
412 dnl test if we have dladdr(); we use it for debugging
413 save_cflags="$CFLAGS"
414 CFLAGS="$CFLAGS -D_GNU_SOURCE"
415 AC_CHECK_LIB(dl, dladdr,
416    AC_DEFINE(HAVE_DLADDR, 1,
417              [Defined if we have dladdr ()]))
418 CFLAGS="$save_cflags"
419
420 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
421   AC_DEFINE(PLUGINS_USE_BUILDDIR, 1, [Define if plugins should be loaded from the build tree - only developers should use this])
422 fi
423
424 if test "x$USE_DEBUG" = xyes; then
425    GST_INT_CFLAGS="$GST_INT_CFLAGS -g"
426 fi
427
428 if test "x$USE_PROFILING" = xyes; then
429 dnl  CFLAGS="$CFLAGS -pg -fprofile-arcs"
430   FOMIT_FRAME_POINTER=""
431 else
432   FOMIT_FRAME_POINTER="-fomit-frame-pointer"
433 fi
434
435 dnl
436 dnl AC_SUBST(FOMIT_FRAME_POINTER)
437 dnl
438
439 dnl #############################
440 dnl # Set automake conditionals #
441 dnl #############################
442
443 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
444 dnl HAVE_ and it is likely to be easier to stick with the old name
445 AM_CONDITIONAL(HAVE_ATOMIC_H,       test "x$USE_ATOMIC_H" = "xyes")
446
447 AM_CONDITIONAL(EXPERIMENTAL,        test "$EXPERIMENTAL" = "$xyes")
448 AM_CONDITIONAL(BROKEN,              test "$BROKEN" = "$xyes")
449
450 AM_CONDITIONAL(PLUGINS_USE_BUILDDIR,  test "x$PLUGINS_USE_BUILDDIR" = "xyes")
451
452
453 dnl ############################
454 dnl # Set up some more defines #
455 dnl ############################
456
457 dnl Set location of registry dir.
458 AC_DEFINE_UNQUOTED(GST_CACHE_DIR, "$GST_CACHE_DIR", [Define the registry directory])
459 AC_SUBST(GST_CACHE_DIR)
460
461 dnl Set location of plugin directory
462 if test "x${prefix}" = "xNONE"; then
463   PLUGINS_DIR=${ac_default_prefix}/lib/gstreamer-$GST_MAJORMINOR
464 else
465   PLUGINS_DIR=${prefix}/lib/gstreamer-$GST_MAJORMINOR
466 fi
467 AC_DEFINE_UNQUOTED(PLUGINS_DIR, "$PLUGINS_DIR", [Define the plugin directory])
468 AC_SUBST(PLUGINS_DIR)
469
470 dnl Set location of uninstalled plugin directory
471 PLUGINS_BUILDDIR=`pwd`
472 AC_DEFINE_UNQUOTED(PLUGINS_BUILDDIR, "$PLUGINS_BUILDDIR", [Define the uninstalled plugin directory])
473 AC_SUBST(PLUGINS_BUILDDIR)
474
475 dnl since glib and xml are package deps, there's no need to include their cflags
476 dnl in the pkg-config file
477
478 dnl for pkg-config
479 GST_PKG_CFLAGS=$GST_EXT_CFLAGS
480 GST_PKG_LIBS=$GST_EXT_LIBS
481 AC_SUBST(GST_PKG_CFLAGS)
482 AC_SUBST(GST_PKG_LIBS)
483
484 dnl finalize _CFLAGS and _LIBS
485 dnl add GLIB and XML if necessary to EXT_*
486 GST_CFLAGS="$GST_EXT_CFLAGS $XML_CFLAGS $GLIB_CFLAGS"
487 GST_LIBS="$GST_EXT_LIBS $XML_LIBS $GLIB_LIBS -lpopt"
488
489 dnl Private vars for libgst only
490 LIBGST_LIBS="$GST_LIBS"
491 LIBGST_CFLAGS="$GST_CFLAGS -I\$(top_srcdir) $GST_ERROR"
492 AC_SUBST(LIBGST_LIBS)
493 AC_SUBST(LIBGST_CFLAGS)
494
495 dnl Vars for everyone else
496 GST_INT_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la"
497 GST_INT_CFLAGS="$GST_INT_CFLAGS -I\$(top_srcdir)/libs -I\$(top_srcdir)/include"
498
499 AC_SUBST(GST_CFLAGS, "$LIBGST_CFLAGS $GST_INT_CFLAGS")
500 AC_SUBST(GST_LIBS, "$LIBGST_LIBS $GST_INT_LIBS")
501
502 GST_PLUGIN_LDFLAGS="-module -avoid-version"
503 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
504
505
506 dnl ##################################################
507 dnl # deps for examples from manual                  #
508 dnl ##################################################
509
510 PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0,
511                   HAVE_LIBGNOMEUI="yes", HAVE_LIBGNOMEUI="no")
512 AC_SUBST(LIBGNOMEUI_CFLAGS)
513 AC_SUBST(LIBGNOMEUI_LIBS)
514 AM_CONDITIONAL(HAVE_LIBGNOMEUI, test "x$HAVE_LIBGNOMEUI" = "xyes")
515
516 dnl ##################################################
517 dnl # Prepare informative messages to display at end #
518 dnl ##################################################
519
520 infomessages=
521
522 if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
523   infomessages="$infomessages
524 *** Warning: You have configured using the --enable-plugin-builddir option.
525
526 This option is for development purposes only: binaries built with
527 it should be used with code in the build tree only.  To build an
528 installable version, use ./configure without the --enable-plugin-builddir
529 option.  Note that the autogen.sh script supplies the plugin builddir
530 option automatically -- run ./autogen.sh -- --disable-plugin-builddir to make
531 an installable build.
532
533 "
534 fi
535
536 dnl #########################
537 dnl # Make the output files #
538 dnl #########################
539
540 dnl libs/ext/Makefile
541 dnl nothing there yet !
542 AC_OUTPUT(
543 Makefile
544 include/Makefile
545 gst/Makefile
546 gst/gstconfig.h
547 gst/gstversion.h
548 gst/autoplug/Makefile
549 gst/indexers/Makefile
550 gst/elements/Makefile
551 gst/parse/Makefile
552 gst/schedulers/Makefile
553 gst/types/Makefile
554 gst/registries/Makefile
555 libs/Makefile
556 libs/gst/Makefile
557 libs/gst/bytestream/Makefile
558 libs/gst/getbits/Makefile
559 libs/gst/control/Makefile
560 libs/ext/Makefile
561 po/Makefile.in
562 tests/Makefile
563 tests/bufspeed/Makefile
564 tests/memchunk/Makefile
565 tests/muxing/Makefile
566 tests/seeking/Makefile
567 tests/sched/Makefile
568 tests/threadstate/Makefile
569 testsuite/Makefile
570 testsuite/bytestream/Makefile
571 testsuite/caps/Makefile
572 testsuite/cleanup/Makefile
573 testsuite/clock/Makefile
574 testsuite/debug/Makefile
575 testsuite/dynparams/Makefile
576 testsuite/elements/Makefile
577 testsuite/indexers/Makefile
578 testsuite/parse/Makefile
579 testsuite/plugin/Makefile
580 testsuite/refcounting/Makefile
581 testsuite/threads/Makefile
582 examples/Makefile
583 examples/autoplug/Makefile
584 examples/cutter/Makefile
585 examples/helloworld/Makefile
586 examples/helloworld2/Makefile
587 examples/launch/Makefile
588 examples/manual/Makefile
589 examples/mixer/Makefile
590 examples/pingpong/Makefile
591 examples/plugins/Makefile
592 examples/queue/Makefile
593 examples/queue2/Makefile
594 examples/queue3/Makefile
595 examples/queue4/Makefile
596 examples/thread/Makefile
597 examples/typefind/Makefile
598 examples/xml/Makefile
599 tools/Makefile
600 docs/Makefile
601 docs/faq/Makefile
602 docs/gst/Makefile
603 docs/libs/Makefile
604 docs/manual/Makefile
605 docs/pwg/Makefile
606 docs/plugins/Makefile
607 docs/plugins/gstreamer-plugins.types
608 docs/xsl/Makefile
609 pkgconfig/Makefile
610 stamp.h
611 pkgconfig/gstreamer.pc
612 pkgconfig/gstreamer-uninstalled.pc
613 pkgconfig/gstreamer-control.pc
614 pkgconfig/gstreamer-control-uninstalled.pc
615 gstreamer.spec,
616 echo "$infomessages", infomessages="$infomessages"
617 )