Added boilerplate gtk-doc files for plugin-libs documentation.
[platform/upstream/gst-plugins-good.git] / configure.ac
1 dnl autoconf configuration file for gst-plugins 
2 AC_INIT
3 AC_CANONICAL_TARGET
4
5 dnl We disable static building for development, for time savings
6 dnl this goes before AS_LIBTOOL to appease autoconf
7 dnl *NOTE*: dnl this line before release, so release does static too
8 AM_DISABLE_STATIC
9
10 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
11 AM_MAINTAINER_MODE
12
13 dnl when going to/from release please set the nano (fourth number) right !
14 dnl releases only do Wall, cvs and prerelease does Werror too
15 AS_VERSION(gst-plugins, GST_PLUGINS_VERSION, 0, 8, 6, 1, GST_CVS="no", GST_CVS="yes")
16
17 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
18
19 dnl our libraries and install dirs use major.minor as a version
20 GST_MAJORMINOR=$GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR
21 dnl we override it here if we need to for the release candidate
22 #GST_MAJORMINOR=0.8
23 AC_SUBST(GST_MAJORMINOR)
24
25 dnl CURRENT, REVISION, AGE
26 dnl - library source changed -> increment REVISION
27 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
28 dnl - interfaces added -> increment AGE
29 dnl - interfaces removed -> AGE = 0
30 dnl for 0.8.3 release, gst_play_get_all_by_interface was added, so update
31 AS_LIBTOOL(GST_PLUGINS, 1, 0, 1)
32 AM_PROG_LIBTOOL
33
34 dnl FIXME take something else ?
35 AC_CONFIG_SRCDIR([gst/law/alaw.c])
36 AM_CONFIG_HEADER(config.h)
37
38 dnl Add parameters for aclocal
39 dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
40 ACLOCAL_FLAGS="-I m4 -I common/m4"
41 AC_SUBST(ACLOCAL_AMFLAGS, $ACLOCAL_FLAGS)
42
43 AC_PROG_CC
44 AM_PROG_CC_STDC
45 AM_PROG_AS
46 AS="${CC}"
47 AS_PROG_OBJC
48
49 dnl the gettext stuff needed
50 AM_GNU_GETTEXT_VERSION(0.11.5)
51 AM_GNU_GETTEXT([external])
52                                                                                 
53 GETTEXT_PACKAGE=gst-plugins-$GST_MAJORMINOR
54 AC_SUBST(GETTEXT_PACKAGE)
55 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
56                    [gettext package name])
57                                                                                 
58 dnl define LOCALEDIR in config.h
59 AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
60 AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
61                    [gettext locale dir])
62
63 dnl decide on error flags
64 AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
65
66 if test "x$GST_WALL" = "xyes"; then
67    GST_ERROR="$GST_ERROR -Wall"
68
69    if test "x$GST_CVS" = "xyes"; then
70      AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
71    fi
72 fi
73
74 dnl determine c++ compiler
75 AC_PROG_CXX
76 dnl determine if c++ is available on this system
77 AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
78 dnl determine c++ preprocessor
79 AC_PROG_CXXCPP
80 AC_ISC_POSIX
81
82 AC_HEADER_STDC([])
83 AC_C_INLINE
84 AX_CREATE_STDINT_H
85
86 dnl Check for malloc.h
87 AC_CHECK_HEADER(malloc.h,[
88   AC_DEFINE(HAVE_MALLOC_H, 1, [whether malloc.h available])
89 ])
90
91 dnl Check for a way to display the function name in debug output
92 GST_CHECK_FUNCTION()
93
94 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
95 dnl messages printed when running cvs builds
96 if test "x$GST_CVS" = "xyes"; then
97   AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
98 fi
99
100 dnl Check for FIONREAD ioctl declaration :
101 GST_CHECK_FIONREAD()
102
103 DEFAULT_AUDIOSINK="osssink"
104 DEFAULT_VIDEOSINK="xvimagesink"
105 DEFAULT_AUDIOSRC="osssrc"
106 DEFAULT_VIDEOSRC="v4lsrc"
107 DEFAULT_VISUALIZER="goom"
108 case "$host" in 
109   *-sun-* | *pc-solaris* )
110     DEFAULT_AUDIOSINK="sunaudiosink"
111     DEFAULT_VIDEOSINK="ximagesink"
112     DEFAULT_AUDIOSRC="sunaudiosrc"
113     ;;
114   *-darwin* )
115     DEFAULT_AUDIOSINK="osxaudiosink"
116     DEFAULT_AUDIOSRC="osxaudiosrc"
117     DEFAULT_VIDEOSINK="osxvideosink"
118     ;;
119 esac
120
121 AC_SUBST(DEFAULT_AUDIOSINK)
122 AC_SUBST(DEFAULT_AUDIOSRC)
123 AC_SUBST(DEFAULT_VIDEOSINK)
124 AC_SUBST(DEFAULT_VIDEOSRC)
125 AC_SUBST(DEFAULT_VISUALIZER)
126
127 dnl ############################################
128 dnl # Super Duper options for plug-in building #
129 dnl ############################################
130
131 dnl ext plug-ins; plug-ins that have external dependencies
132 GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
133 [HAVE_EXTERNAL=yes],enabled,
134 [
135   AC_MSG_WARN(building external plug-ins)
136   BUILD_EXTERNAL="yes"
137 ],[
138   AC_MSG_WARN(all plug-ins with external dependencies will not be built)
139   BUILD_EXTERNAL="no"
140 ])
141 # make BUILD_EXTERNAL available to Makefile.am
142 AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
143
144 dnl experimental plug-ins; stuff that hasn't had the dust settle yet
145 dnl read 'builds, but might not work'UTO
146 GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
147 [HAVE_EXPERIMENTAL=yes],disabled,
148 [
149   AC_MSG_WARN(building experimental plug-ins)
150   USE_TARKIN="yes"
151 ],[
152   AC_MSG_NOTICE(not building experimental plug-ins)
153   USE_TARKIN="no"
154 ])
155
156 dnl broken plug-ins; stuff that doesn't seem to build at the moment
157 GST_CHECK_FEATURE(BROKEN, [enable building of broken plug-ins],,
158 HAVE_BROKEN=yes,disabled,
159 [  
160   AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
161 ],[
162   AC_MSG_NOTICE([not building broken plug-ins])
163 ])
164
165 dnl ##############################
166 dnl # Do automated configuration #
167 dnl ##############################
168
169 dnl Check for tools:
170 dnl ================
171
172 dnl allow for different autotools
173 AS_AUTOTOOLS_ALTERNATE()
174
175 dnl modify pkg-config path
176 AC_ARG_WITH(pkg-config-path, 
177    AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
178    [export PKG_CONFIG_PATH=${withval}])
179
180 GST_DOC()
181 dnl check architecture
182 GST_ARCH()
183
184 dnl check for gconftool-2
185
186 dnl this macro defines an am conditional, so it needs to be run always
187 AM_GCONF_SOURCE_2
188
189 translit(dnm, m, l) AM_CONDITIONAL(USE_GCONFTOOL, true)
190 GST_CHECK_FEATURE(GCONFTOOL, [GConf schemas], , [
191   AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
192   if test x$GCONFTOOL = xno; then
193     AC_MSG_WARN(Not installing GConf schemas)
194     HAVE_GCONFTOOL="no"
195   else
196     HAVE_GCONFTOOL="yes"
197   fi
198   AC_SUBST(HAVE_GCONFTOOL)
199 ])
200
201 dnl check for GConf libraries
202 translit(dnm, m, l) AM_CONDITIONAL(USE_GCONF, true)
203 GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
204   PKG_CHECK_MODULES(GCONF, gconf-2.0, HAVE_GCONF="yes", HAVE_GCONF="no")
205   AC_SUBST(GCONF_CFLAGS)
206   AC_SUBST(GCONF_LIBS)
207 ])
208
209 dnl check for gstreamer
210 dnl uninstalled is selected preferentially -- see pkg-config(1)
211 GST_REQ=0.8.7.1
212 PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
213   HAVE_GST="yes", HAVE_GST="no")
214
215 if test "x$HAVE_GST" = "xno"; then
216   AC_MSG_ERROR(no GStreamer found)
217 fi
218
219 GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
220 if test -z $GST_TOOLS_DIR; then
221   AC_MSG_ERROR([no tools dir defined in GStreamer pkg-config file; core upgrade needed.])
222 fi
223 AC_SUBST(GST_TOOLS_DIR)
224
225 dnl check for gstreamer-control; uninstalled is selected preferentially
226 PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_REQ,
227   HAVE_GST_CONTROL="yes", HAVE_GST_CONTROL="no")
228
229 if test "x$HAVE_GST_CONTROL" = "xno"; then
230   AC_MSG_ERROR(no GStreamer Control Libs found)
231 fi
232
233 AC_SUBST(GST_CONTROL_LIBS)
234
235 dnl Determine endianness
236 AC_C_BIGENDIAN
237
238 dnl Check for fast float to int casting as defined in C99
239 AC_C99_FUNC_LRINT()
240 AC_C99_FUNC_LRINTF()
241
242 dnl Check for essential libraries first:
243 dnl ====================================
244
245 GST_GLIB2_CHECK()
246
247 dnl Check for additional libraries that we might use:
248 dnl =================================================
249 dnl GTK
250 HAVE_GTK=NO
251 PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
252 if test "x$HAVE_GTK_22" = "xyes"; then
253   HAVE_GTK=yes
254   GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
255   AC_SUBST(GTK_VERSION)
256   GTK_PREFIX=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
257   GDK_PIXBUF_LIBDIR=`$PKG_CONFIG --variable=libdir gdk-pixbuf-2.0`
258   GDK_PIXBUF_PREFIXDIR=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
259   AC_SUBST(GTK_BASE_DIR)
260 else
261   PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK_20=yes, HAVE_GTK_20=no)
262 fi
263 if test "x$HAVE_GTK_20" = "xyes"; then
264   HAVE_GTK=yes
265 fi
266 GTK_CFLAGS=$GTK2_CFLAGS
267 GTK_LIBS=$GTK2_LIBS
268 AC_SUBST(GTK_LIBS)
269 AC_SUBST(GTK_CFLAGS)
270 AC_SUBST(HAVE_GTK)
271
272 # gdk_pixbuf gstreamer loader is considered experimental, so disable
273 # by default
274 if test "x$HAVE_GTK_22" = "xyes"; then
275   HAVE_GDK_LOADERS=yes
276 else
277   HAVE_GDK_LOADERS=no
278 fi
279
280 # we set the defaults always to make sure we have non-empty variables
281 # for the Makefile
282
283 # by default, stick to prefix
284 GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\${GTK_VERSION}/loaders
285 GDK_PIXBUF_CONF_DIR=${sysconfdir}/gtk-2.0
286
287
288 AC_ARG_ENABLE(gdk-pixbuf-loader,
289   AC_HELP_STRING([--enable-gdk-pixbuf-loader],
290               [whether to enable building of gdk_pixbuf loader]),
291               :, HAVE_GDK_LOADERS="no")
292
293 if test "x$HAVE_GDK_LOADERS" = "xyes"; then
294   AC_PATH_PROG(QUERYLOADERS, gdk-pixbuf-query-loaders, no)
295   # allow customization of pixbuf loader install location
296   # when nothing specified, adhere to prefix settings
297   # when called without any option with this argument, autodetect
298   # when called with a path, set to the given path
299
300   AC_ARG_WITH(gdk-pixbuf-loader-dir, 
301      AC_HELP_STRING([--with-gdk-pixbuf-loader-dir],
302         [directory to install the gdk_pixbuf loader (none for pkg-config default)]),
303      [
304       if test "x${withval}" != xyes ; then
305         GDK_PIXBUF_LOADER_DIR="${withval}"
306       else
307         GDK_PIXBUF_LOADER_DIR="$GDK_PIXBUF_LIBDIR/gtk-2.0/\$GTK_VERSION/loaders"
308       fi
309      ]
310   )
311   AS_AC_EXPAND(GDK_PIXBUF_LOADER_DIR, $GDK_PIXBUF_LOADER_DIR)
312   AC_SUBST(GDK_PIXBUF_LOADER_DIR)
313   AC_MSG_NOTICE([Putting GTK+-2 pixbuf loaders in $GDK_PIXBUF_LOADER_DIR])
314   
315   # allow customization of pixbuf loader configuration file
316   # when nothing specified, adhere to prefix settings
317   # when called without any option with this argument, autodetect
318   # when called with a path, set to the given path
319
320   AC_ARG_WITH(gdk-pixbuf-conf-dir, 
321      AC_HELP_STRING([--with-gdk-pixbuf-conf-dir],
322         [directory to install the gdk_pixbuf config (none for pkg-config default)]),
323      [
324       if test "x${withval}" != xyes ; then
325         GDK_PIXBUF_CONF_DIR="${withval}"
326       else
327         GDK_PIXBUF_CONF_DIR="$GDK_PIXBUF_PREFIXDIR/etc/gtk-2.0/"
328       fi
329      ]
330   )
331   AS_AC_EXPAND(GDK_PIXBUF_CONF_DIR, $GDK_PIXBUF_CONF_DIR)
332   AC_SUBST(GDK_PIXBUF_CONF_DIR)
333   AC_MSG_NOTICE([Putting GTK+-2 pixbuf loader config in $GDK_PIXBUF_CONF_DIR])
334 fi
335 AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GDK_LOADERS" = "xyes")
336
337 PKG_CHECK_MODULES(LIBOIL, liboil-0.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
338 AC_SUBST(LIBOIL_CFLAGS)
339 AC_SUBST(LIBOIL_LIBS)
340 if test "x${HAVE_LIBOIL}" = xyes ; then
341   #AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
342   true
343 fi
344
345 dnl ===========================================================================
346 dnl ============================= gst plug-ins ================================
347 dnl ===========================================================================
348
349 plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
350 AC_SUBST(plugindir)
351
352 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS"
353 AC_SUBST(GST_PLUGIN_LDFLAGS)
354
355 dnl these are all the gst plug-ins, compilable without additional libs
356 GST_PLUGINS_ALL="\
357         ac3parse \
358         adder \
359         alpha \
360         apetag \
361         asfdemux \
362         audioconvert \
363         audioscale \
364         audiorate \
365         auparse \
366         avi \
367         cdxaparse \
368         chart \
369         colorspace \
370         cutter \
371         debug \
372         deinterlace \
373         effectv \
374         equalizer \
375         festival \
376         ffmpegcolorspace \
377         filter \
378         flx \
379         goom \
380         interleave \
381         law \
382         level \
383         matroska \
384         median \
385         mixmatrix \
386         mpeg1sys \
387         mpeg1videoparse \
388         mpeg2sub \
389         mpegaudio \
390         mpegaudioparse \
391         mpegstream \
392         monoscope \
393         multifilesink \
394         multipart \
395         overlay \
396         passthrough \
397         playback \
398         playondemand \
399         qtdemux \
400         realmedia \
401         rtjpeg \
402         rtp \
403         silence \
404         sine \
405         smooth \
406         smpte \
407         spectrum \
408         speed \
409         stereo \
410         switch \
411         synaesthesia \
412         tags \
413         tcp \
414   tta \
415         typefind \
416         udp \
417         vbidec \
418         videobox \
419         videocrop \
420         videodrop \
421         videoflip \
422         videofilter \
423         videomixer \
424         videorate \
425         videoscale \
426         videotestsrc \
427         volenv \
428         volume \
429         wavenc \
430         wavparse \
431         y4m"
432
433 dnl see if we can build C++ plug-ins
434 if test "x$HAVE_CXX" = "xyes"; then
435   GST_PLUGINS_ALL="$GST_PLUGINS_ALL \
436                   modplug"
437 else
438   AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
439 fi
440
441 AC_SUBST(GST_PLUGINS_ALL)
442
443 GST_PLUGINS_SELECTED=""
444
445 AC_ARG_WITH(plugins,
446     AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]),
447     [for i in `echo $withval | tr , ' '`; do
448         if echo $GST_PLUGINS_ALL | grep $i > /dev/null
449         then
450             GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i"
451         else
452             echo "plug-in $i not recognized, ignoring..."
453         fi
454     done],
455     [GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
456
457 AC_SUBST(GST_PLUGINS_SELECTED)
458
459 dnl ==========================================================================
460 dnl ============================= sys plug-ins ================================
461 dnl ==========================================================================
462
463 dnl *** DXR3 card ***
464 translit(dnm, m, l) AM_CONDITIONAL(USE_DXR3, true)
465 GST_CHECK_FEATURE(DXR3, [DXR3 hardware MPEG DVD decoder],
466   dxr3videosink dxr3audiosink dxr3spusink, [
467   HAVE_DXR3=yes
468   AC_CHECK_HEADER(linux/em8300.h, ,
469                   [ AC_MSG_WARN([DXR3/em8300 header file not found]) &&
470                     HAVE_DXR3=no ] )
471   AC_CHECK_HEADER(linux/soundcard.h, ,
472                   [ AC_MSG_WARN([Generic sound header file not found]) &&
473                     HAVE_DXR3=no ] )
474 ])
475
476 dnl *** OSS audio *** (Linux, *BSD)
477 translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true)
478 GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
479   HAVE_OSS="yes"
480   dnl Linux and newer BSD versions :
481   AC_CHECK_HEADER(sys/soundcard.h, [
482     AC_DEFINE(HAVE_OSS_INCLUDE_IN_SYS,, [Define if OSS includes are in /sys/])
483     ] , [
484     dnl Some old BSD versions :
485     AC_CHECK_HEADER(soundcard.h, [
486       AC_DEFINE(HAVE_OSS_INCLUDE_IN_ROOT,, [Define if OSS includes are in /])
487       ], [
488       dnl Some old BSD versions :
489       AC_CHECK_HEADER(machine/soundcard.h, [
490         AC_DEFINE(HAVE_OSS_INCLUDE_IN_MACHINE,, [Define if OSS includes are in /machine/])
491         ], [
492         HAVE_OSS="no"
493       ])
494     ])
495   ])
496 ])
497
498 dnl *** OS X audio ***
499 translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_AUDIO, true)
500 GST_CHECK_FEATURE(OSX_AUDIO, [OSX audio], osxaudiosrc osxaudiosink, [
501   AC_CHECK_HEADER(CoreAudio/CoreAudio.h, HAVE_OSX_AUDIO="yes", HAVE_OSX_AUDIO="no")
502 ])
503
504 dnl *** OS X video ***
505 translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
506 HAVE_OSX_VIDEO="no"
507 GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
508   AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
509 ])
510 dnl in case header OpenGL/gl.h is found on other platforms
511 case "$host" in
512   *-*darwin*)
513     dnl do nothing
514     ;;
515   *)
516     HAVE_OSX_VIDEO="no"
517     ;;
518 esac
519
520 dnl *** QuickCam ***
521 translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
522 GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
523   if test "x$HAVE_CPU_I386" != "xyes";
524   then
525     HAVE_QCAM="no"
526   else
527     AC_CHECK_HEADER(sys/io.h, HAVE_QCAM="yes", HAVE_QCAM="no")
528   fi
529   if test "x$HAVE_QCAM" != "xyes";
530   then
531     AC_MSG_WARN([QuickCam only works on i386-linux])
532   fi
533 ])
534
535 dnl *** Sun Audio ***
536 translit(dnm, m, l) AM_CONDITIONAL(USE_SUNAUDIO, true)
537 GST_CHECK_FEATURE(SUNAUDIO, [Sun Audio], sunaudiosink, [
538   AC_CHECK_HEADER(sys/audioio.h, HAVE_SUNAUDIO="yes", HAVE_SUNAUDIO="no")
539 ])
540
541 dnl *** Video CD ***
542 translit(dnm, m, l) AM_CONDITIONAL(USE_VCD, true)
543 GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
544   AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no")
545 ])
546
547 dnl *** OpenGL ***
548 translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
549 GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
550   AC_CHECK_HEADER(GL/gl.h, HAVE_OPENGL="yes", HAVE_OPENGL="no")
551 ])
552
553 dnl *** CDROM Audio ***
554 translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true)
555 GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [
556   AC_CHECK_HEADERS(linux/cdrom.h) dnl linux
557   AC_CHECK_HEADERS(sys/cdio.h) dnl almost everything else
558 dnl  AC_CHECK_HEADERS(dmedia/cdaudio.h) dnl irix
559
560   if test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes" || test "${ac_cv_header_dmedia_cdaudio_h}" = "yes"; then
561         case "$host" in 
562                 *-sun-* | *-*-linux*)
563                         AC_DEFINE(HAVE_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style])
564                 ;;
565                 *-*-freebsd*)
566                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
567                 ;;
568                 *-*-netbsd* | *-*-openbsd*)
569                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
570                         AC_DEFINE(HAVE_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant])
571                 ;;
572                 *-*darwin*)
573                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
574                         AC_DEFINE(HAVE_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant])
575                 ;;
576 dnl             *-irix-*)
577 dnl                     AC_DEFINE(HAVE_CDROM_IRIX,, [Define if cdrom access is in Irix DMedia style])
578 dnl             ;;
579     esac
580
581         HAVE_CDROM="yes"
582   else
583         HAVE_CDROM="no"
584   fi
585 ])
586
587 dnl Check for X11
588 translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
589 GST_CHECK_FEATURE(X, [X libraries and plugins],
590                   [ximagesink], [
591   AC_PATH_XTRA
592   dnl now try to find the HEADER
593   AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
594
595   if test "x$HAVE_X" = "xno"
596   then
597     AC_MSG_NOTICE([cannot find X11 development files])
598   else
599     dnl this is much more than we want
600     X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
601     dnl AC_PATH_XTRA only defines the path needed to find the X libs,
602     dnl it does not add the libs; therefore we add them here
603     X_LIBS="$X_LIBS -lX11"
604     AC_SUBST(X_CFLAGS)
605     AC_SUBST(X_LIBS)
606   fi
607   AC_SUBST(HAVE_X)
608 ])
609   
610 dnl *** XVideo ***
611 dnl Look for the PIC library first, Debian requires it.
612 dnl Check debian-devel archives for gory details.
613 dnl 20020110:
614 dnl At the moment XFree86 doesn't distribute shared libXv due
615 dnl to unstable API.  On many platforms you CAN NOT link a shared
616 dnl lib to a static non-PIC lib.  This is what the xvideo GStreamer
617 dnl plug-in wants to do.  So Debian distributes a PIC compiled
618 dnl version of the static lib for plug-ins to link to when it is
619 dnl inappropriate to link the main application to libXv directly.
620 dnl FIXME: add check if this platform can support linking to a
621 dnl        non-PIC libXv, if not then don not use Xv.
622 dnl FIXME: perhaps warn user if they have a shared libXv since
623 dnl        this is an error until XFree86 starts shipping one
624    
625 dnl Check for Xv extension
626 translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
627 GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions],
628                   [xvimagesink], [
629   if test x$HAVE_X = xyes; then
630     AC_CHECK_LIB(Xv_pic, XvQueryExtension,
631                  HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
632                  $X_LIBS -lXext)
633
634     if test x$HAVE_XVIDEO = xyes; then
635       XVIDEO_LIBS="-lXv_pic -lXext"
636       AC_SUBST(XVIDEO_LIBS)
637     else
638       dnl try again using something else if we didn't find it first
639       if test x$HAVE_XVIDEO = xno; then
640         AC_CHECK_LIB(Xv, XvQueryExtension,
641                    HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
642                    $X_LIBS -lXext)
643
644         if test x$HAVE_XVIDEO = xyes; then
645           XVIDEO_LIBS="-lXv -lXext"
646           AC_SUBST(XVIDEO_LIBS)
647         fi
648       fi
649     fi
650   fi
651 ])
652
653 dnl check for X Shm
654 translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
655 GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], xshm, [
656   if test x$HAVE_X = xyes; then
657     AC_CHECK_LIB(Xext, XShmAttach, 
658                  HAVE_XSHM="yes", HAVE_XSHM="no",
659                  $X_LIBS) 
660     if test "x$HAVE_XSHM" = "xyes"; then
661       XSHM_LIBS="-lXext"
662     else
663       dnl On AIX, it is in XextSam instead, but we still need -lXext
664       AC_CHECK_LIB(XextSam, XShmAttach, 
665                    HAVE_XSHM="yes", HAVE_XSHM="no",
666                    $X_LIBS) 
667       if test "x$HAVE_XSHM" = "xyes"; then
668         XSHM_LIBS="-lXext -lXextSam"
669       fi
670     fi
671   fi
672 ], , [ 
673   AC_SUBST(HAVE_XSHM) 
674   AC_SUBST(XSHM_LIBS) 
675 ] )
676
677 dnl v4l/v4l2 checks have been moved down because they require X
678
679 dnl *** Video 4 Linux ***
680 dnl for information about the header/define, see sys/v4l/gstv4lelement.h
681 dnl renamed to GST_V4L in accordance with V4L2 below
682 translit(dnm, m, l) AM_CONDITIONAL(USE_GST_V4L, true)
683 GST_CHECK_FEATURE(GST_V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
684   # first check X
685   HAVE_GST_V4L="no"
686   if test "$HAVE_X" = "yes"
687   then
688     AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_GST_V4L="yes", HAVE_GST_V4L="no", [
689 #include <sys/types.h>
690 #define _LINUX_TIME_H
691 #include <linux/videodev.h>
692     ])
693   fi
694 ])
695
696 dnl *** Video 4 Linux 2 ***
697 dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
698 dnl renamed to GST_V4L2 because of some conflict with kernel headers
699 translit(dnm, m, l) AM_CONDITIONAL(USE_GST_V4L2, true)
700 GST_CHECK_FEATURE(GST_V4L2, [Video 4 Linux 2], v4l2src, [
701   HAVE_GST_V4L2="no"
702   if test "$HAVE_X" = "yes"
703   then
704     AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
705     AC_TRY_COMPILE([
706 #include <sys/types.h>
707 #include <linux/types.h>
708 #define _LINUX_TIME_H
709 #include <linux/videodev2.h>
710 #if defined(V4L2_MAJOR_VERSION) || defined(V4L2_MINOR_VERSION)
711 #error too early v4l2 version or no v4l2 at all
712 #endif
713     ], [
714 return 0;
715     ], [ HAVE_GST_V4L2="yes" && AC_MSG_RESULT(yes)],
716        [ HAVE_GST_V4L2="no"  && AC_MSG_RESULT(no) &&
717          AC_CHECK_HEADER(linux/videodev2.h,
718                          [ AC_MSG_WARN([video4linux2 headers were found, but they're old. Please update v4l2 to compile the v4l2 plugins])],
719                          [ AC_MSG_WARN([video4linux2 was not found])])
720        ])
721   fi
722   dnl check for missing v4l2_buffer declaration (see #135919)
723   if [ test x$HAVE_GST_V4L2 = xyes ]; then
724     MISSING_DECL=0
725     AC_MSG_CHECKING(struct v4l2_buffer declaration)
726     AC_TRY_COMPILE([
727 #include <sys/types.h>
728 #include <linux/types.h>
729 #define _LINUX_TIME_H
730 #include <linux/videodev2.h>
731     ],[
732 struct v4l2_buffer buf;
733 buf.index = 0;
734 return 0;
735     ], [ AC_MSG_RESULT(yes) ], [ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
736     if [ test x$MISSING_DECL = x1 ]; then
737       AC_DEFINE(GST_V4L2_MISSING_BUFDECL, 1, [struct v4l2_buffer missing])
738     fi
739   fi
740 ])
741
742 dnl Next, check for the optional libraries:
743 dnl These are all libraries used in building plug-ins
744 dnl ================================================
745 dnl let's try and sort them alphabetically, shall we ?
746
747 if test "x$BUILD_EXTERNAL" = "xyes"; then
748
749 AC_MSG_NOTICE(Checking for plug-in dependency libraries)
750
751 dnl *** a52dec ***
752 translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
753 GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
754   AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
755 ])
756
757 dnl *** aalib ***
758 translit(dnm, m, l) AM_CONDITIONAL(USE_AALIB, true)
759 GST_CHECK_FEATURE(AALIB, [aasink plug-in], aasink, [
760   AM_PATH_AALIB(, HAVE_AALIB=yes, HAVE_AALIB=no)
761   AS_SCRUB_INCLUDE(AALIB_CFLAGS)
762 ])
763
764 dnl *** alsa ***
765 translit(dnm, m, l) AM_CONDITIONAL(USE_ALSA, true)
766 GST_CHECK_FEATURE(ALSA, [alsa plug-ins], gstalsa, [
767   PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, [
768     HAVE_ALSA="yes"
769     AC_SUBST(ALSA_CFLAGS)
770     AC_SUBST(ALSA_LIBS)
771   ], [
772     AM_PATH_ALSA(0.9.1, HAVE_ALSA="yes", HAVE_ALSA="no")
773   ])
774 ])
775
776 dnl *** arts ***
777 dnl if mcopidl can't be found there's no use in compiling it
778 AC_CHECK_PROG(MCOPIDL, mcopidl, yes, no)
779 if test "x$HAVE_MCOPIDL" = "xno";
780 then
781   USE_ARTS=no
782 fi
783
784 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
785 GST_CHECK_FEATURE(ARTS, [arts plug-ins], arts, [
786   AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
787 ])
788
789 dnl *** artsc ***
790 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTSC, true)
791 GST_CHECK_FEATURE(ARTSC, [artsd plug-ins], artsdsink, [
792   GST_CHECK_ARTSC()
793 ])
794
795 dnl *** audiofile ***
796 dnl this check uses the GST_CHECK_CONFIGPROG macro
797 translit(dnm, m, l) AM_CONDITIONAL(USE_AUDIOFILE, true)
798 GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [
799   translit(dnm, m, l) AC_SUBST(AUDIOFILE_LIBS)
800   translit(dnm, m, l) AC_SUBST(AUDIOFILE_CFLAGS)
801   dnl check with pkg-config first
802   PKG_CHECK_MODULES(AUDIOFILE, audiofile, HAVE_AUDIOFILE="yes", HAVE_AUDIOFILE="no")
803   if test "x$HAVE_AUDIOFILE" = "xno"; then
804     GST_CHECK_CONFIGPROG(AUDIOFILE, audiofile-config)
805     dnl we need this function
806     AC_CHECK_LIB(audiofile, afOpenVirtualFile, , HAVE_AUDIOFILE="no")
807     AC_CHECK_LIB(audiofile, af_virtual_file_new, , HAVE_AUDIOFILE="no")
808   fi])
809
810 dnl *** audioresample ***
811 translit(dnm, m, l) AM_CONDITIONAL(USE_AUDIORESAMPLE, true)
812 GST_CHECK_FEATURE(AUDIORESAMPLE, [audioresample plug-in], audioresample, [
813   PKG_CHECK_MODULES(AUDIORESAMPLE, audioresample-0.1, HAVE_AUDIORESAMPLE=yes, HAVE_AUDIORESAMPLE=no)
814   AC_SUBST(AUDIORESAMPLE_CFLAGS)
815   AC_SUBST(AUDIORESAMPLE_LIBS)
816 ])
817
818 dnl *** cairo ***
819 translit(dnm, m, l) AM_CONDITIONAL(USE_CAIRO, true)
820 GST_CHECK_FEATURE(CAIRO, [cairo plug-in], cairo, [
821   PKG_CHECK_MODULES(CAIRO, cairo, HAVE_CAIRO=yes, HAVE_CAIRO=no)
822   AC_SUBST(CAIRO_CFLAGS)
823   AC_SUBST(CAIRO_LIBS)
824 ])
825
826 dnl *** cdaudio ***
827 translit(dnm, m, l) AM_CONDITIONAL(USE_CDAUDIO, true)
828 GST_CHECK_FEATURE(CDAUDIO, [cdaudio], cdaudio, [
829   GST_CHECK_CONFIGPROG(CDAUDIO, libcdaudio-config)
830   AC_SUBST(CDAUDIO_CFLAGS)
831   AC_SUBST(CDAUDIO_LIBS)
832 ])
833
834
835 dnl *** CDParanoia ***
836 translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true)
837 GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
838   GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
839                       cdda_open, -lm, 
840                       cdda_interface.h, 
841                       CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
842                       HEADER_DIR="no"
843                       FOUND_CDPARANOIA="yes")
844   if test "x$FOUND_CDPARANOIA" != "xyes";
845   then
846     GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
847                         cdda_open, -lm, 
848                         cdda/cdda_interface.h, 
849                         CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
850                         HEADER_DIR="yes"
851                         FOUND_CDPARANOIA="yes")
852   fi
853   if test "x$HEADER_DIR" = "xyes";
854   then
855     AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, ,
856                        defined if cdda headers are in a cdda/ directory)
857   fi
858   AC_SUBST(CDPARANOIA_LIBS)
859 ])
860 dnl FIXME : add second check somehow if that is necessary
861 dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
862 dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
863
864 dnl *** dirac ***
865 translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true)
866 GST_CHECK_FEATURE(DIRAC, [dirac plug-ins], dirac, [
867   PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
868   if test x$HAVE_DIRAC = xno ; then
869     PKG_CHECK_MODULES(DIRAC, dirac >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
870   fi
871   AC_SUBST(DIRAC_CFLAGS)
872   AC_SUBST(DIRAC_LIBS)
873 ])
874
875 dnl *** DirectFB ***
876 translit(dnm, m, l) AM_CONDITIONAL(USE_DIRECTFB, true)
877 GST_CHECK_FEATURE(DIRECTFB, [directfb], directfbvideosink , [
878   translit(dnm, m, l) AC_SUBST(DIRECTFB_LIBS)
879   translit(dnm, m, l) AC_SUBST(DIRECTFB_CFLAGS)
880   dnl check with pkg-config
881   PKG_CHECK_MODULES(DIRECTFB, directfb,
882                     HAVE_DIRECTFB="yes", HAVE_DIRECTFB="no")
883 ])
884
885 dnl *** DIVX ***
886 translit(dnm, m, l) AM_CONDITIONAL(USE_DIVX, true)
887 GST_CHECK_FEATURE(DIVX, [divx plugins], divx, [
888   HAVE_DIVX=yes
889   AC_CHECK_HEADER(encore2.h, ,
890                   [ AC_MSG_WARN([Divx4linux encore headers not found]) &&
891                     HAVE_DIVX=no ] )
892   if [ test x$HAVE_DIVX = xyes ]; then
893     AC_MSG_CHECKING([Checking for valid divx4linux encore version])
894     AC_TRY_COMPILE([
895 #include <encore2.h>
896 #if ENCORE_VERSION != 20021024
897 #error Wrong version of divx encore libraries
898 #endif
899     ], [
900 return 0;
901     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
902        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
903          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
904   fi
905   if [ test x$HAVE_DIVX = xyes ]; then
906     AC_CHECK_HEADER(decore.h, ,
907                     [ AC_MSG_WARN([Divx4linux decoder headers not found]) &&
908                       HAVE_DIVX=no ] )
909   fi
910   if [ test x$HAVE_DIVX = xyes ]; then
911     AC_MSG_CHECKING([Checking for valid divx4linux decore version])
912     AC_TRY_COMPILE([
913 #include <decore.h>
914 #if DECORE_VERSION != 20021112
915 #error Wrong version of divx decore libraries
916 #endif
917     ], [
918 return 0;
919     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
920        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
921          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
922   fi
923   LIBS="-lm"
924   if test x$HAVE_DIVX = xyes; then
925     AC_CHECK_LIB(divxencore, encore, ,
926                  [ AC_MSG_WARN([Divx4linux encore libs not found]) &&
927                    HAVE_DIVX=no ] )
928   fi
929   if test x$HAVE_DIVX = xyes; then
930     AC_CHECK_LIB(divxdecore, decore, ,
931                  [ AC_MSG_WARN([Divx4linux decore libs not found]) &&
932                    HAVE_DIVX=no ] )
933   fi
934   if test x$HAVE_DIVX = xyes; then
935     DIVXENC_LIBS="-ldivxencore -lm"
936     DIVXDEC_LIBS="-ldivxdecore -lm"
937     AC_SUBST(DIVXENC_LIBS)
938     AC_SUBST(DIVXDEC_LIBS)
939   fi
940 ])
941
942 dnl *** DTS ***
943 translit(dnm, m, l) AM_CONDITIONAL(USE_DTS, true)
944 GST_CHECK_FEATURE(DTS, [dts library], dtsdec, [
945   GST_CHECK_LIBHEADER(DTS, dts_pic, dts_init, -lm, dts.h, DTS_LIBS="-ldts_pic -lm")
946   AC_SUBST(DTS_LIBS)
947 ])
948
949 dnl *** dvdread ***
950 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
951 GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
952   GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
953   AC_SUBST(DVDREAD_LIBS)
954 ])
955
956 dnl *** dvdnav ***
957 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
958 GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnavsrc, [
959   translit(dnm, m, l) AC_SUBST(DVDNAV_LIBS)
960   translit(dnm, m, l) AC_SUBST(DVDNAV_CFLAGS)
961   GST_CHECK_CONFIGPROG(DVDNAV, dvdnav-config)
962   if test x"$HAVE_DVDNAV" = x"yes"; then
963     dnl check version
964     DVDNAV_VERSION=`dvdnav-config --version|head -n 1|sed 's/^.*) //'|sed 's/ (.*)//'`
965     DVDNAV_MAJOR=`echo $DVDNAV_VERSION | cut -d. -f1 | sed s/[a-zA-Z\-].*//g`
966     DVDNAV_MINOR=`echo $DVDNAV_VERSION | cut -d. -f2 | sed s/[a-zA-Z\-].*//g`
967     DVDNAV_MICRO=`echo $DVDNAV_VERSION | cut -d. -f3 | sed s/[a-zA-Z\-].*//g`
968     if [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
969        [[ "$DVDNAV_MINOR" -lt "1" ]]; then
970       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
971       HAVE_DVDNAV="no"
972     elif [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
973          [[ "$DVDNAV_MINOR" -eq "1" ]] && \
974          [[ "$DVDNAV_MICRO" -lt "7" ]]; then
975       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
976       HAVE_DVDNAV="no"
977     fi
978   fi
979   dnl now check for dvdread/nav_print.h - see #133002
980   AC_CHECK_HEADER(dvdread/nav_print.h, , [
981       AC_MSG_WARN([header dvdread/nav_print.h from dvdread missing])
982       HAVE_DVDNAV="no"
983   ])
984   AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
985 ])
986
987 dnl **** ESound ****
988 translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
989 GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
990   PKG_CHECK_MODULES(ESD, esound >= 0.2.12, [
991     HAVE_ESD="yes"
992     AC_SUBST(ESD_CFLAGS)
993     AC_SUBST(ESD_LIBS)
994   ], [
995     AM_PATH_ESD(0.2.12, HAVE_ESD="yes", HAVE_ESD="no")
996     AS_SCRUB_INCLUDE(ESD_CFLAGS)
997   ])
998 ])
999
1000 dnl **** Free AAC Encoder (FAAC) ****
1001 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
1002 GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
1003   GST_CHECK_LIBHEADER(FAAC, faac, faacEncOpen, -lm, faac.h, FAAC_LIBS="-lfaac -lm")
1004   AS_SCRUB_INCLUDE(FAAC_CFLAGS)
1005   AC_SUBST(FAAC_LIBS)
1006 ])
1007
1008 dnl **** Free AAC Decoder (FAAD) ****
1009 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
1010 GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
1011   HAVE_FAAD="yes"
1012   GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
1013   if test $HAVE_FAAD = "yes"; then
1014     AC_MSG_CHECKING([Checking for FAAD >= 2])
1015     AC_TRY_COMPILE([
1016 #include <faad.h>
1017 #if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
1018 #error Not faad2
1019 #endif
1020     ], [ return 0; ],
1021        [ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
1022        [ HAVE_FAAD="no"  && AC_MSG_RESULT(no)])
1023   fi;
1024   AS_SCRUB_INCLUDE(FAAD_CFLAGS)
1025   AC_SUBST(FAAD_LIBS)
1026 ])
1027
1028 dnl **** festival ****
1029 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_FESTIVAL, true)
1030 dnl GST_CHECK_FEATURE(FESTIVAL, [festival plug-ins], festivalsrc, [
1031   dnl NOTE: just using local net connection now, add this lib check
1032   dnl       in the future if needed
1033   dnl AC_LANG_PUSH(C++)
1034   dnl dnl FIXME: took out func to check for
1035   dnl dnl This check puts festival_tidy_up in extern "C".
1036   dnl dnl But, at least on Debian as of 20020110, it is compiled with name
1037   dnl dnl mangling C++ nonsense and symbols can't resolve
1038   dnl dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, festival_tidy_up, , festival/festival.h, FESTIVAL_LIBS="-lFestival")
1039   dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, , , festival/festival.h, FESTIVAL_LIBS="-lFestival")
1040   dnl AC_LANG_POP(C++)
1041   dnl AC_SUBST(FESTIVAL_LIBS)
1042 dnl  HAVE_FESTIVAL=yes
1043 dnl])
1044
1045 dnl *** FLAC ***
1046 translit(dnm, m, l) AM_CONDITIONAL(USE_FLAC, true)
1047 GST_CHECK_FEATURE(FLAC, [FLAC lossless audio], flacenc flacdec, [
1048   GST_CHECK_LIBHEADER(FLAC, FLAC, FLAC__seekable_stream_encoder_new, -lm, FLAC/all.h, FLAC_LIBS="-lFLAC")
1049   AC_SUBST(FLAC_LIBS)
1050 ])
1051
1052 dnl *** GDK pixbuf ***
1053 translit(dnm, m, l) AM_CONDITIONAL(USE_GDK_PIXBUF, true)
1054 GST_CHECK_FEATURE(GDK_PIXBUF, [GDK pixbuf], gdkpixbufsrc, [
1055   if test $HAVE_GTK_22 = "yes"; then HAVE_GDK_PIXBUF=yes; fi;
1056 ])
1057
1058 dnl *** Gnome VFS ***
1059 translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
1060 GST_CHECK_FEATURE(GNOME_VFS, [Gnome VFS], gnomevfssrc, [
1061   PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, HAVE_GNOME_VFS="yes", HAVE_GNOME_VFS="no")
1062   AC_SUBST(GNOME_VFS_CFLAGS)
1063   AC_SUBST(GNOME_VFS_LIBS)
1064 ])
1065
1066 dnl *** gsm ***
1067 translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true)
1068 GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
1069   GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm")
1070   if test $HAVE_GSM != "yes"; then
1071     GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
1072     if test $HAVE_GSM = "yes"; then 
1073       AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
1074     fi
1075   fi
1076   AC_SUBST(GSM_LIBS)
1077 ])
1078
1079 dnl *** Hermes ***
1080 translit(dnm, m, l) AM_CONDITIONAL(USE_HERMES, true)
1081 GST_CHECK_FEATURE(HERMES, [Hermes library], hermescolorspace, [
1082   GST_CHECK_LIBHEADER(HERMES, Hermes, Hermes_ConverterInstance, , Hermes/Hermes.h, HERMES_LIBS="-lHermes")
1083 ], AC_SUBST(HERMES_LIBS))
1084
1085 dnl *** http ***
1086 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_HTTP, true)
1087 dnl GST_CHECK_FEATURE(HTTP, [http plug-ins], gsthttpsrc, [
1088 dnl  dnl FIXME: need to check for header
1089 dnl  GHTTP_LIBS=
1090 dnl  GST_HTTPSRC_GET_TYPE=
1091 dnl  if test x$USE_GLIB2 = xyes; then
1092 dnl    AC_MSG_WARN(ghttp disabled for glib2.0)
1093 dnl  else
1094 dnl    AC_CHECK_LIB(ghttp, ghttp_request_new,
1095 dnl      [HTTP_LIBS="-lghttp"
1096 dnl       GST_HTTPSRC_GET_TYPE="gst_httpsrc_get_type"
1097 dnl       HAVE_HTTP=yes
1098 dnl      ], :, $LIBS)
1099 dnl  fi
1100 dnl  AC_SUBST(HTTP_LIBS)
1101 dnl  AC_SUBST(GST_HTTPSRC_GET_TYPE)
1102 dnl ])
1103
1104 dnl *** ivorbis ***
1105 dnl AM_PATH_IVORBIS only takes two options
1106 translit(dnm, m, l) AM_CONDITIONAL(USE_IVORBIS, true)
1107 GST_CHECK_FEATURE(IVORBIS, [integer vorbis plug-in], ivorbisdec, [
1108   IVORBIS_LIBS=
1109   IVORBIS_CFLAGS=
1110   AC_CHECK_LIB(vorbisidec, vorbis_block_init,
1111     [IVORBIS_LIBS=-lvorbisidec
1112      HAVE_IVORBIS=yes],
1113     HAVE_IVORBIS=no)
1114   AC_SUBST(IVORBIS_LIBS)
1115   AC_SUBST(IVORBIS_CFLAGS)
1116 ])
1117
1118 dnl *** Jack ***
1119 translit(dnm, m, l) AM_CONDITIONAL(USE_JACK, true)
1120 GST_CHECK_FEATURE(JACK, Jack, jack, [
1121   PKG_CHECK_MODULES(JACK, jack >= 0.29.0, HAVE_JACK="yes", HAVE_JACK="no")
1122   AC_SUBST(JACK_CFLAGS)
1123   AC_SUBST(JACK_LIBS)
1124 ])
1125
1126 dnl *** jpeg ***
1127 dnl FIXME: we could use header checks here as well IMO
1128 translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true)
1129 GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [
1130   AC_ARG_WITH(jpeg-mmx,
1131     [  --with-jpeg-mmx, path to MMX'ified JPEG library])
1132   OLD_LIBS="$LIBS"
1133   if test x$with_jpeg_mmx != x; then
1134     LIBS="$LIBS -L$with_jpeg_mmx"
1135   fi
1136   AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
1137   JPEG_LIBS="$LIBS -ljpeg-mmx"
1138   LIBS="$OLD_LIBS"
1139   if test x$HAVE_JPEG != xyes; then
1140     AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
1141     JPEG_LIBS="-ljpeg"
1142   fi
1143   AC_SUBST(JPEG_LIBS)
1144 ])
1145
1146 dnl *** KDE / Qt ***
1147
1148 dnl * Qt *
1149
1150 qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3 /usr/local/qt"
1151
1152 dnl Build include path search path from the list of Qt dirs
1153
1154 qt_include_dirs=""
1155 for dir in $qt_dirs; do
1156   qt_include_dirs="$qt_include_dirs $dir/include $dir"
1157 done
1158
1159 qt_include_dirs="$qt_include_dirs /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/include/qt3"
1160
1161 for dir in $qt_include_dirs; do
1162   if test -r "$dir/qglobal.h"; then
1163     qt_include_dir=$dir
1164     break
1165   fi
1166 done
1167
1168 for dir in $qt_dirs; do
1169   qt_lib_dirs="$qt_lib_dirs $dir/lib $dir"
1170 done
1171
1172 qt_lib_dirs="$qt_lib_dirs /usr/X11R6/lib /usr/lib"
1173
1174 for dir in $qt_lib_dirs; do
1175   try="ls -1 $dir/libqt-mt.*"
1176   if test -n "`$try 2> /dev/null`"; then
1177     qt_lib_dir=$dir
1178     break
1179   fi
1180 done
1181
1182 dnl *** ladspa ***
1183 translit(dnm, m, l) AM_CONDITIONAL(USE_LADSPA, true)
1184 GST_CHECK_FEATURE(LADSPA, [ladspa], ladspa, [
1185   AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA="yes", HAVE_LADSPA="no")
1186 ])
1187
1188 dnl *** lame ***
1189 translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
1190 GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
1191   GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h, HAVE_LAME="yes" LAME_LIBS="-lmp3lame -lm")
1192 ])
1193 dnl is lame presets available
1194 LAME_CFLAGS=""
1195 AC_TRY_RUN([
1196 #include <lame/lame.h>
1197 int main (int argc, char *argv[])
1198 {
1199   printf("%d\n", MEDIUM);
1200   return 0;
1201 }
1202 ],[LAME_CFLAGS="-DGSTLAME_PRESET"],[LAME_CFLAGS=""])
1203 AC_SUBST(LAME_CFLAGS)
1204 AC_SUBST(LAME_LIBS)
1205
1206 dnl *** MAS (TODO) ***
1207 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_MAS, true)
1208 dnl GST_CHECK_FEATURE(MAS, [mas], mas, [
1209 dnl   GST_CHECK_CONFIGPROG(MAS, mas-config)
1210 dnl   AC_SUBST(MAS_CFLAGS)
1211 dnl   AC_SUBST(MAS_LIBS)
1212 dnl ])
1213
1214 dnl *** libcaca ***
1215 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBCACA, true)
1216 GST_CHECK_FEATURE(LIBCACA, [libcaca], libcaca, [
1217   GST_CHECK_CONFIGPROG(LIBCACA, caca-config)
1218   AC_SUBST(LIBCACA_CFLAGS)
1219   AC_SUBST(LIBCACA_LIBS)
1220 ])
1221
1222 dnl *** libcolorspace ***
1223 translit(dnm, m, l) AM_CONDITIONAL(USE_LCS, true)
1224 GST_CHECK_FEATURE(LCS, Lcs, lcs, [
1225   PKG_CHECK_MODULES(LCS, lcs, HAVE_LCS="yes", HAVE_LCS="no")
1226   AC_SUBST(LCS_CFLAGS)
1227   AC_SUBST(LCS_LIBS)
1228 ])
1229
1230 dnl *** libdv ***
1231 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBDV, true)
1232 GST_CHECK_FEATURE(LIBDV, [libdv DV/video decoder], dvdec, [
1233   PKG_CHECK_MODULES(LIBDV, libdv >= 0.100, HAVE_LIBDV="yes", HAVE_LIBDV="no")
1234   AC_SUBST(LIBDV_CFLAGS)
1235   AC_SUBST(LIBDV_LIBS)
1236 ])
1237
1238 dnl *** libfame ***
1239 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBFAME, true)
1240 GST_CHECK_FEATURE(LIBFAME, [libfame MPEG1/4 encoder], libfame, [
1241   AM_PATH_LIBFAME(0.9.0, HAVE_LIBFAME="yes", HAVE_LIBFAME="no")
1242   AC_SUBST(LIBFAME_CFLAGS)
1243   AC_SUBST(LIBFAME_LIBS)
1244 ])
1245
1246 dnl *** libpng ***
1247 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
1248 GST_CHECK_FEATURE(LIBPNG, [libpng PNG encoder], pngenc, [
1249   PKG_CHECK_MODULES(LIBPNG, libpng12, HAVE_LIBPNG="yes", HAVE_LIBPNG="no")
1250   AC_SUBST(LIBPNG_CFLAGS)
1251   AC_SUBST(LIBPNG_LIBS)
1252 ])
1253
1254 dnl *** libmng ***
1255 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBMNG, true)
1256 GST_CHECK_FEATURE(LIBMNG, [libmng library], mngdec, [
1257   GST_CHECK_LIBHEADER(LIBMNG, mng, mng_initialize,, libmng.h, LIBMNG_LIBS="-lmng")
1258   AC_SUBST(LIBMNG_LIBS)
1259 ])
1260
1261 dnl *** librfb ***
1262 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBRFB, true)
1263 GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [
1264   PKG_CHECK_MODULES(LIBRFB, librfb-0.1, HAVE_LIBRFB="yes", HAVE_LIBRFB="no")
1265   AC_SUBST(LIBRFB_CFLAGS)
1266   AC_SUBST(LIBRFB_LIBS)
1267 ])
1268
1269 dnl *** libvisual ***
1270 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true)
1271 GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [
1272   PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.1.7, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no")
1273   AC_SUBST(LIBVISUAL_CFLAGS)
1274   AC_SUBST(LIBVISUAL_LIBS)
1275 ])
1276
1277 dnl *** mad ***
1278 dnl FIXME: we could use header checks here as well IMO
1279 translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
1280 GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
1281   dnl check with pkg-config first
1282   PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no")
1283   if test "x$HAVE_MAD" = "xno"; then
1284     dnl fall back to oldskool detection
1285     AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
1286     if test "x$HAVE_MAD" = "xyes"; then
1287       HAVE_MAD="no"
1288       save_LIBS=$LIBS
1289       LIBS="-lz"
1290       AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
1291       LIBS=$save_LIBS
1292     fi
1293   fi    
1294 ])
1295 AC_SUBST(MAD_LIBS)
1296
1297 dnl *** mikmod ***
1298 translit(dnm, m, l) AM_CONDITIONAL(USE_MIKMOD, true)
1299 GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
1300   AM_PATH_LIBMIKMOD(, HAVE_MIKMOD=yes, HAVE_MIKMOD=no)
1301   AC_SUBST(MIKMOD_LIBS, "$LIBMIKMOD_LIBS")
1302   AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMOD_CFLAGS")
1303 ])
1304
1305 dnl *** mpeg2dec ***
1306 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
1307 GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
1308   PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0,
1309       HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no")
1310   AC_SUBST(MPEG2DEC_CFLAGS)
1311   AC_SUBST(MPEG2DEC_LIBS)
1312 ])
1313
1314 dnl *** mpeg2enc ***
1315 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2ENC, true)
1316 GST_CHECK_FEATURE(MPEG2ENC, [mpeg2enc], mpeg2enc, [
1317   HAVE_MPEG2ENC="no"
1318   dnl we require a c++ compiler for this one
1319   if [ test x$HAVE_CXX = xyes ]; then
1320     dnl libmpeg2enc was first included in mjpegtools-1.6.2-rc3 (1.6.1.92)
1321     dnl since many distros include mjpegtools specifically without mplex
1322     dnl and mpeg2enc, we check for mpeg2enc on its own, too.
1323     PKG_CHECK_MODULES(MPEG2ENC, mjpegtools >= 1.6.1.93, [
1324       dnl switch over to c++ to test things
1325       AC_LANG_CPLUSPLUS
1326       OLD_CPPFLAGS="$CPPFLAGS"
1327       CPPFLAGS="$CPPFLAGS $MPEG2ENC_CFLAGS"
1328       AC_CHECK_HEADER(mpeg2encoder.hh, [
1329         MPEG2ENC_LIBS="$MPEG2ENC_LIBS -lmpeg2encpp -lm -lpthread"
1330         OLD_LIBS="$LIBS"
1331         LIBS="$LIBS $MPEG2ENC_LIBS"
1332         AC_MSG_CHECKING([for valid mpeg2enc objects])
1333         AC_TRY_RUN([
1334 #include <mpeg2encoder.hh>
1335 #include <mpeg2encoptions.hh>
1336
1337 int
1338 main (int   argc,
1339       char *argv[])
1340 {
1341   MPEG2EncOptions *options = new MPEG2EncOptions ();
1342   MPEG2Encoder *encoder = new MPEG2Encoder (*options);
1343   return 0;
1344 }
1345         ],[
1346           HAVE_MPEG2ENC="yes"
1347           AC_SUBST(MPEG2ENC_CFLAGS)
1348           AC_SUBST(MPEG2ENC_LIBS)
1349           AC_MSG_RESULT(yes)
1350         ], AC_MSG_RESULT(no))
1351         LIBS="$OLD_LIBS"
1352       ])
1353       CPPFLAGS="$OLD_CPPFLAGS"
1354       AC_LANG_C
1355     ],
1356     HAVE_MPEG2ENC="no")
1357   fi
1358 ])
1359
1360 dnl *** mplex ***
1361 translit(dnm, m, l) AM_CONDITIONAL(USE_MPLEX, true)
1362 GST_CHECK_FEATURE(MPLEX, [mplex], mplex, [
1363   HAVE_MPLEX="no"
1364   dnl we require a c++ compiler for this one
1365   if [ test x$HAVE_CXX = xyes ]; then
1366     dnl libmplex was first included in mjpegtools-1.6.2-rc4 (1.6.1.93)
1367     dnl since many distros include mjpegtools specifically without mplex
1368     dnl and mpeg2enc, we check for mplex on its own, too.
1369     PKG_CHECK_MODULES(MPLEX, mjpegtools >= 1.6.1.93, [
1370       dnl switch over to c++ to test things
1371       AC_LANG_CPLUSPLUS
1372       OLD_CPPFLAGS="$CPPFLAGS"
1373       CPPFLAGS="$CPPFLAGS $MPLEX_CFLAGS"
1374       AC_CHECK_HEADER(interact.hpp, [
1375         MPLEX_LIBS="$MPLEX_LIBS -lmplex2 -lm"
1376         OLD_LIBS="$LIBS"
1377         LIBS="$LIBS $MPLEX_LIBS"
1378         AC_MSG_CHECKING([for valid mplex objects])
1379         AC_TRY_RUN([
1380 #include <interact.hpp>
1381 #include <outputstrm.hpp>
1382 #include <multiplexor.hpp>
1383
1384 int
1385 main (int   argc,
1386       char *argv[])
1387 {
1388   class TestOutputStream : public OutputStream {
1389   public:
1390     TestOutputStream () : OutputStream () { }
1391     void Write (uint8_t *a, unsigned int b) { }
1392     void NextSegment () { }
1393     off_t SegmentSize () { }
1394     void Close () { }
1395     int Open () { }
1396   };
1397   MultiplexJob *job = new MultiplexJob ();
1398   vector<IBitStream *> inputs;
1399   job->SetupInputStreams (inputs);
1400   TestOutputStream *out = new TestOutputStream ();
1401   Multiplexor *mux = new Multiplexor(*job, *out);
1402   return 0;
1403 }
1404         ],[
1405           HAVE_MPLEX="yes"
1406           AC_SUBST(MPLEX_CFLAGS)
1407           AC_SUBST(MPLEX_LIBS)
1408           AC_MSG_RESULT(yes)
1409         ], AC_MSG_RESULT(no))
1410         LIBS="$OLD_LIBS"
1411       ])
1412       CPPFLAGS="$OLD_CPPFLAGS"
1413       AC_LANG_C
1414     ], HAVE_MPLEX="no")
1415   fi
1416 ])
1417
1418 dnl *** musepack ***
1419 translit(dnm, m, l) AM_CONDITIONAL(USE_MUSEPACK, true)
1420 GST_CHECK_FEATURE(MUSEPACK, [musepackdec], musepack, [
1421   AC_LANG_CPLUSPLUS
1422   AC_CHECK_HEADER([musepack/mpc_dec.h], [
1423     HAVE_MUSEPACK="yes"
1424     MUSEPACK_LIBS="-lmusepack"
1425     MUSEPACK_CFLAGS=
1426     AC_SUBST(MUSEPACK_CFLAGS)
1427     AC_SUBST(MUSEPACK_LIBS)
1428     ], [HAVE_MUSEPACK="no"])
1429   AC_LANG_C
1430 ])
1431
1432 dnl *** musicbrainz ***
1433 dnl libmusicbrainz <= 2.0.2 has symbol clashes with ffmpeg
1434 dnl however, our ffmpeg patch was accepted upstream
1435 translit(dnm, m, l) AM_CONDITIONAL(USE_MUSICBRAINZ, true)
1436 GST_CHECK_FEATURE(MUSICBRAINZ, [musicbrainz], musicbrainz, [
1437   PKG_CHECK_MODULES(MUSICBRAINZ, libmusicbrainz >= 2.0.2,
1438       HAVE_MUSICBRAINZ="yes", HAVE_MUSICBRAINZ="no")
1439   AC_SUBST(MUSICBRAINZ_CFLAGS)
1440   AC_SUBST(MUSICBRAINZ_LIBS)
1441 ])
1442
1443 dnl *** nas ***
1444 translit(dnm, m, l) AM_CONDITIONAL(USE_NAS, true)
1445 GST_CHECK_FEATURE(NAS, [nas plug-in], nassink, [
1446   HAVE_NAS="no"
1447   if test "x$HAVE_X" = "xyes"; then
1448     save_cppflags=$CFLAGS
1449     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1450     GST_CHECK_LIBHEADER(NAS, audio, AuOpenServer, $X_LIBS, audio/audiolib.h,
1451       NAS_LIBS="$X_LIBS -laudio" NAS_CFLAGS="$X_CFLAGS")
1452     CPPFLAGS="$save_cppflags"
1453   fi
1454   AC_SUBST(NAS_CFLAGS)
1455   AC_SUBST(NAS_LIBS)
1456 ])
1457
1458 dnl *** pango ***
1459 translit(dnm, m, l) AM_CONDITIONAL(USE_PANGO, true)
1460 GST_CHECK_FEATURE(PANGO, [pango], pango, [
1461   PKG_CHECK_MODULES(PANGO, pango pangoft2,
1462       HAVE_PANGO="yes", HAVE_PANGO="no")
1463   AC_SUBST(PANGO_CFLAGS)
1464   AC_SUBST(PANGO_LIBS)
1465 ])
1466
1467 dnl *** polypaudio ***
1468 translit(dnm, m, l) AM_CONDITIONAL(USE_POLYP, true)
1469 GST_CHECK_FEATURE(POLYP, [polyp], polyp, [
1470   PKG_CHECK_MODULES(POLYP, polyplib >= 0.7,
1471       HAVE_POLYP="yes", HAVE_POLYP="no")
1472   AC_SUBST(POLYP_CFLAGS)
1473   AC_SUBST(POLYP_CFLAGS)
1474 ])
1475
1476 dnl *** dv1394 ***
1477 translit(dnm, m, l) AM_CONDITIONAL(USE_DV1394, true)
1478 GST_CHECK_FEATURE(DV1394, [raw1394 and avc1394 library], dv1394src, [
1479   dnl we need to test three headers and three libs
1480   GST_CHECK_LIBHEADER(RAW1394,
1481     raw1394, raw1394_new_handle,,
1482     libraw1394/raw1394.h, RAW1394_LIBS="-lraw1394")
1483   GST_CHECK_LIBHEADER(AVC1394,
1484     avc1394, avc1394_send_command, $RAW1394_LIBS,
1485     libavc1394/avc1394.h, AVC1394_LIBS="-lavc1394")
1486   GST_CHECK_LIBHEADER(ROM1394,
1487     rom1394, rom1394_free_directory, $RAW1394_LIBS,
1488     libavc1394/rom1394.h, ROM1394_LIBS="-lrom1394")
1489
1490   dnl now see how far we got
1491   if test x$HAVE_RAW1394 = xyes && \
1492      test x$HAVE_AVC1394 = xyes && \
1493      test x$HAVE_ROM1394 = xyes; then
1494        HAVE_DV1394=yes
1495        DV1394_LIBS="$RAW1394_LIBS $AVC1394_LIBS $ROM1394_LIBS"
1496        AC_SUBST(DV1394_LIBS)
1497   else
1498        HAVE_DV1394=no
1499   fi
1500 ])
1501
1502 dnl *** SDL ***
1503 translit(dnm, m, l) AM_CONDITIONAL(USE_SDL, true)
1504 GST_CHECK_FEATURE(SDL, [SDL plug-in], sdlvideosink, [
1505   dnl sdlvideosink depends on the xoverlay interface, which depends on X
1506   if test x$HAVE_X = xyes; then
1507     AM_PATH_SDL(, HAVE_SDL=yes, HAVE_SDL=no)
1508   fi
1509 ])
1510
1511 dnl *** shout ***
1512 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT, true)
1513 GST_CHECK_FEATURE(SHOUT, [shout plug-in], icecastsend, [
1514   GST_CHECK_LIBHEADER(SHOUT, shout, shout_init_connection,, shout/shout.h, SHOUT_LIBS="-lshout")
1515   AC_SUBST(SHOUT_LIBS)
1516 ])
1517
1518 dnl *** shout2 *** 
1519 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true)
1520 GST_CHECK_FEATURE(SHOUT2, [shout2 plug-in], shout2send, [
1521   PKG_CHECK_MODULES(SHOUT2, shout >= 2.0, [
1522     HAVE_SHOUT2="yes"
1523     AC_SUBST(SHOUT2_CFLAGS)
1524     AC_SUBST(SHOUT2_LIBS)
1525   ], [
1526     AM_PATH_SHOUT2(HAVE_SHOUT2="yes", HAVE_SHOUT2="no")
1527     AC_SUBST(SHOUT2_CFLAGS)
1528     AC_SUBST(SHOUT2_LIBS)
1529   ])
1530 ])
1531
1532 dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
1533 translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
1534 GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
1535   GST_PATH_SIDPLAY()
1536 ])
1537
1538 dnl *** smoothwave ***
1539 translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
1540 GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plug-in], smoothwave, [
1541   if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
1542 ])
1543
1544
1545 dnl *** snapshot ***
1546 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
1547 GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
1548   GST_CHECK_LIBHEADER(LIBPNG, png, png_read_info, -lz -lm, png.h, LIBPNG_LIBS="-lpng -lz -lm")
1549   AC_SUBST(LIBPNG_LIBS)
1550 ])
1551
1552 dnl *** speex >= 1.0.4 or >= 1.1.5 ***
1553 dnl   1.1.4 and earlier were not API/ABI compatible with 1.0
1554 dnl   1.1.6 is the first to use a .pc/pkg-config file ***
1555 dnl   speex_jitter.h is 1.1.x only
1556 translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
1557 GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
1558   PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, [
1559     HAVE_SPEEX="yes"
1560     AC_SUBST(SPEEX_CFLAGS)
1561     AC_SUBST(SPEEX_LIBS)
1562   ], [
1563     GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
1564       AC_CHECK_HEADER(speex_jitter.h, [
1565         dnl speex 1.1.x :
1566         GST_CHECK_LIBHEADER(SPEEX, speex, speex_encode_int, , speex.h, [
1567           dnl speex 1.1.5 or + :
1568           HAVE_SPEEX="yes"
1569           SPEEX_LIBS="-lspeex"
1570           AC_SUBST(SPEEX_CFLAGS)
1571           AC_SUBST(SPEEX_LIBS)
1572         ],[
1573           HAVE_SPEEX="no"
1574         ])
1575       ],[
1576         dnl speex 1.0.x :
1577           AC_CHECK_DECL(SPEEX_GET_LOOKAHEAD, [
1578             dnl speex 1.0.4
1579             HAVE_SPEEX="yes"
1580             SPEEX_LIBS="-lspeex"
1581             AC_SUBST(SPEEX_CFLAGS)
1582             AC_SUBST(SPEEX_LIBS)
1583         ],[
1584             HAVE_SPEEX="no"
1585             AC_MSG_NOTICE(You need at least 1.0.4 to compile the speex plugin)
1586         ])
1587       ])
1588     ])
1589   ])
1590 ])
1591
1592 dnl *** sndfile ***
1593 translit(dnm, m, l) AM_CONDITIONAL(USE_SNDFILE, true)
1594 GST_CHECK_FEATURE(SNDFILE, [sndfile plug-in], sfsrc sfsink, [
1595   PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.0, HAVE_SNDFILE="yes", HAVE_SNDFILE="no")
1596   AC_SUBST(SNDFILE_CFLAGS)
1597   AC_SUBST(SNDFILE_LIBS)
1598 ])
1599
1600 dnl *** swfdec ***
1601 translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
1602 GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
1603   PKG_CHECK_MODULES(SWFDEC, swfdec-0.3 >= 0.3.0, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
1604   AC_SUBST(SWFDEC_CFLAGS)
1605   AC_SUBST(SWFDEC_LIBS)
1606 ])
1607
1608 dnl *** tarkin ***
1609 dnl for now the sources are included in the plug-in
1610 dnl and should be moved to ext-libs/ perhaps
1611 translit(dnm, m, l) AM_CONDITIONAL(USE_TARKIN, true)
1612 GST_CHECK_FEATURE(TARKIN, [tarkinenc tarkindec], tarkin, [
1613   HAVE_TARKIN="yes"
1614 ])
1615
1616 dnl *** ogg ***
1617 translit(dnm, m, l) AM_CONDITIONAL(USE_OGG, true)
1618 GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
1619   PKG_CHECK_MODULES(OGG, ogg >= 1.0, [
1620     HAVE_OGG="yes"
1621     AC_SUBST(OGG_CFLAGS)
1622     AC_SUBST(OGG_LIBS)
1623   ], [
1624     XIPH_PATH_OGG(HAVE_OGG="yes", HAVE_OGG="no")
1625     AS_SCRUB_INCLUDE(OGG_CFLAGS)
1626   ])
1627 ])
1628
1629 dnl *** theora ***
1630 translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
1631 GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [
1632   PKG_CHECK_MODULES(THEORA, theora, [
1633     HAVE_THEORA="yes"
1634     AC_SUBST(THEORA_LIBS)
1635     AC_SUBST(THEORA_CFLAGS)
1636   ], [
1637     GST_CHECK_LIBHEADER(THEORA, theora, theora_version_string, "-logg", theora/theora.h, THEORA_LIBS="-ltheora -logg")
1638     AC_SUBST(THEORA_LIBS)
1639   ])
1640 ])
1641
1642 dnl *** vorbis ***
1643 dnl AM_PATH_VORBIS only takes two options
1644 translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
1645 GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
1646   PKG_CHECK_MODULES(VORBIS, vorbis >= 1.0 vorbisenc >= 1.0, [
1647     HAVE_VORBIS="yes"
1648   ], [
1649     XIPH_PATH_VORBIS(HAVE_VORBIS="yes", HAVE_VORBIS="no")
1650     AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
1651   ])
1652 ])
1653 if test "x$HAVE_VORBIS" = "xyes"; then
1654   ac_cflags_save="$CFLAGS"
1655   dnl FIXME: does this work on non-gcc? -- Company
1656   CFLAGS="-Wall -Werror"
1657   AC_COMPILE_IFELSE(
1658     AC_LANG_PROGRAM([
1659 #include <vorbis/codec.h>
1660                      ],[
1661 vorbis_dsp_state *v;
1662
1663 vorbis_synthesis_restart (v);
1664                      ]), HAVE_VSR=yes, HAVE_VSR=no)
1665   if test "x$HAVE_VSR" = "xyes"; then
1666     AC_DEFINE_UNQUOTED(HAVE_VORBIS_SYNTHESIS_RESTART, 1,
1667                        [defined if vorbis_synthesis_restart is present])
1668   fi
1669   CFLAGS="$ac_cflags_save"
1670 fi
1671
1672 dnl *** xine ***
1673 translit(dnm, m, l) AM_CONDITIONAL(USE_XINE, true)
1674 GST_CHECK_FEATURE(XINE, [xine wrapper], xine, [
1675   PKG_CHECK_MODULES(XINE, libxine >= 1.0.0, HAVE_XINE=yes, HAVE_XINE=no)
1676   AC_SUBST(XINE_CFLAGS)
1677   AC_SUBST(XINE_LIBS)
1678 ],disabled)
1679
1680 dnl *** XVID ***
1681 translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
1682 GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
1683   HAVE_XVID=no
1684   AC_CHECK_HEADER(xvid.h, [
1685     OLD_LIBS="$LIBS"
1686     LIBS="-lm"
1687     AC_CHECK_LIB(xvidcore, xvid_encore, [
1688       AC_CHECK_LIB(xvidcore, xvid_decore, [
1689         AC_CHECK_LIB(xvidcore, xvid_global, [
1690           AC_MSG_CHECKING([for uptodate XviD API version])
1691           AC_TRY_RUN([
1692 #include <xvid.h>
1693 #if XVID_API != XVID_MAKE_API(4,0)
1694 #error "Incompatible XviD API version"
1695 #endif
1696 int main () { return 0; }
1697           ],[ AC_MSG_RESULT(yes)
1698             XVID_LIBS="-lxvidcore -lm"
1699             AC_SUBST(XVID_LIBS)
1700             HAVE_XVID=yes
1701           ], AC_MSG_RESULT(no) )
1702         ], )
1703       ], )
1704     ], )
1705     LIBS="$OLD_LIBS"
1706   ], )
1707 ])
1708
1709
1710 fi dnl of EXT plugins
1711
1712 dnl Check for atomic.h
1713 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
1714 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
1715 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
1716 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
1717 if test x$HAVE_ATOMIC_H = xyes; then
1718   AC_TRY_RUN([
1719 #include "asm/atomic.h"
1720 main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
1721   ],, [
1722     # Not successful
1723     if test x$HAVE_ATOMIC_H = xyes; then
1724       AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
1725     fi
1726     HAVE_ATOMIC_H=no
1727   ], [
1728     # Cross compiling
1729     AC_MSG_RESULT(yes)
1730     AC_MSG_WARN(Can't check properly for atomic reference counting.  Assuming OK.)
1731   ])
1732 fi
1733
1734
1735 dnl ######################################################################
1736 dnl # Check command line parameters, and set shell variables accordingly #
1737 dnl ######################################################################
1738
1739 AC_ARG_ENABLE(atomic,
1740   AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
1741 [case "${enableval}" in
1742   yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1743   noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1744   no)  USE_ATOMIC_H=no;;
1745   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
1746 esac], 
1747 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
1748
1749 AC_ARG_ENABLE(profiling,
1750   AC_HELP_STRING([--enable-profiling],
1751                  [-pg to compiler commandline, for profiling]),
1752 [case "${enableval}" in
1753   yes) USE_PROFILING=yes ;;
1754   no)  UES_PROFILING=no ;;
1755   *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
1756 esac], 
1757 [USE_PROFILING=no]) dnl Default value
1758
1759 AC_ARG_ENABLE(tests,
1760   AC_HELP_STRING([--disable-tests],[disable building test apps]),
1761 [case "${enableval}" in
1762   yes) BUILD_TESTS=yes ;;
1763   no)  BUILD_TESTS=no ;;
1764   *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
1765 esac], 
1766 [BUILD_TESTS=yes]) dnl Default value
1767
1768 AC_ARG_ENABLE(examples,
1769   AC_HELP_STRING([--disable-examples],[disable building examples]),
1770 [case "${enableval}" in
1771   yes) BUILD_EXAMPLES=yes ;;
1772   no)  BUILD_EXAMPLES=no ;;
1773   *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
1774 esac], 
1775 [BUILD_EXAMPLES=yes]) dnl Default value
1776
1777 dnl seeking needs freetype, so check for it here
1778 PKG_CHECK_MODULES(FT2, freetype2 >= 2.0.9, HAVE_FT2="yes", [
1779   AC_CHECK_FT2(2.0.9, HAVE_FT2="yes", HAVE_FT2="no")
1780 ])
1781 dnl make the HAVE_FT2 variable available to automake and Makefile.am
1782 AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
1783 AC_SUBST(FT2_CFLAGS)
1784 AC_SUBST(FT2_LIBS)
1785
1786 dnl ################################################
1787 dnl # Set defines according to variables set above #
1788 dnl ################################################
1789
1790
1791 if test "x$USE_ATOMIC_H" = xyes; then
1792   AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
1793 fi
1794
1795 # do not use deprecated stuff
1796 GST_CFLAGS="$GST_CFLAGS -DGST_DISABLE_DEPRECATED"
1797
1798 if test "x$USE_DEBUG" = xyes; then
1799   GST_CFLAGS="$GST_CFLAGS -g"
1800 fi
1801
1802 dnl #############################
1803 dnl # Set automake conditionals #
1804 dnl #############################
1805
1806 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
1807 dnl HAVE_ and it is likely to be easier to stick with the old name
1808 AM_CONDITIONAL(HAVE_ATOMIC_H,       test "x$USE_ATOMIC_H" = "xyes")
1809
1810 AM_CONDITIONAL(EXPERIMENTAL,        test "$EXPERIMENTAL" = "$xyes")
1811 AM_CONDITIONAL(BROKEN,              test "$BROKEN" = "$xyes")
1812
1813 AM_CONDITIONAL(HAVE_NASM,           test "x$HAVE_NASM" = "xyes")
1814 AM_CONDITIONAL(HAVE_GTK,            test "x$HAVE_GTK" = "xyes")
1815 AM_CONDITIONAL(HAVE_GTK_DOC,        $HAVE_GTK_DOC)
1816 AM_CONDITIONAL(BUILD_DOCS,          test "x$BUILD_DOCS" = "xyes")
1817 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
1818 AM_CONDITIONAL(BUILD_EXAMPLES,      test "x$BUILD_EXAMPLES" = "xyes")
1819 AM_CONDITIONAL(BUILD_PLUGIN_DOCS,   test "x$BUILD_PLUGIN_DOCS" = "xyes")
1820 AM_CONDITIONAL(HAVE_FIG2DEV_PNG,    $HAVE_FIG2DEV_PNG)
1821 AM_CONDITIONAL(HAVE_FIG2DEV_PDF,    $HAVE_FIG2DEV_PDF)
1822 AM_CONDITIONAL(HAVE_RAW1394,        test "x$HAVE_RAW1394" = "xyes")
1823
1824 dnl prefer internal headers to already installed ones
1825 dnl also add builddir include for enumtypes and marshal
1826 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
1827
1828 AC_SUBST(GST_LIBS)
1829 AC_SUBST(GST_CFLAGS)
1830
1831 dnl ###########################
1832 dnl # Configure external libs #
1833 dnl ###########################
1834
1835 dnl ############################
1836 dnl # Set up some more defines #
1837 dnl ############################
1838
1839 dnl set license and copyright notice
1840 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
1841
1842 dnl package name in plugins
1843 AC_ARG_WITH(package-name,
1844 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
1845 [case "${withval}" in
1846   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1847   no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1848   *) GST_PACKAGE="${withval}" ;;
1849 esac], 
1850 [
1851 dnl default value
1852 if test "x$GST_CVS" = "xyes"
1853 then
1854   dnl nano >= 1
1855   GST_PACKAGE="GStreamer CVS/prerelease"
1856 else
1857   GST_PACKAGE="GStreamer source release"
1858 fi
1859 ]
1860 )
1861 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
1862 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
1863
1864 dnl package origin URL
1865 AC_ARG_WITH(package-origin,
1866 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
1867 [case "${withval}" in
1868   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1869   no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1870   *) GST_ORIGIN="${withval}" ;;
1871 esac], 
1872 [GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
1873 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
1874 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
1875
1876 dnl #########################
1877 dnl # Make the output files #
1878 dnl #########################
1879
1880 AC_CONFIG_FILES(
1881 Makefile
1882 gst-plugins.spec
1883 gst/Makefile
1884 gst/ac3parse/Makefile
1885 gst/adder/Makefile
1886 gst/alpha/Makefile
1887 gst/apetag/Makefile
1888 gst/asfdemux/Makefile
1889 gst/audioconvert/Makefile
1890 gst/audioscale/Makefile
1891 gst/audiorate/Makefile
1892 gst/auparse/Makefile
1893 gst/avi/Makefile
1894 gst/cdxaparse/Makefile
1895 gst/chart/Makefile
1896 gst/colorspace/Makefile
1897 gst/cutter/Makefile
1898 gst/debug/Makefile
1899 gst/deinterlace/Makefile
1900 gst/effectv/Makefile
1901 gst/equalizer/Makefile
1902 gst/festival/Makefile
1903 gst/ffmpegcolorspace/Makefile
1904 gst/filter/Makefile
1905 gst/flx/Makefile
1906 gst/goom/Makefile
1907 gst/interleave/Makefile
1908 gst/law/Makefile
1909 gst/level/Makefile
1910 gst/matroska/Makefile
1911 gst/median/Makefile
1912 gst/mixmatrix/Makefile
1913 gst/mpeg1sys/Makefile
1914 gst/mpeg1videoparse/Makefile
1915 gst/mpeg2sub/Makefile
1916 gst/mpegaudio/Makefile
1917 gst/mpegaudioparse/Makefile
1918 gst/mpegstream/Makefile
1919 gst/modplug/Makefile
1920 gst/modplug/libmodplug/Makefile
1921 gst/monoscope/Makefile
1922 gst/multifilesink/Makefile
1923 gst/multipart/Makefile
1924 gst/overlay/Makefile
1925 gst/passthrough/Makefile
1926 gst/playback/Makefile
1927 gst/playondemand/Makefile
1928 gst/qtdemux/Makefile
1929 gst/realmedia/Makefile
1930 gst/rtjpeg/Makefile
1931 gst/rtp/Makefile
1932 gst/silence/Makefile
1933 gst/sine/Makefile
1934 gst/smooth/Makefile
1935 gst/smpte/Makefile
1936 gst/spectrum/Makefile
1937 gst/speed/Makefile
1938 gst/stereo/Makefile
1939 gst/switch/Makefile
1940 gst/synaesthesia/Makefile
1941 gst/tags/Makefile
1942 gst/tcp/Makefile
1943 gst/tta/Makefile
1944 gst/typefind/Makefile
1945 gst/udp/Makefile
1946 gst/vbidec/Makefile
1947 gst/videobox/Makefile
1948 gst/videocrop/Makefile
1949 gst/videodrop/Makefile
1950 gst/videofilter/Makefile
1951 gst/videoflip/Makefile
1952 gst/videomixer/Makefile
1953 gst/videorate/Makefile
1954 gst/videoscale/Makefile
1955 gst/videotestsrc/Makefile
1956 gst/volenv/Makefile
1957 gst/volume/Makefile
1958 gst/wavenc/Makefile
1959 gst/wavparse/Makefile
1960 gst/y4m/Makefile
1961 sys/Makefile
1962 sys/cdrom/Makefile
1963 sys/dxr3/Makefile
1964 sys/glsink/Makefile
1965 sys/oss/Makefile
1966 sys/osxaudio/Makefile
1967 sys/osxvideo/Makefile
1968 sys/qcam/Makefile
1969 sys/sunaudio/Makefile
1970 sys/v4l/Makefile
1971 sys/v4l2/Makefile
1972 sys/vcd/Makefile
1973 sys/ximage/Makefile
1974 sys/xvimage/Makefile
1975 ext/Makefile
1976 ext/a52dec/Makefile
1977 ext/aalib/Makefile
1978 ext/alsa/Makefile
1979 ext/arts/Makefile
1980 ext/artsd/Makefile
1981 ext/audiofile/Makefile
1982 ext/audioresample/Makefile
1983 ext/cairo/Makefile
1984 ext/cdaudio/Makefile
1985 ext/cdparanoia/Makefile
1986 ext/dirac/Makefile
1987 ext/directfb/Makefile
1988 ext/divx/Makefile
1989 ext/dts/Makefile
1990 ext/dv/Makefile
1991 ext/dvdread/Makefile
1992 ext/dvdnav/Makefile
1993 ext/esd/Makefile
1994 ext/faac/Makefile
1995 ext/faad/Makefile
1996 ext/flac/Makefile
1997 ext/gdk_pixbuf/Makefile
1998 ext/gnomevfs/Makefile
1999 ext/gsm/Makefile
2000 ext/hermes/Makefile
2001 dnl ext/http/Makefile
2002 ext/jack/Makefile
2003 ext/jpeg/Makefile
2004 ext/ladspa/Makefile
2005 ext/lame/Makefile
2006 ext/ivorbis/Makefile
2007 ext/lcs/Makefile
2008 ext/libcaca/Makefile
2009 ext/libfame/Makefile
2010 ext/libmng/Makefile
2011 ext/libpng/Makefile
2012 ext/librfb/Makefile
2013 ext/libvisual/Makefile
2014 ext/mad/Makefile
2015 dnl ext/mas/Makefile
2016 ext/mikmod/Makefile
2017 ext/mpeg2dec/Makefile
2018 ext/mpeg2enc/Makefile
2019 ext/mplex/Makefile
2020 ext/musepack/Makefile
2021 ext/musicbrainz/Makefile
2022 ext/nas/Makefile
2023 ext/ogg/Makefile
2024 ext/pango/Makefile
2025 ext/polyp/Makefile
2026 ext/raw1394/Makefile
2027 ext/sdl/Makefile
2028 ext/shout/Makefile
2029 ext/shout2/Makefile
2030 ext/sidplay/Makefile
2031 ext/smoothwave/Makefile
2032 ext/snapshot/Makefile
2033 ext/speex/Makefile
2034 ext/sndfile/Makefile
2035 ext/swfdec/Makefile
2036 ext/tarkin/Makefile
2037 ext/theora/Makefile
2038 ext/vorbis/Makefile
2039 ext/xine/Makefile
2040 ext/xvid/Makefile
2041 gst-libs/Makefile
2042 gst-libs/gst/Makefile
2043 gst-libs/gst/audio/Makefile
2044 gst-libs/gst/colorbalance/Makefile
2045 gst-libs/gst/floatcast/Makefile
2046 gst-libs/gst/gconf/Makefile
2047 gst-libs/gst/idct/Makefile
2048 gst-libs/gst/media-info/Makefile
2049 gst-libs/gst/mixer/Makefile
2050 gst-libs/gst/navigation/Makefile
2051 gst-libs/gst/play/Makefile
2052 gst-libs/gst/propertyprobe/Makefile
2053 gst-libs/gst/resample/Makefile
2054 gst-libs/gst/riff/Makefile
2055 gst-libs/gst/tag/Makefile
2056 gst-libs/gst/tuner/Makefile
2057 gst-libs/gst/video/Makefile
2058 gst-libs/gst/xoverlay/Makefile
2059 gst-libs/gst/xwindowlistener/Makefile
2060 gst-libs/ext/Makefile
2061 examples/dynparams/Makefile
2062 examples/capsfilter/Makefile
2063 examples/seeking/Makefile
2064 examples/indexing/Makefile
2065 examples/gstplay/Makefile
2066 examples/switch/Makefile
2067 examples/Makefile
2068 testsuite/spider/Makefile
2069 testsuite/alsa/Makefile
2070 testsuite/multifilesink/Makefile
2071 testsuite/Makefile
2072 tools/Makefile
2073 gconf/Makefile
2074 gconf/gstreamer.schemas
2075 pkgconfig/Makefile
2076 pkgconfig/gstreamer-gconf.pc
2077 pkgconfig/gstreamer-gconf-uninstalled.pc
2078 pkgconfig/gstreamer-interfaces.pc
2079 pkgconfig/gstreamer-interfaces-uninstalled.pc
2080 pkgconfig/gstreamer-libs.pc
2081 pkgconfig/gstreamer-libs-uninstalled.pc
2082 pkgconfig/gstreamer-media-info.pc
2083 pkgconfig/gstreamer-media-info-uninstalled.pc
2084 pkgconfig/gstreamer-play.pc
2085 pkgconfig/gstreamer-play-uninstalled.pc
2086 pkgconfig/gstreamer-plugins.pc
2087 pkgconfig/gstreamer-plugins-uninstalled.pc
2088 po/Makefile.in
2089 common/Makefile
2090 common/m4/Makefile
2091 docs/Makefile
2092 docs/libs/Makefile
2093 docs/version.entities
2094 m4/Makefile
2095 )
2096 AC_OUTPUT
2097
2098 echo -n "configure: *** Plug-ins that will be built :"
2099 echo -e "$GST_PLUGINS_YES" | sort
2100 echo
2101 echo -n "configure: *** Plug-ins that will not be built :"
2102 echo -e "$GST_PLUGINS_NO" | sort
2103 echo
2104 if test "x$BUILD_EXTERNAL" = "xno"; then
2105   echo "configure: *** No external plug-ins will be built"
2106 fi