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