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