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