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