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