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