Committed fix for #128893 (properly detect too old libfaad installations)
[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, 7, 2, 1, GST_CVS="no", GST_CVS="yes")
16
17 dnl add a suffix to apps
18 if test x$program_suffix = xNONE ; then
19   program_suffix=-$GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR
20 fi
21
22 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
23
24 dnl our libraries and install dirs use major.minor as a version
25 GST_MAJORMINOR=$GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR
26 AC_SUBST(GST_MAJORMINOR)
27
28 dnl CURRENT, REVISION, AGE
29 dnl - library source changed -> increment REVISION
30 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
31 dnl - interfaces added -> increment AGE
32 dnl - interfaces removed -> AGE = 0
33 AS_LIBTOOL(GST_PLUGINS, 1, 0, 0)
34
35 dnl FIXME take something else ?
36 AC_CONFIG_SRCDIR([gst/law/alaw.c])
37 AM_CONFIG_HEADER(config.h)
38
39 dnl Add parameters for aclocal
40 dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
41 ACLOCAL_FLAGS="-I m4 -I common/m4"
42 AC_SUBST(ACLOCAL_AMFLAGS, $ACLOCAL_FLAGS)
43
44 AC_PROG_CC
45 AM_PROG_CC_STDC
46 AM_PROG_AS
47 AS="${CC}"
48
49 dnl decide on error flags
50 AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
51
52 if test "x$GST_WALL" = "xyes"; then
53    GST_ERROR="$GST_ERROR -Wall"
54
55    if test "x$GST_CVS" = "xyes"; then
56      AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
57      GST_ERROR="$GST_ERROR -DG_DISABLE_DEPRECATED"
58    fi
59 fi
60
61 dnl determine c++ compiler
62 AC_PROG_CXX
63 dnl determine if c++ is available on this system
64 AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
65 dnl determine c++ preprocessor
66 AC_PROG_CXXCPP
67 AC_ISC_POSIX
68
69 AC_HEADER_STDC([])
70
71 dnl Check for a way to display the function name in debug output
72 GST_CHECK_FUNCTION()
73
74 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
75 dnl messages printed when running cvs builds
76 if test "x$GST_CVS" = "xyes"; then
77   AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
78 fi
79
80 dnl ############################################
81 dnl # Super Duper options for plug-in building #
82 dnl ############################################
83
84 dnl ext plug-ins; plug-ins that have external dependencies
85 GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
86 [HAVE_EXTERNAL=yes],enabled,
87 [
88   AC_MSG_WARN(building external plug-ins)
89   BUILD_EXTERNAL="yes"
90 ],[
91   AC_MSG_WARN(all plug-ins with external dependencies will not be built)
92   BUILD_EXTERNAL="no"
93 ])
94 # make BUILD_EXTERNAL available to Makefile.am
95 AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
96
97 dnl experimental plug-ins; stuff that hasn't had the dust settle yet
98 dnl read 'builds, but might not work'UTO
99 GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
100 [HAVE_EXPERIMENTAL=yes],disabled,
101 [
102   AC_MSG_WARN(building experimental plug-ins)
103   USE_TARKIN="yes"
104   USE_SHOUT2="yes"
105 ],[
106   AC_MSG_NOTICE(not building experimental plug-ins)
107   USE_TARKIN="no"
108   USE_SHOUT2="no"
109 ])
110
111 dnl broken plug-ins; stuff that doesn't seem to build at the moment
112 GST_CHECK_FEATURE(BROKEN, [enable building of broken plug-ins],,
113 HAVE_BROKEN=yes,disabled,
114 [  
115   AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
116 ],[
117   AC_MSG_NOTICE([not building broken plug-ins])
118 ])
119
120 dnl ##############################
121 dnl # Do automated configuration #
122 dnl ##############################
123
124 dnl Check for tools:
125 dnl ================
126
127 dnl allow for different autotools
128 AS_AUTOTOOLS_ALTERNATE()
129
130 dnl modify pkg-config path
131 AC_ARG_WITH(pkg-config-path, 
132    AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
133    [export PKG_CONFIG_PATH=${withval}])
134
135 dnl Check for nasm
136 AC_PATH_PROG(NASM_PATH, nasm, no)
137 AC_SUBST(NASM_PATH)
138 if test x$NASM_PATH = xno; then
139   AC_MSG_WARN(Couldn't find nasm)
140   HAVE_NASM="no"
141 else
142   AC_DEFINE(HAVE_NASM, 1, [Define if NASM, the netwide assembler, is available])
143   HAVE_NASM="yes"
144 fi
145
146 dnl check for gconftool-2
147 translit(dnm, m, l) AM_CONDITIONAL(USE_GCONFTOOL, true)
148 GST_CHECK_FEATURE(GCONFTOOL, [GConf schemas], , [
149   AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
150   if test x$GCONFTOOL = xno; then
151     AC_MSG_WARN(Not installing GConf schemas)
152     HAVE_GCONFTOOL="no"
153   else
154     AM_GCONF_SOURCE_2
155     HAVE_GCONFTOOL="yes"
156   fi
157   AC_SUBST(HAVE_GCONFTOOL)
158 ])
159
160 dnl check for GConf libraries
161 translit(dnm, m, l) AM_CONDITIONAL(USE_GCONF, true)
162 GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
163   PKG_CHECK_MODULES(GCONF, gconf-2.0, HAVE_GCONF="yes", HAVE_GCONF="no")
164   AC_SUBST(GCONF_CFLAGS)
165   AC_SUBST(GCONF_LIBS)
166 ])
167
168 dnl check for gstreamer; uninstalled is selected preferentially -- see pkg-config(1)
169 PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR.$GST_PLUGINS_VERSION_MICRO,
170   HAVE_GST="yes", HAVE_GST="no")
171
172 if test "x$HAVE_GST" = "xno"; then
173   AC_MSG_ERROR(no GStreamer found)
174 fi
175
176 GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
177 if test -z $GST_TOOLS_DIR; then
178   AC_MSG_ERROR([no tools dir defined in GStreamer pkg-config file; core upgrade needed.])
179 fi
180 AC_SUBST(GST_TOOLS_DIR)
181
182 dnl check for gstreamer-control; uninstalled is selected preferentially
183 PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR.$GST_PLUGINS_VERSION_MICRO,
184   HAVE_GST_CONTROL="yes", HAVE_GST_CONTROL="no")
185
186 if test "x$HAVE_GST_CONTROL" = "xno"; then
187   AC_MSG_ERROR(no GStreamer Control Libs found)
188 fi
189
190 AC_SUBST(GST_CONTROL_LIBS)
191
192 dnl Set up conditionals for (target) architecture:
193 dnl ==============================================
194
195 dnl Determine CPU
196 case "x${target_cpu}" in
197   xi?86 | k?) HAVE_CPU_I386=yes
198               AC_DEFINE(HAVE_CPU_I386, 1, [Define if the target CPU is an x86])
199               dnl FIXME could use some better detection
200               dnl       (ie CPUID)
201               case "x${target_cpu}" in
202                 xi386 | xi486) ;;
203                 *)             AC_DEFINE(HAVE_RDTSC, 1, [Define if RDTSC is available]) ;;
204               esac ;;
205   xpowerpc)   HAVE_CPU_PPC=yes
206               AC_DEFINE(HAVE_CPU_PPC, 1, [Define if the target CPU is a PPC]) ;;
207   xalpha)     HAVE_CPU_ALPHA=yes
208               AC_DEFINE(HAVE_CPU_ALPHA, 1, [Define if the target CPU is an Alpha]) ;;
209   xarm*)      HAVE_CPU_ARM=yes
210               AC_DEFINE(HAVE_CPU_ARM, 1, [Define if the target CPU is an ARM]) ;;
211   xsparc*)    HAVE_CPU_SPARC=yes
212               AC_DEFINE(HAVE_CPU_SPARC, 1, [Define if the target CPU is a PPC]) ;;
213   xmips*)     HAVE_CPU_MIPS=yes
214               AC_DEFINE(HAVE_CPU_MIPS, 1, [Define if the target CPU is a MIPS]) ;;
215   xhppa*)     HAVE_CPU_HPPA=yes
216               AC_DEFINE(HAVE_CPU_HPPA, 1, [Define if the target CPU is a HPPA]) ;;
217 esac
218
219 dnl Determine endianness
220 AC_C_BIGENDIAN
221
222 dnl Check for fast float to int casting as defined in C99
223 AC_C99_FUNC_LRINT()
224 AC_C99_FUNC_LRINTF()
225
226 dnl Check for essential libraries first:
227 dnl ====================================
228
229 GST_GLIB2_CHECK()
230
231 dnl Check for additional libraries that we might use:
232 dnl =================================================
233 dnl GTK
234 HAVE_GTK=NO
235 PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
236 if test "x$HAVE_GTK_22" = "xyes"; then
237   HAVE_GTK=yes
238   AC_PATH_PROG(QUERYLOADERS, gdk-pixbuf-query-loaders, no)
239   GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
240   AC_SUBST(GTK_VERSION)
241   GTK_PREFIX=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
242   GTK_SYSCONFDIR=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
243   GDK_PIXBUF_LIBDIR=`$PKG_CONFIG --variable=libdir gdk-pixbuf-2.0`
244   GDK_PIXBUF_PREFIXDIR=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
245   AC_SUBST(GTK_BASE_DIR)
246 else
247   PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK_20=yes, HAVE_GTK_20=no)
248 fi
249 if test "x$HAVE_GTK_20" = "xyes"; then
250   HAVE_GTK=yes
251 fi
252 GTK_CFLAGS=$GTK2_CFLAGS
253 GTK_LIBS=$GTK2_LIBS
254 AC_SUBST(GTK_LIBS)
255 AC_SUBST(GTK_CFLAGS)
256 AC_SUBST(HAVE_GTK)
257 AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GTK_22" = "xyes")
258
259 GDK_PIXBUF_LOADER_DIR="$GDK_PIXBUF_LIBDIR/gtk-2.0/\$(GTK_VERSION)/loaders"
260 AC_ARG_WITH(gdk-pixbuf-loader-dir, 
261    AC_HELP_STRING([--with-gdk-pixbuf-loader-dir],
262         [directory to install the gdk_pixbuf loader]),
263    [if test "x${withval}" != x ; then
264         GDK_PIXBUF_LOADER_DIR="${withval}"
265     fi
266 ])
267 AC_SUBST(GDK_PIXBUF_LOADER_DIR)
268
269 GDK_PIXBUF_CONFDIR="$GDK_PIXBUF_PREFIXDIR/etc/gtk-2.0/"
270 AC_ARG_WITH(gdk-pixbuf-conffile, 
271    AC_HELP_STRING([--with-gdk-pixbuf-confdir],
272         [path to the gdk_pixbuf config directroy]),
273    [if test "x${withval}" != x ; then
274         GDK_PIXBUF_CONFDIR="${withval}"
275     fi
276 ])
277 AC_SUBST(GDK_PIXBUF_CONFDIR)
278
279 dnl ===========================================================================
280 dnl ============================= gst plug-ins ================================
281 dnl ===========================================================================
282
283 plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
284 AC_SUBST(plugindir)
285
286 GST_PLUGIN_LDFLAGS='-module -avoid-version'
287 AC_SUBST(GST_PLUGIN_LDFLAGS)
288
289 dnl these are all the gst plug-ins, compilable without additional libs
290 GST_PLUGINS_ALL="\
291         ac3parse \
292         adder \
293         asfdemux \
294         audioconvert \
295         audioscale \
296         auparse \
297         avi \
298         cdxaparse \
299         chart \
300         cutter \
301         debug \
302         deinterlace \
303         effectv \
304         festival \
305         filter \
306         flx \
307         goom \
308         id3 \
309         intfloat \
310         law \
311         level \
312         matroska \
313         median \
314         mixmatrix \
315         mpeg1sys \
316         mpeg1videoparse \
317         mpeg2sub \
318         mpegaudio \
319         mpegaudioparse \
320         mpegstream \
321         monoscope \
322         oneton \
323         overlay \
324         passthrough \
325         playondemand \
326         qtdemux \
327         realmedia \
328         rtjpeg \
329         rtp \
330         silence \
331         sine \
332         smooth \
333         smpte \
334         spectrum \
335         speed \
336         stereo \
337         switch \
338         synaesthesia \
339         tags \
340         tcp \
341         typefind \
342         udp \
343         vbidec \
344         videocrop \
345         videodrop \
346         videoflip \
347         videofilter \
348         videoscale \
349         videotestsrc \
350         volenv \
351         volume \
352         wavenc \
353         wavparse \
354         y4m"
355
356 dnl see if we can build C++ plug-ins
357 if test "x$HAVE_CXX" = "xyes"; then
358   GST_PLUGINS_ALL="$GST_PLUGINS_ALL \
359                   modplug"
360 else
361   AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
362 fi
363
364 AC_SUBST(GST_PLUGINS_ALL)
365
366 GST_PLUGINS_SELECTED=""
367
368 AC_ARG_WITH(plugins,
369     AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]),
370     [for i in `echo $withval | tr , ' '`; do
371         if test -n `echo $i | grep $GST_PLUGINS_ALL`; then
372             GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i"
373         else
374             echo "plug-in $i not recognized, ignoring..."
375         fi
376     done],
377     [GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
378
379 AC_SUBST(GST_PLUGINS_SELECTED)
380
381 dnl ==========================================================================
382 dnl ============================= sys plug-ins ================================
383 dnl ==========================================================================
384
385 dnl *** DXR3 card ***
386 translit(dnm, m, l) AM_CONDITIONAL(USE_DXR3, true)
387 GST_CHECK_FEATURE(DXR3, [DXR3 hardware MPEG DVD decoder],
388   dxr3videosink dxr3audiosink dxr3spusink, [
389   HAVE_DXR3=yes
390   AC_CHECK_HEADER(linux/em8300.h, ,
391                   [ AC_MSG_WARN([DXR3/em8300 header file not found]) &&
392                     HAVE_DXR3=no ] )
393   AC_CHECK_HEADER(linux/soundcard.h, ,
394                   [ AC_MSG_WARN([Generic sound header file not found]) &&
395                     HAVE_DXR3=no ] )
396 ])
397
398 dnl *** OSS audio ***
399 translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true)
400 GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
401   AC_CHECK_HEADER(sys/soundcard.h, HAVE_OSS="yes", HAVE_OSS="no")
402 ])
403
404 dnl *** QuickCam ***
405 translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
406 GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
407   if test "x$HAVE_CPU_I386" != "xyes";
408   then
409     HAVE_QCAM="no"
410   else
411     AC_CHECK_HEADER(sys/io.h, HAVE_QCAM="yes", HAVE_QCAM="no")
412   fi
413   if test "x$HAVE_QCAM" != "xyes";
414   then
415     AC_MSG_WARN([QuickCam only works on i386-linux])
416   fi
417 ])
418
419 dnl *** Video CD ***
420 translit(dnm, m, l) AM_CONDITIONAL(USE_VCD, true)
421 GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
422   AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no")
423 ])
424
425 dnl *** CDROM Audio ***
426 translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true)
427 GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [
428   AC_CHECK_HEADERS(linux/cdrom.h) dnl linux
429   AC_CHECK_HEADERS(sys/cdio.h) dnl almost everything else
430 dnl  AC_CHECK_HEADERS(dmedia/cdaudio.h) dnl irix
431
432   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
433         case "$host" in 
434                 *-sun-* | *-*-linux*)
435                         AC_DEFINE(HAVE_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style])
436                 ;;
437                 *-*-freebsd*)
438                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
439                 ;;
440                 *-*-netbsd* | *-*-openbsd*)
441                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
442                         AC_DEFINE(HAVE_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant])
443                 ;;
444                 *-*darwin*)
445                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
446                         AC_DEFINE(HAVE_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant])
447                 ;;
448 dnl             *-irix-*)
449 dnl                     AC_DEFINE(HAVE_CDROM_IRIX,, [Define if cdrom access is in Irix DMedia style])
450 dnl             ;;
451     esac
452
453         HAVE_CDROM="yes"
454   else
455         HAVE_CDROM="no"
456   fi
457 ])
458
459 dnl Check for X11
460 translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
461 GST_CHECK_FEATURE(X, [X libraries and plugins],
462                   [ximagesink], [
463   AC_PATH_XTRA
464   if test "x$X_CFLAGS" == "x" -o "$X_CFLAGS" == "-DX_DISPLAY_MISSING"
465   then
466     AC_MSG_NOTICE([cannot find X11 development files])
467     HAVE_X="no"
468   else
469     dnl this is much more than we want
470     X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
471     dnl AC_PATH_XTRA only defines the path needed to find the X libs, not the libs
472     dnl therefore we add them here
473     X_LIBS="$X_LIBS -lX11"
474     AC_SUBST(X_CFLAGS)
475     AC_SUBST(X_LIBS)
476     HAVE_X="yes"
477   fi
478   AC_SUBST(HAVE_X)
479 ])
480   
481 dnl *** XVideo ***
482 dnl Look for the PIC library first, Debian requires it.
483 dnl Check debian-devel archives for gory details.
484 dnl 20020110:
485 dnl At the moment XFree86 doesn't distribute shared libXv due
486 dnl to unstable API.  On many platforms you CAN NOT link a shared
487 dnl lib to a static non-PIC lib.  This is what the xvideo GStreamer
488 dnl plug-in wants to do.  So Debian distributes a PIC compiled
489 dnl version of the static lib for plug-ins to link to when it is
490 dnl inappropriate to link the main application to libXv directly.
491 dnl FIXME: add check if this platform can support linking to a
492 dnl        non-PIC libXv, if not then don not use Xv.
493 dnl FIXME: perhaps warn user if they have a shared libXv since
494 dnl        this is an error until XFree86 starts shipping one
495    
496 dnl Check for Xv extension
497 translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
498 GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions],
499                   [xvimagesink xvideosink], [
500   if test x$HAVE_X = xyes; then
501     AC_CHECK_LIB(Xv_pic, XvQueryExtension,
502                  HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
503                  $X_LIBS -lXext)
504
505     if test x$HAVE_XVIDEO = xyes; then
506       XVIDEO_LIBS="-lXv_pic -lXext"
507       AC_SUBST(XVIDEO_LIBS)
508     else
509       dnl try again using something else if we didn't find it first
510       if test x$HAVE_XVIDEO = xno; then
511         AC_CHECK_LIB(Xv, XvQueryExtension,
512                    HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
513                    $X_LIBS -lXext)
514
515         if test x$HAVE_XVIDEO = xyes; then
516           XVIDEO_LIBS="-lXv -lXext"
517           AC_SUBST(XVIDEO_LIBS)
518         fi
519       fi
520     fi
521   fi
522 ])
523
524 dnl check for X Shm
525 translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
526 GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], xshm, [
527   if test x$HAVE_X = xyes; then
528     AC_CHECK_LIB(Xext, XShmAttach, 
529                  HAVE_XSHM="yes", HAVE_XSHM="no",
530                  $X_LIBS) 
531     if test "x$HAVE_XSHM" = "xyes"; then
532       XSHM_LIBS="-lXext"
533     else
534       dnl On AIX, it is in XextSam instead, but we still need -lXext
535       AC_CHECK_LIB(XextSam, XShmAttach, 
536                    HAVE_XSHM="yes", HAVE_XSHM="no",
537                    $X_LIBS) 
538       if test "x$HAVE_XSHM" = "xyes"; then
539         XSHM_LIBS="-lXext -lXextSam"
540       fi
541     fi
542   fi
543 ], , [ 
544   AC_SUBST(HAVE_XSHM) 
545   AC_SUBST(XSHM_LIBS) 
546 ] )
547
548 dnl v4l/v4l2 checks have been moved down because they require X
549
550 dnl *** Video 4 Linux ***
551 dnl for information about the header/define, see sys/v4l/gstv4lelement.h
552 translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
553 GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
554   # first check X
555   HAVE_V4L="no"
556   if test "$HAVE_X" == "yes"
557   then
558     AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_V4L="yes", HAVE_V4L="no", [
559 #include <sys/types.h>
560 #define _LINUX_TIME_H
561 #include <linux/videodev.h>
562     ])
563   fi
564 ])
565
566 dnl *** Video 4 Linux 2***
567 dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
568 translit(dnm, m, l) AM_CONDITIONAL(USE_V4L2, true)
569 GST_CHECK_FEATURE(V4L2, [Video 4 Linux 2], v4l2src, [
570   HAVE_V4L2="no"
571   if test "$HAVE_X" == "yes"
572   then
573     AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
574     AC_TRY_COMPILE([
575 #include <sys/types.h>
576 #include <linux/types.h>
577 #define _LINUX_TIME_H
578 #include <linux/videodev2.h>
579 #if defined(V4L2_MAJOR_VERSION) || defined(V4L2_MINOR_VERSION)
580 #error too early v4l2 version or no v4l2 at all
581 #endif
582     ], [
583 return 0;
584     ], [ HAVE_V4L2="yes" && AC_MSG_RESULT(yes)],
585        [ HAVE_V4L2="no"  && AC_MSG_RESULT(no) &&
586          AC_CHECK_HEADER(linux/videodev2.h,
587                          [ AC_MSG_WARN([video4linux2 headers were found, but they're old. Please update v4l2 to compile the v4l2 plugins])],
588                          [ AC_MSG_WARN([video4linux2 was not found])])])
589   fi
590 ])
591
592 dnl Next, check for the optional libraries:
593 dnl These are all libraries used in building plug-ins
594 dnl ================================================
595 dnl let's try and sort them alphabetically, shall we ?
596
597 if test "x$BUILD_EXTERNAL" = "xyes"; then
598
599 AC_MSG_NOTICE(Checking for plug-in dependency libraries)
600
601 dnl *** a52dec ***
602 translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
603 GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
604   AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
605 ])
606
607 dnl *** aalib ***
608 translit(dnm, m, l) AM_CONDITIONAL(USE_AALIB, true)
609 GST_CHECK_FEATURE(AALIB, [aasink plug-in], aasink, [
610   AM_PATH_AALIB(, HAVE_AALIB=yes, HAVE_AALIB=no)
611   AS_SCRUB_INCLUDE(AALIB_CFLAGS)
612 ])
613
614 dnl *** alsa ***
615 translit(dnm, m, l) AM_CONDITIONAL(USE_ALSA, true)
616 GST_CHECK_FEATURE(ALSA, [alsa plug-ins], gstalsa, [
617    AM_PATH_ALSA(0.9.1, HAVE_ALSA=yes, HAVE_ALSA=no)
618 ])
619
620 dnl *** arts ***
621 dnl if mcopidl can't be found there's no use in compiling it
622 AC_CHECK_PROG(MCOPIDL, mcopidl, yes, no)
623 if test "x$HAVE_MCOPIDL" = "xno";
624 then
625   USE_ARTS=no
626 fi
627
628 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
629 GST_CHECK_FEATURE(ARTS, [arts plug-ins], arts, [
630   AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
631 ])
632
633 dnl *** artsc ***
634 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTSC, true)
635 GST_CHECK_FEATURE(ARTSC, [artsd plug-ins], artsdsink, [
636   GST_CHECK_ARTSC()
637 ])
638
639 dnl *** audiofile ***
640 dnl this check uses the GST_CHECK_CONFIGPROG macro
641 translit(dnm, m, l) AM_CONDITIONAL(USE_AUDIOFILE, true)
642 GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [
643   translit(dnm, m, l) AC_SUBST(AUDIOFILE_LIBS)
644   translit(dnm, m, l) AC_SUBST(AUDIOFILE_CFLAGS)
645   dnl check with pkg-config first
646   PKG_CHECK_MODULES(AUDIOFILE, audiofile, HAVE_AUDIOFILE="yes", HAVE_AUDIOFILE="no")
647   if test "x$HAVE_AUDIOFILE" = "xno"; then
648     GST_CHECK_CONFIGPROG(AUDIOFILE, audiofile-config)
649     dnl we need this function
650     AC_CHECK_LIB(audiofile, afOpenVirtualFile, , HAVE_AUDIOFILE="no")
651   fi])
652
653 dnl *** CDParanoia ***
654 translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true)
655 GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
656   GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
657                       cdda_open, -lm, 
658                       cdda_interface.h, 
659                       CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
660                       HEADER_DIR="no"
661                       FOUND_CDPARANOIA="yes")
662   if test "x$FOUND_CDPARANOIA" != "xyes";
663   then
664     GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
665                         cdda_open, -lm, 
666                         cdda/cdda_interface.h, 
667                         CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
668                         HEADER_DIR="yes"
669                         FOUND_CDPARANOIA="yes")
670   fi
671   if test "x$HEADER_DIR" = "xyes";
672   then
673     AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, ,
674                        defined if cdda headers are in a cdda/ directory)
675   fi
676   AC_SUBST(CDPARANOIA_LIBS)
677 ])
678 dnl FIXME : add second check somehow if that is necessary
679 dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
680 dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
681
682 dnl *** DIVX ***
683 translit(dnm, m, l) AM_CONDITIONAL(USE_DIVX, true)
684 GST_CHECK_FEATURE(DIVX, [divx plugins], divx, [
685   HAVE_DIVX=yes
686   AC_CHECK_HEADER(encore2.h, ,
687                   [ AC_MSG_WARN([Divx4linux encore headers not found]) &&
688                     HAVE_DIVX=no ] )
689   if [ test x$HAVE_DIVX = xyes ]; then
690     AC_MSG_CHECKING([Checking for valid divx4linux encore version])
691     AC_TRY_COMPILE([
692 #include <encore2.h>
693 #if ENCORE_VERSION != 20021024
694 #error Wrong version of divx encore libraries
695 #endif
696     ], [
697 return 0;
698     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
699        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
700          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
701   fi
702   if [ test x$HAVE_DIVX = xyes ]; then
703     AC_CHECK_HEADER(decore.h, ,
704                     [ AC_MSG_WARN([Divx4linux decoder headers not found]) &&
705                       HAVE_DIVX=no ] )
706   fi
707   if [ test x$HAVE_DIVX = xyes ]; then
708     AC_MSG_CHECKING([Checking for valid divx4linux decore version])
709     AC_TRY_COMPILE([
710 #include <decore.h>
711 #if DECORE_VERSION != 20021112
712 #error Wrong version of divx decore libraries
713 #endif
714     ], [
715 return 0;
716     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
717        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
718          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
719   fi
720   LIBS="-lm"
721   if test x$HAVE_DIVX = xyes; then
722     AC_CHECK_LIB(divxencore, encore, ,
723                  [ AC_MSG_WARN([Divx4linux encore libs not found]) &&
724                    HAVE_DIVX=no ] )
725   fi
726   if test x$HAVE_DIVX = xyes; then
727     AC_CHECK_LIB(divxdecore, decore, ,
728                  [ AC_MSG_WARN([Divx4linux decore libs not found]) &&
729                    HAVE_DIVX=no ] )
730   fi
731   if test x$HAVE_DIVX = xyes; then
732     DIVXENC_LIBS="-ldivxencore -lm"
733     DIVXDEC_LIBS="-ldivxdecore -lm"
734     AC_SUBST(DIVXENC_LIBS)
735     AC_SUBST(DIVXDEC_LIBS)
736   fi
737 ])
738
739 dnl *** dvdread ***
740 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
741 GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
742   GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
743   AC_SUBST(DVDREAD_LIBS)
744 ])
745
746 dnl *** dvdnav ***
747 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
748 GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnavsrc, [
749   translit(dnm, m, l) AC_SUBST(DVDNAV_LIBS)
750   translit(dnm, m, l) AC_SUBST(DVDNAV_CFLAGS)
751   GST_CHECK_CONFIGPROG(DVDNAV, dvdnav-config)
752   if test x"$HAVE_DVDNAV" = x"yes"; then
753     dnl check version
754     DVDNAV_VERSION=`dvdnav-config --version|head -n 1|sed 's/^.*) //'|sed 's/ (.*)//'`
755     DVDNAV_MAJOR=`echo $DVDNAV_VERSION | cut -d. -f1 | sed s/[a-zA-Z\-].*//g`
756     DVDNAV_MINOR=`echo $DVDNAV_VERSION | cut -d. -f2 | sed s/[a-zA-Z\-].*//g`
757     DVDNAV_MICRO=`echo $DVDNAV_VERSION | cut -d. -f3 | sed s/[a-zA-Z\-].*//g`
758     if [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
759        [[ "$DVDNAV_MINOR" -lt "1" ]]; then
760       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
761       HAVE_DVDNAV="no"
762     elif [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
763          [[ "$DVDNAV_MINOR" -eq "1" ]] && \
764          [[ "$DVDNAV_MICRO" -lt "7" ]]; then
765       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
766       HAVE_DVDNAV="no"
767       fi
768     fi
769   AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
770 ])
771
772 dnl *** MAS ***
773 translit(dnm, m, l) AM_CONDITIONAL(USE_MAS, true)
774 GST_CHECK_FEATURE(MAS, [mas library], massink, [
775   translit(dnm, m, l) AC_SUBST(MAS_LIBS)
776   translit(dnm, m, l) AC_SUBST(MAS_CFLAGS)
777   GST_CHECK_CONFIGPROG(MAS, mas-config)
778   AS_SCRUB_INCLUDE(MAS_CFLAGS)
779 ])
780
781 dnl **** ESound ****
782 translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
783 GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
784   AM_PATH_ESD(0.2.12, HAVE_ESD=yes, HAVE_ESD=no)
785   AS_SCRUB_INCLUDE(ESD_CFLAGS)
786 ])
787
788 dnl **** Free AAC Encoder (FAAC) ****
789 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
790 GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
791   GST_CHECK_LIBHEADER(FAAC, faac, faacEncOpen, -lm, faac.h, FAAC_LIBS="-lfaac -lm")
792   AS_SCRUB_INCLUDE(FAAC_CFLAGS)
793   AC_SUBST(FAAC_LIBS)
794 ])
795
796 dnl **** Free AAC Decoder (FAAD) ****
797 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
798 GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
799   GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm")
800   AC_MSG_CHECKING([Checking for FAAD >= 2])
801   AC_TRY_COMPILE([
802 #include <faad.h>
803 #if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
804 #error Not faad2
805 #endif
806   ], [ return 0; ],
807      [ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
808      [ HAVE_FAAD="no"  && AC_MSG_RESULT(no)])
809   AS_SCRUB_INCLUDE(FAAD_CFLAGS)
810   AC_SUBST(FAAD_LIBS)
811 ])
812
813 dnl **** festival ****
814 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_FESTIVAL, true)
815 dnl GST_CHECK_FEATURE(FESTIVAL, [festival plug-ins], festivalsrc, [
816   dnl NOTE: just using local net connection now, add this lib check
817   dnl       in the future if needed
818   dnl AC_LANG_PUSH(C++)
819   dnl dnl FIXME: took out func to check for
820   dnl dnl This check puts festival_tidy_up in extern "C".
821   dnl dnl But, at least on Debian as of 20020110, it is compiled with name
822   dnl dnl mangling C++ nonsense and symbols can't resolve
823   dnl dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, festival_tidy_up, , festival/festival.h, FESTIVAL_LIBS="-lFestival")
824   dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, , , festival/festival.h, FESTIVAL_LIBS="-lFestival")
825   dnl AC_LANG_POP(C++)
826   dnl AC_SUBST(FESTIVAL_LIBS)
827 dnl  HAVE_FESTIVAL=yes
828 dnl])
829
830 dnl *** FLAC ***
831 translit(dnm, m, l) AM_CONDITIONAL(USE_FLAC, true)
832 GST_CHECK_FEATURE(FLAC, [FLAC lossless audio], flacenc flacdec, [
833   GST_CHECK_LIBHEADER(FLAC, FLAC, FLAC__seekable_stream_encoder_new, -lm, FLAC/all.h, FLAC_LIBS="-lFLAC")
834   AC_SUBST(FLAC_LIBS)
835 ])
836
837 dnl *** FFMPEG ***
838 translit(dnm, m, l) AM_CONDITIONAL(USE_FFMPEG, true)
839 GST_CHECK_FEATURE(FFMPEG, [ffmpeg plug-ins], ffmpeg, [
840   # only slurp in the case where we are in CVS mode;
841   # prerelease and release should get it disted
842   if test "x$GST_PLUGINS_VERSION_NANO" = x1; then
843     AC_MSG_NOTICE(slurping FFmpeg CVS source)
844     AS_SLURP_FFMPEG(gst-libs/ext/ffmpeg, 2003-10-26 10:00 GMT,
845                     HAVE_FFMPEG=yes, HAVE_FFMPEG=no)
846   else
847     AC_MSG_NOTICE(FFmpeg CVS code should be included already)
848     HAVE_FFMPEG=yes
849   fi
850   # we only bother with uninstalled (included) ffmpeg for now
851   AC_DEFINE_UNQUOTED(HAVE_FFMPEG_UNINSTALLED, 1,
852                      [defined if we use uninstalled ffmpeg])
853 ])
854
855 dnl *** GDK pixbuf ***
856 translit(dnm, m, l) AM_CONDITIONAL(USE_GDK_PIXBUF, true)
857 GST_CHECK_FEATURE(GDK_PIXBUF, [GDK pixbuf], gdkpixbufsrc, [
858   if test $HAVE_GTK_22 = "yes"; then HAVE_GDK_PIXBUF=yes; fi;
859 ])
860
861 dnl *** Gnome VFS ***
862 translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
863 GST_CHECK_FEATURE(GNOME_VFS, [Gnome VFS], gnomevfssrc, [
864   PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, HAVE_GNOME_VFS="yes", HAVE_GNOME_VFS="no")
865   AC_SUBST(GNOME_VFS_CFLAGS)
866   AC_SUBST(GNOME_VFS_LIBS)
867 ])
868
869 dnl *** gsm ***
870 translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true)
871 GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
872   GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm")
873   if test $HAVE_GSM != "yes"; then
874     GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
875     if test $HAVE_GSM = "yes"; then 
876       AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
877     fi
878   fi
879   AC_SUBST(GSM_LIBS)
880 ])
881
882 dnl *** Hermes ***
883 translit(dnm, m, l) AM_CONDITIONAL(USE_HERMES, true)
884 GST_CHECK_FEATURE(HERMES, [Hermes library], colorspace, [
885   GST_CHECK_LIBHEADER(HERMES, Hermes, Hermes_ConverterInstance, , Hermes/Hermes.h, HERMES_LIBS="-lHermes")
886 ], AC_SUBST(HERMES_LIBS))
887
888 dnl *** http ***
889 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_HTTP, true)
890 dnl GST_CHECK_FEATURE(HTTP, [http plug-ins], gsthttpsrc, [
891 dnl  dnl FIXME: need to check for header
892 dnl  GHTTP_LIBS=
893 dnl  GST_HTTPSRC_GET_TYPE=
894 dnl  if test x$USE_GLIB2 = xyes; then
895 dnl    AC_MSG_WARN(ghttp disabled for glib2.0)
896 dnl  else
897 dnl    AC_CHECK_LIB(ghttp, ghttp_request_new,
898 dnl      [HTTP_LIBS="-lghttp"
899 dnl       GST_HTTPSRC_GET_TYPE="gst_httpsrc_get_type"
900 dnl       HAVE_HTTP=yes
901 dnl      ], :, $LIBS)
902 dnl  fi
903 dnl  AC_SUBST(HTTP_LIBS)
904 dnl  AC_SUBST(GST_HTTPSRC_GET_TYPE)
905 dnl ])
906
907 dnl *** ivorbis ***
908 dnl AM_PATH_IVORBIS only takes two options
909 translit(dnm, m, l) AM_CONDITIONAL(USE_IVORBIS, true)
910 GST_CHECK_FEATURE(IVORBIS, [integer vorbis plug-in], ivorbisdec, [
911   IVORBIS_LIBS=
912   IVORBIS_CFLAGS=
913   AC_CHECK_LIB(vorbisidec, vorbis_block_init,
914     [IVORBIS_LIBS=-lvorbisidec
915      HAVE_IVORBIS=yes],
916     HAVE_IVORBIS=no)
917   AC_SUBST(IVORBIS_LIBS)
918   AC_SUBST(IVORBIS_CFLAGS)
919 ])
920
921 dnl *** Jack ***
922 translit(dnm, m, l) AM_CONDITIONAL(USE_JACK, true)
923 GST_CHECK_FEATURE(JACK, Jack, jack, [
924   PKG_CHECK_MODULES(JACK, jack >= 0.29.0, HAVE_JACK="yes", HAVE_JACK="no")
925   AC_SUBST(JACK_CFLAGS)
926   AC_SUBST(JACK_LIBS)
927 ])
928
929 dnl *** jpeg ***
930 dnl FIXME: we could use header checks here as well IMO
931 translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true)
932 GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [
933   AC_ARG_WITH(jpeg-mmx,
934     [  --with-jpeg-mmx, path to MMX'ified JPEG library])
935   OLD_LIBS="$LIBS"
936   if test x$with_jpeg_mmx != x; then
937     LIBS="$LIBS -L$with_jpeg_mmx"
938   fi
939   AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
940   JPEG_LIBS="$LIBS -ljpeg-mmx"
941   LIBS="$OLD_LIBS"
942   if test x$HAVE_JPEG != xyes; then
943     AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
944     JPEG_LIBS="-ljpeg"
945   fi
946   AC_SUBST(JPEG_LIBS)
947 ])
948
949 dnl *** ladspa ***
950 translit(dnm, m, l) AM_CONDITIONAL(USE_LADSPA, true)
951 GST_CHECK_FEATURE(LADSPA, [ladspa], ladspa, [
952   AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA="yes", HAVE_LADSPA="no")
953 ])
954
955 dnl *** lame ***
956 translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
957 GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
958   GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h, HAVE_LAME="yes" LAME_LIBS="-lmp3lame")
959 ])
960 AC_SUBST(LAME_LIBS)
961
962 dnl *** libcolorspace ***
963 translit(dnm, m, l) AM_CONDITIONAL(USE_LCS, true)
964 GST_CHECK_FEATURE(LCS, Lcs, lcs, [
965   PKG_CHECK_MODULES(LCS, lcs, HAVE_LCS="yes", HAVE_LCS="no")
966   AC_SUBST(LCS_CFLAGS)
967   AC_SUBST(LCS_LIBS)
968 ])
969
970 dnl *** libdv ***
971 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBDV, true)
972 GST_CHECK_FEATURE(LIBDV, [libdv DV/video decoder], dvdec, [
973   PKG_CHECK_MODULES(LIBDV, libdv >= 0.98, HAVE_LIBDV="yes", HAVE_LIBDV="no")
974   AC_SUBST(LIBDV_CFLAGS)
975   AC_SUBST(LIBDV_LIBS)
976 ])
977
978 dnl *** libfame ***
979 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBFAME, true)
980 GST_CHECK_FEATURE(LIBFAME, [libfame MPEG1/4 encoder], libfame, [
981   AM_PATH_LIBFAME(0.9.0, HAVE_LIBFAME="yes", HAVE_LIBFAME="no")
982   AC_SUBST(LIBFAME_CFLAGS)
983   AC_SUBST(LIBFAME_LIBS)
984 ])
985
986 dnl *** libpng ***
987 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
988 GST_CHECK_FEATURE(LIBPNG, [libpng PNG encoder], pngenc, [
989   PKG_CHECK_MODULES(LIBPNG, libpng12, HAVE_LIBPNG="yes", HAVE_LIBPNG="no")
990   AC_SUBST(LIBPNG_CFLAGS)
991   AC_SUBST(LIBPNG_LIBS)
992 ])
993
994
995 dnl *** mad ***
996 dnl FIXME: we could use header checks here as well IMO
997 translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
998 GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
999   dnl check with pkg-config first
1000   PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no")
1001   if test "x$HAVE_MAD" = "xno"; then
1002     dnl fall back to oldskool detection
1003     AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
1004     if test "x$HAVE_MAD" = "xyes"; then
1005       HAVE_MAD="no"
1006       save_libs=$LIBS
1007       LIBS="-lz"
1008       AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
1009       LIBS=$save_LIBS
1010     fi
1011   fi    
1012 ])
1013 AC_SUBST(MAD_LIBS)
1014
1015 dnl *** mikmod ***
1016 translit(dnm, m, l) AM_CONDITIONAL(USE_MIKMOD, true)
1017 GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
1018   AM_PATH_LIBMIKMOD(, HAVE_MIKMOD=yes, HAVE_MIKMOD=no)
1019   AC_SUBST(MIKMOD_LIBS, "$LIBMIKMOD_LIBS")
1020   AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMODCFLAGS")
1021 ])
1022
1023 dnl *** mpeg2dec ***
1024 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
1025 GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
1026   PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.3.1,
1027       HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no")
1028   AC_SUBST(MPEG2DEC_CFLAGS)
1029   AC_SUBST(MPEG2DEC_LIBS)
1030 ])
1031
1032 dnl *** mplex ***
1033 translit(dnm, m, l) AM_CONDITIONAL(USE_MPLEX, true)
1034 GST_CHECK_FEATURE(MPLEX, [mplex], mplex, [HAVE_MPLEX=$HAVE_CXX])
1035
1036 dnl *** pango ***
1037 translit(dnm, m, l) AM_CONDITIONAL(USE_PANGO, true)
1038 GST_CHECK_FEATURE(PANGO, [pango], pango, [
1039   PKG_CHECK_MODULES(PANGO, pango pangoft2,
1040       HAVE_PANGO="yes", HAVE_PANGO="no")
1041   AC_SUBST(PANGO_CFLAGS)
1042   AC_SUBST(PANGO_LIBS)
1043 ])
1044
1045 dnl *** raw1394 ***
1046 translit(dnm, m, l) AM_CONDITIONAL(USE_RAW1394, true)
1047 GST_CHECK_FEATURE(RAW1394, [raw1394 library], dv1394src, [
1048   GST_CHECK_LIBHEADER(RAW1394, raw1394, raw1394_new_handle,, libraw1394/raw1394.h, RAW1394_LIBS="-lraw1394")
1049   AC_SUBST(RAW1394_LIBS)
1050 ])
1051
1052 dnl *** SDL ***
1053 translit(dnm, m, l) AM_CONDITIONAL(USE_SDL, true)
1054 GST_CHECK_FEATURE(SDL, [SDL plug-in], sdlvideosink, [
1055  AM_PATH_SDL(, HAVE_SDL=yes, HAVE_SDL=no)
1056 ])
1057
1058 dnl *** shout ***
1059 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT, true)
1060 GST_CHECK_FEATURE(SHOUT, [shout plug-in], icecastsend, [
1061   GST_CHECK_LIBHEADER(SHOUT, shout, shout_init_connection,, shout/shout.h, SHOUT_LIBS="-lshout")
1062   AC_SUBST(SHOUT_LIBS)
1063 ])
1064
1065 dnl *** shout2 *** 
1066 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true)
1067 GST_CHECK_FEATURE(SHOUT2, [shout2 plug-in], shout2send, [
1068   AM_PATH_SHOUT2(HAVE_SHOUT2=yes, HAVE_SHOUT2=no)
1069   AC_SUBST(SHOUT2_CFLAGS)
1070   AC_SUBST(SHOUT2_LIBS)
1071 ])
1072
1073 dnl *** sidplay ***
1074 translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
1075 GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
1076   GST_PATH_SIDPLAY()
1077 ])
1078
1079 dnl *** smoothwave ***
1080 translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
1081 GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plug-in], smoothwave, [
1082   if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
1083 ])
1084
1085
1086 dnl *** snapshot ***
1087 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
1088 GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
1089   GST_CHECK_LIBHEADER(LIBPNG, png, png_read_info, -lz -lm, png.h, LIBPNG_LIBS="-lpng -lz -lm")
1090   AC_SUBST(LIBPNG_LIBS)
1091 ])
1092
1093 dnl *** speex ***
1094 translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
1095 GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
1096   GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, HAVE_SPEEX="yes" SPEEX_LIBS="-lspeex")
1097   AC_SUBST(SPEEX_CFLAGS)
1098   AC_SUBST(SPEEX_LIBS)
1099 ])
1100
1101 dnl *** sndfile ***
1102 translit(dnm, m, l) AM_CONDITIONAL(USE_SNDFILE, true)
1103 GST_CHECK_FEATURE(SNDFILE, [sndfile plug-in], sfsrc sfsink, [
1104   PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.0, HAVE_SNDFILE="yes", HAVE_SNDFILE="no")
1105   AC_SUBST(SNDFILE_CFLAGS)
1106   AC_SUBST(SNDFILE_LIBS)
1107 ])
1108
1109 dnl *** swfdec ***
1110 translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
1111 GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
1112   PKG_CHECK_MODULES(SWFDEC, swfdec >= 0.1.3.1, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
1113   AC_SUBST(SWFDEC_CFLAGS)
1114   AC_SUBST(SWFDEC_LIBS)
1115 ])
1116
1117 dnl *** tarkin ***
1118 dnl for now the sources are included in the plug-in
1119 dnl and should be moved to ext-libs/ perhaps
1120 translit(dnm, m, l) AM_CONDITIONAL(USE_TARKIN, true)
1121 GST_CHECK_FEATURE(TARKIN, [tarkinenc tarkindec], tarkin, [
1122   HAVE_TARKIN="yes"
1123 ])
1124
1125 dnl *** ogg ***
1126 translit(dnm, m, l) AM_CONDITIONAL(USE_OGG, true)
1127 GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
1128   XIPH_PATH_OGG(HAVE_OGG=yes, HAVE_OGG=no)
1129   AS_SCRUB_INCLUDE(OGG_CFLAGS)
1130 ])
1131
1132 dnl *** vorbis ***
1133 dnl AM_PATH_VORBIS only takes two options
1134 translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
1135 GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
1136   XIPH_PATH_VORBIS(HAVE_VORBIS=yes, HAVE_VORBIS=no)
1137   AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
1138 ])
1139
1140 dnl *** XVID ***
1141 translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
1142 GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
1143   HAVE_XVID=yes
1144   AC_CHECK_HEADER(xvid.h, ,
1145                   [ AC_MSG_WARN([Xvid headers not found]) &&
1146                     HAVE_XVID=no ] )
1147   LIBS="-lm"
1148   AC_CHECK_LIB(xvidcore, xvid_encore, ,
1149                [ AC_MSG_WARN([Xvid encore libs not found]) &&
1150                  HAVE_XVID=no ] )
1151   AC_CHECK_LIB(xvidcore, xvid_decore, ,
1152                [ AC_MSG_WARN([Xvid decore libs not found]) &&
1153                  HAVE_XVID=no ] )
1154   if test x$HAVE_XVID = xyes; then
1155     XVID_LIBS="-lxvidcore -lm"
1156     AC_SUBST(XVID_LIBS)
1157   fi
1158 ])
1159
1160
1161 fi dnl of EXT plugins
1162
1163 dnl Check for atomic.h
1164 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
1165 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
1166 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
1167 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
1168 if test x$HAVE_ATOMIC_H = xyes; then
1169   AC_TRY_RUN([
1170 #include "asm/atomic.h"
1171 main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
1172   ],, [
1173     # Not successful
1174     if test x$HAVE_ATOMIC_H = xyes; then
1175       AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
1176     fi
1177     HAVE_ATOMIC_H=no
1178   ], [
1179     # Cross compiling
1180     AC_MSG_RESULT(yes)
1181     AC_MSG_WARN(Can't check properly for atomic reference counting.  Assuming OK.)
1182   ])
1183 fi
1184
1185
1186 dnl ######################################################################
1187 dnl # Check command line parameters, and set shell variables accordingly #
1188 dnl ######################################################################
1189
1190 AC_ARG_ENABLE(libmmx,
1191   AC_HELP_STRING([--enable-libmmx],[use libmmx, if available]),
1192 [case "${enableval}" in
1193   yes) USE_LIBMMX=$HAVE_LIBMMX ;;
1194   no)  USE_LIBMMX=no ;;
1195   *) AC_MSG_ERROR(bad value ${enableval} for --enable-libmmx) ;;
1196 esac], 
1197 [USE_LIBMMX=$HAVE_LIBMMX]) dnl Default value
1198
1199 AC_ARG_ENABLE(atomic,
1200   AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
1201 [case "${enableval}" in
1202   yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1203   noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1204   no)  USE_ATOMIC_H=no;;
1205   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
1206 esac], 
1207 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
1208
1209 AC_ARG_ENABLE(profiling,
1210   AC_HELP_STRING([--enable-profiling],
1211                  [-pg to compiler commandline, for profiling]),
1212 [case "${enableval}" in
1213   yes) USE_PROFILING=yes ;;
1214   no)  UES_PROFILING=no ;;
1215   *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
1216 esac], 
1217 [USE_PROFILING=no]) dnl Default value
1218
1219 AC_ARG_ENABLE(tests,
1220   AC_HELP_STRING([--disable-tests],[disable building test apps]),
1221 [case "${enableval}" in
1222   yes) BUILD_TESTS=yes ;;
1223   no)  BUILD_TESTS=no ;;
1224   *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
1225 esac], 
1226 [BUILD_TESTS=yes]) dnl Default value
1227
1228 AC_ARG_ENABLE(examples,
1229   AC_HELP_STRING([--disable-examples],[disable building examples]),
1230 [case "${enableval}" in
1231   yes) BUILD_EXAMPLES=yes ;;
1232   no)  BUILD_EXAMPLES=no ;;
1233   *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
1234 esac], 
1235 [BUILD_EXAMPLES=yes]) dnl Default value
1236
1237 dnl seeking needs freetype, so check for it here
1238 AC_CHECK_FT2(2.0.9,HAVE_FT2=yes,HAVE_FT2=no)
1239 dnl make the HAVE_FT2 variable available to automake and Makefile.am
1240 AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
1241 AC_SUBST(FT2_CFLAGS)
1242 AC_SUBST(FT2_LIBS)
1243
1244 dnl ################################################
1245 dnl # Set defines according to variables set above #
1246 dnl ################################################
1247
1248
1249 if test "x$USE_LIBMMX" = xyes; then
1250   AC_DEFINE(HAVE_LIBMMX, 1, [Define if libmmx is available])
1251 fi
1252
1253 if test "x$USE_ATOMIC_H" = xyes; then
1254   AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
1255 fi
1256
1257 # do not use deprecated stuff
1258 GST_CFLAGS="$GST_CFLAGS -DGST_DISABLE_DEPRECATED"
1259
1260 if test "x$USE_DEBUG" = xyes; then
1261   GST_CFLAGS="$GST_CFLAGS -g"
1262 fi
1263
1264 dnl #############################
1265 dnl # Set automake conditionals #
1266 dnl #############################
1267
1268 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
1269 dnl HAVE_ and it is likely to be easier to stick with the old name
1270 AM_CONDITIONAL(HAVE_CPU_I386,       test "x$HAVE_CPU_I386" = "xyes")
1271 AM_CONDITIONAL(HAVE_CPU_PPC,        test "x$HAVE_CPU_PPC" = "xyes")
1272 AM_CONDITIONAL(HAVE_CPU_ALPHA,      test "x$HAVE_CPU_ALPHA" = "xyes")
1273 AM_CONDITIONAL(HAVE_CPU_ARM,        test "x$HAVE_CPU_ARM" = "xyes")
1274 AM_CONDITIONAL(HAVE_CPU_SPARC,      test "x$HAVE_CPU_SPARC" = "xyes")
1275 AM_CONDITIONAL(HAVE_LIBMMX,         test "x$USE_LIBMMX" = "xyes")
1276
1277 AM_CONDITIONAL(HAVE_ATOMIC_H,       test "x$USE_ATOMIC_H" = "xyes")
1278
1279 AM_CONDITIONAL(EXPERIMENTAL,        test "$EXPERIMENTAL" = "$xyes")
1280 AM_CONDITIONAL(BROKEN,              test "$BROKEN" = "$xyes")
1281
1282 AM_CONDITIONAL(HAVE_NASM,           test "x$HAVE_NASM" = "xyes")
1283 AM_CONDITIONAL(HAVE_GTK,            test "x$HAVE_GTK" = "xyes")
1284 AM_CONDITIONAL(HAVE_GTK_DOC,        $HAVE_GTK_DOC)
1285 AM_CONDITIONAL(BUILD_DOCS,          test "x$BUILD_DOCS" = "xyes")
1286 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
1287 AM_CONDITIONAL(BUILD_EXAMPLES,      test "x$BUILD_EXAMPLES" = "xyes")
1288 AM_CONDITIONAL(BUILD_PLUGIN_DOCS,   test "x$BUILD_PLUGIN_DOCS" = "xyes")
1289 AM_CONDITIONAL(HAVE_FIG2DEV_PNG,    $HAVE_FIG2DEV_PNG)
1290 AM_CONDITIONAL(HAVE_FIG2DEV_PDF,    $HAVE_FIG2DEV_PDF)
1291 AM_CONDITIONAL(HAVE_RAW1394,        test "x$HAVE_RAW1394" = "xyes")
1292
1293 dnl prefer internal headers to already installed ones
1294 GST_CFLAGS="-I\$(top_srcdir)/gst-libs $GST_CFLAGS $GST_ERROR"
1295
1296 AC_SUBST(GST_LIBS)
1297 AC_SUBST(GST_CFLAGS)
1298
1299 dnl ###########################
1300 dnl # Configure external libs #
1301 dnl ###########################
1302 if test "x$HAVE_FFMPEG" = xyes; then
1303   AC_CONFIG_SUBDIRS(gst-libs/ext/ffmpeg/ffmpeg)
1304 fi 
1305
1306 dnl ############################
1307 dnl # Set up some more defines #
1308 dnl ############################
1309
1310 dnl set license and copyright notice
1311 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
1312 dnl package name in plugins
1313 AC_ARG_WITH(package-name,
1314 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
1315 [case "${withval}" in
1316   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1317   no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1318   *) GST_PACKAGE="${withval}" ;;
1319 esac], 
1320 [GST_PACKAGE="Gstreamer"]) dnl Default value
1321 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
1322 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
1323 dnl package origin URL
1324 AC_ARG_WITH(package-origin,
1325 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
1326 [case "${withval}" in
1327   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1328   no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1329   *) GST_ORIGIN="${withval}" ;;
1330 esac], 
1331 [GST_ORIGIN="http://gstreamer.net"]) dnl Default value
1332 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
1333 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
1334
1335 dnl #########################
1336 dnl # Make the output files #
1337 dnl #########################
1338
1339 AC_CONFIG_FILES(
1340 Makefile
1341 pkgconfig/gstreamer-libs.pc
1342 pkgconfig/gstreamer-libs-uninstalled.pc
1343 pkgconfig/gstreamer-play.pc
1344 pkgconfig/gstreamer-play-uninstalled.pc
1345 pkgconfig/gstreamer-interfaces.pc
1346 pkgconfig/gstreamer-interfaces-uninstalled.pc
1347 gst-libs/gst/gconf/gstreamer-gconf.pc
1348 gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc
1349 gst-plugins.spec
1350 gst/Makefile
1351 gst/ac3parse/Makefile
1352 gst/adder/Makefile
1353 gst/audioconvert/Makefile
1354 gst/audioscale/Makefile
1355 gst/auparse/Makefile
1356 gst/avi/Makefile
1357 gst/asfdemux/Makefile
1358 gst/cdxaparse/Makefile
1359 gst/chart/Makefile
1360 gst/cutter/Makefile
1361 gst/debug/Makefile
1362 gst/deinterlace/Makefile
1363 gst/effectv/Makefile
1364 gst/festival/Makefile
1365 gst/filter/Makefile
1366 gst/flx/Makefile
1367 gst/goom/Makefile
1368 gst/id3/Makefile
1369 gst/intfloat/Makefile
1370 gst/law/Makefile
1371 gst/level/Makefile
1372 gst/matroska/Makefile
1373 gst/median/Makefile
1374 gst/mixmatrix/Makefile
1375 gst/mpeg1sys/Makefile
1376 gst/mpeg1videoparse/Makefile
1377 gst/mpeg2sub/Makefile
1378 gst/mpegaudio/Makefile
1379 gst/mpegaudioparse/Makefile
1380 gst/mpegstream/Makefile
1381 gst/modplug/Makefile
1382 gst/modplug/libmodplug/Makefile
1383 gst/monoscope/Makefile
1384 gst/oneton/Makefile
1385 gst/overlay/Makefile
1386 gst/passthrough/Makefile
1387 gst/playondemand/Makefile
1388 gst/qtdemux/Makefile
1389 gst/realmedia/Makefile
1390 gst/rtjpeg/Makefile
1391 gst/rtp/Makefile
1392 gst/silence/Makefile
1393 gst/sine/Makefile
1394 gst/smooth/Makefile
1395 gst/smpte/Makefile
1396 gst/spectrum/Makefile
1397 gst/speed/Makefile
1398 gst/stereo/Makefile
1399 gst/switch/Makefile
1400 gst/synaesthesia/Makefile
1401 gst/tags/Makefile
1402 gst/tcp/Makefile
1403 gst/typefind/Makefile
1404 gst/udp/Makefile
1405 gst/vbidec/Makefile
1406 gst/videocrop/Makefile
1407 gst/videodrop/Makefile
1408 gst/videofilter/Makefile
1409 gst/videoflip/Makefile
1410 gst/videoscale/Makefile
1411 gst/videotestsrc/Makefile
1412 gst/volenv/Makefile
1413 gst/volume/Makefile
1414 gst/wavenc/Makefile
1415 gst/wavparse/Makefile
1416 gst/y4m/Makefile
1417 sys/Makefile
1418 sys/cdrom/Makefile
1419 sys/dxr3/Makefile
1420 sys/glsink/Makefile
1421 sys/oss/Makefile
1422 sys/qcam/Makefile
1423 sys/v4l/Makefile
1424 sys/v4l2/Makefile
1425 sys/vcd/Makefile
1426 sys/ximage/Makefile
1427 sys/xvimage/Makefile
1428 sys/xvideo/Makefile
1429 ext/Makefile
1430 ext/a52dec/Makefile
1431 ext/aalib/Makefile
1432 ext/alsa/Makefile
1433 ext/arts/Makefile
1434 ext/artsd/Makefile
1435 ext/audiofile/Makefile
1436 ext/cdparanoia/Makefile
1437 ext/divx/Makefile
1438 ext/dv/Makefile
1439 ext/dvdread/Makefile
1440 ext/dvdnav/Makefile
1441 ext/esd/Makefile
1442 ext/faac/Makefile
1443 ext/faad/Makefile
1444 ext/ffmpeg/Makefile
1445 ext/flac/Makefile
1446 ext/gdk_pixbuf/Makefile
1447 ext/gnomevfs/Makefile
1448 ext/gsm/Makefile
1449 ext/hermes/Makefile
1450 dnl ext/http/Makefile
1451 ext/jack/Makefile
1452 ext/jpeg/Makefile
1453 ext/ladspa/Makefile
1454 ext/lame/Makefile
1455 ext/ivorbis/Makefile
1456 ext/lcs/Makefile
1457 ext/libfame/Makefile
1458 ext/libpng/Makefile
1459 ext/mad/Makefile
1460 ext/mas/Makefile
1461 ext/mikmod/Makefile
1462 ext/mpeg2dec/Makefile
1463 ext/mplex/Makefile
1464 ext/ogg/Makefile
1465 ext/pango/Makefile
1466 ext/raw1394/Makefile
1467 ext/sdl/Makefile
1468 ext/shout/Makefile
1469 ext/shout2/Makefile
1470 ext/sidplay/Makefile
1471 ext/smoothwave/Makefile
1472 ext/snapshot/Makefile
1473 ext/speex/Makefile
1474 ext/sndfile/Makefile
1475 ext/swfdec/Makefile
1476 ext/vorbis/Makefile
1477 ext/tarkin/Makefile
1478 ext/xvid/Makefile
1479 gst-libs/Makefile
1480 gst-libs/gst/Makefile
1481 gst-libs/gst/audio/Makefile
1482 gst-libs/gst/colorbalance/Makefile
1483 gst-libs/gst/floatcast/Makefile
1484 gst-libs/gst/gconf/Makefile
1485 gst-libs/gst/idct/Makefile
1486 gst-libs/gst/media-info/Makefile
1487 gst-libs/gst/mixer/Makefile
1488 gst-libs/gst/navigation/Makefile
1489 gst-libs/gst/play/Makefile
1490 gst-libs/gst/propertyprobe/Makefile
1491 gst-libs/gst/resample/Makefile
1492 gst-libs/gst/riff/Makefile
1493 gst-libs/gst/tuner/Makefile
1494 gst-libs/gst/video/Makefile
1495 gst-libs/gst/xoverlay/Makefile
1496 gst-libs/gst/xwindowlistener/Makefile
1497 gst-libs/ext/Makefile
1498 gst-libs/ext/ffmpeg/Makefile
1499 gst-libs/ext/mplex/Makefile
1500 examples/dynparams/Makefile
1501 examples/capsfilter/Makefile
1502 examples/seeking/Makefile
1503 examples/indexing/Makefile
1504 examples/Makefile
1505 testsuite/autoplug/Makefile
1506 testsuite/spider/Makefile
1507 testsuite/alsa/Makefile
1508 testsuite/Makefile
1509 tools/Makefile
1510 tools/gst-launch-ext
1511 gconf/Makefile
1512 pkgconfig/Makefile
1513 )
1514 AC_OUTPUT
1515
1516 echo -n "configure: *** Plug-ins that will be built :"
1517 echo -e "$GST_PLUGINS_YES" | sort
1518 echo
1519 echo -n "configure: *** Plug-ins that will not be built :"
1520 echo -e "$GST_PLUGINS_NO" | sort
1521 echo
1522 if test "x$BUILD_EXTERNAL" = "xno"; then
1523   echo "configure: *** No external plug-ins will be built"
1524 fi