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