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