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