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