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