use max width and height for fixation
[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 -Wno-sign-compare"
66
67    if test "x$GST_CVS" = "xyes"; then
68      AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
69      GST_ERROR="$GST_ERROR -DG_DISABLE_DEPRECATED"
70    fi
71 fi
72
73 dnl determine c++ compiler
74 AC_PROG_CXX
75 dnl determine if c++ is available on this system
76 AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
77 dnl determine c++ preprocessor
78 AC_PROG_CXXCPP
79 AC_ISC_POSIX
80
81 AC_HEADER_STDC([])
82 AC_C_INLINE
83 AX_CREATE_STDINT_H
84
85 dnl Check for malloc.h
86 AC_CHECK_HEADER(malloc.h,[
87   AC_DEFINE(HAVE_MALLOC_H, 1, [whether malloc.h available])
88 ])
89
90 dnl Check for a way to display the function name in debug output
91 GST_CHECK_FUNCTION()
92
93 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
94 dnl messages printed when running cvs builds
95 if test "x$GST_CVS" = "xyes"; then
96   AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
97 fi
98
99 dnl ############################################
100 dnl # Super Duper options for plug-in building #
101 dnl ############################################
102
103 dnl ext plug-ins; plug-ins that have external dependencies
104 GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
105 [HAVE_EXTERNAL=yes],enabled,
106 [
107   AC_MSG_WARN(building external plug-ins)
108   BUILD_EXTERNAL="yes"
109 ],[
110   AC_MSG_WARN(all plug-ins with external dependencies will not be built)
111   BUILD_EXTERNAL="no"
112 ])
113 # make BUILD_EXTERNAL available to Makefile.am
114 AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
115
116 dnl experimental plug-ins; stuff that hasn't had the dust settle yet
117 dnl read 'builds, but might not work'UTO
118 GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
119 [HAVE_EXPERIMENTAL=yes],disabled,
120 [
121   AC_MSG_WARN(building experimental plug-ins)
122   USE_TARKIN="yes"
123   USE_SHOUT2="yes"
124 ],[
125   AC_MSG_NOTICE(not building experimental plug-ins)
126   USE_TARKIN="no"
127   USE_SHOUT2="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_\).*'
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 *** QuickCam ***
452 translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
453 GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
454   if test "x$HAVE_CPU_I386" != "xyes";
455   then
456     HAVE_QCAM="no"
457   else
458     AC_CHECK_HEADER(sys/io.h, HAVE_QCAM="yes", HAVE_QCAM="no")
459   fi
460   if test "x$HAVE_QCAM" != "xyes";
461   then
462     AC_MSG_WARN([QuickCam only works on i386-linux])
463   fi
464 ])
465
466 dnl *** Video CD ***
467 translit(dnm, m, l) AM_CONDITIONAL(USE_VCD, true)
468 GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
469   AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no")
470 ])
471
472 dnl *** CDROM Audio ***
473 translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true)
474 GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [
475   AC_CHECK_HEADERS(linux/cdrom.h) dnl linux
476   AC_CHECK_HEADERS(sys/cdio.h) dnl almost everything else
477 dnl  AC_CHECK_HEADERS(dmedia/cdaudio.h) dnl irix
478
479   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
480         case "$host" in 
481                 *-sun-* | *-*-linux*)
482                         AC_DEFINE(HAVE_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style])
483                 ;;
484                 *-*-freebsd*)
485                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
486                 ;;
487                 *-*-netbsd* | *-*-openbsd*)
488                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
489                         AC_DEFINE(HAVE_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant])
490                 ;;
491                 *-*darwin*)
492                         AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
493                         AC_DEFINE(HAVE_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant])
494                 ;;
495 dnl             *-irix-*)
496 dnl                     AC_DEFINE(HAVE_CDROM_IRIX,, [Define if cdrom access is in Irix DMedia style])
497 dnl             ;;
498     esac
499
500         HAVE_CDROM="yes"
501   else
502         HAVE_CDROM="no"
503   fi
504 ])
505
506 dnl Check for X11
507 translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
508 GST_CHECK_FEATURE(X, [X libraries and plugins],
509                   [ximagesink], [
510   AC_PATH_XTRA
511   dnl now try to find the HEADER
512   AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
513
514   if test "x$HAVE_X" = "xno"
515   then
516     AC_MSG_NOTICE([cannot find X11 development files])
517   else
518     dnl this is much more than we want
519     X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
520     dnl AC_PATH_XTRA only defines the path needed to find the X libs,
521     dnl it does not add the libs; therefore we add them here
522     X_LIBS="$X_LIBS -lX11"
523     AC_SUBST(X_CFLAGS)
524     AC_SUBST(X_LIBS)
525   fi
526   AC_SUBST(HAVE_X)
527 ])
528   
529 dnl *** XVideo ***
530 dnl Look for the PIC library first, Debian requires it.
531 dnl Check debian-devel archives for gory details.
532 dnl 20020110:
533 dnl At the moment XFree86 doesn't distribute shared libXv due
534 dnl to unstable API.  On many platforms you CAN NOT link a shared
535 dnl lib to a static non-PIC lib.  This is what the xvideo GStreamer
536 dnl plug-in wants to do.  So Debian distributes a PIC compiled
537 dnl version of the static lib for plug-ins to link to when it is
538 dnl inappropriate to link the main application to libXv directly.
539 dnl FIXME: add check if this platform can support linking to a
540 dnl        non-PIC libXv, if not then don not use Xv.
541 dnl FIXME: perhaps warn user if they have a shared libXv since
542 dnl        this is an error until XFree86 starts shipping one
543    
544 dnl Check for Xv extension
545 translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
546 GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions],
547                   [xvimagesink], [
548   if test x$HAVE_X = xyes; then
549     AC_CHECK_LIB(Xv_pic, XvQueryExtension,
550                  HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
551                  $X_LIBS -lXext)
552
553     if test x$HAVE_XVIDEO = xyes; then
554       XVIDEO_LIBS="-lXv_pic -lXext"
555       AC_SUBST(XVIDEO_LIBS)
556     else
557       dnl try again using something else if we didn't find it first
558       if test x$HAVE_XVIDEO = xno; then
559         AC_CHECK_LIB(Xv, XvQueryExtension,
560                    HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
561                    $X_LIBS -lXext)
562
563         if test x$HAVE_XVIDEO = xyes; then
564           XVIDEO_LIBS="-lXv -lXext"
565           AC_SUBST(XVIDEO_LIBS)
566         fi
567       fi
568     fi
569   fi
570 ])
571
572 dnl check for X Shm
573 translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
574 GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], xshm, [
575   if test x$HAVE_X = xyes; then
576     AC_CHECK_LIB(Xext, XShmAttach, 
577                  HAVE_XSHM="yes", HAVE_XSHM="no",
578                  $X_LIBS) 
579     if test "x$HAVE_XSHM" = "xyes"; then
580       XSHM_LIBS="-lXext"
581     else
582       dnl On AIX, it is in XextSam instead, but we still need -lXext
583       AC_CHECK_LIB(XextSam, XShmAttach, 
584                    HAVE_XSHM="yes", HAVE_XSHM="no",
585                    $X_LIBS) 
586       if test "x$HAVE_XSHM" = "xyes"; then
587         XSHM_LIBS="-lXext -lXextSam"
588       fi
589     fi
590   fi
591 ], , [ 
592   AC_SUBST(HAVE_XSHM) 
593   AC_SUBST(XSHM_LIBS) 
594 ] )
595
596 dnl v4l/v4l2 checks have been moved down because they require X
597
598 dnl *** Video 4 Linux ***
599 dnl for information about the header/define, see sys/v4l/gstv4lelement.h
600 translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
601 GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
602   # first check X
603   HAVE_V4L="no"
604   if test "$HAVE_X" = "yes"
605   then
606     AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_V4L="yes", HAVE_V4L="no", [
607 #include <sys/types.h>
608 #define _LINUX_TIME_H
609 #include <linux/videodev.h>
610     ])
611   fi
612 ])
613
614 dnl *** Video 4 Linux 2 ***
615 dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
616 translit(dnm, m, l) AM_CONDITIONAL(USE_V4L2, true)
617 GST_CHECK_FEATURE(V4L2, [Video 4 Linux 2], v4l2src, [
618   HAVE_V4L2="no"
619   if test "$HAVE_X" = "yes"
620   then
621     AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
622     AC_TRY_COMPILE([
623 #include <sys/types.h>
624 #include <linux/types.h>
625 #define _LINUX_TIME_H
626 #include <linux/videodev2.h>
627 #if defined(V4L2_MAJOR_VERSION) || defined(V4L2_MINOR_VERSION)
628 #error too early v4l2 version or no v4l2 at all
629 #endif
630     ], [
631 return 0;
632     ], [ HAVE_V4L2="yes" && AC_MSG_RESULT(yes)],
633        [ HAVE_V4L2="no"  && AC_MSG_RESULT(no) &&
634          AC_CHECK_HEADER(linux/videodev2.h,
635                          [ AC_MSG_WARN([video4linux2 headers were found, but they're old. Please update v4l2 to compile the v4l2 plugins])],
636                          [ AC_MSG_WARN([video4linux2 was not found])])
637        ])
638   fi
639   dnl check for missing v4l2_buffer declaration (see #135919)
640   if [ test x$HAVE_V4L2 = xyes ]; then
641     MISSING_DECL=0
642     AC_MSG_CHECKING(struct v4l2_buffer declaration)
643     AC_TRY_COMPILE([
644 #include <sys/types.h>
645 #include <linux/types.h>
646 #define _LINUX_TIME_H
647 #include <linux/videodev2.h>
648     ],[
649 struct v4l2_buffer buf;
650 return 0;
651     ], [ AC_MSG_RESULT(yes) ], [ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
652     if [ test x$MISSING_DECL = x1 ]; then
653       AC_DEFINE(GST_V4L2_MISSING_BUFDECL, 1, [struct v4l2_buffer missing])
654     fi
655   fi
656 ])
657
658 dnl Next, check for the optional libraries:
659 dnl These are all libraries used in building plug-ins
660 dnl ================================================
661 dnl let's try and sort them alphabetically, shall we ?
662
663 if test "x$BUILD_EXTERNAL" = "xyes"; then
664
665 AC_MSG_NOTICE(Checking for plug-in dependency libraries)
666
667 dnl *** a52dec ***
668 translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
669 GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
670   AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
671 ])
672
673 dnl *** aalib ***
674 translit(dnm, m, l) AM_CONDITIONAL(USE_AALIB, true)
675 GST_CHECK_FEATURE(AALIB, [aasink plug-in], aasink, [
676   AM_PATH_AALIB(, HAVE_AALIB=yes, HAVE_AALIB=no)
677   AS_SCRUB_INCLUDE(AALIB_CFLAGS)
678 ])
679
680 dnl *** alsa ***
681 translit(dnm, m, l) AM_CONDITIONAL(USE_ALSA, true)
682 GST_CHECK_FEATURE(ALSA, [alsa plug-ins], gstalsa, [
683   PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, [
684     HAVE_ALSA="yes"
685     AC_SUBST(ALSA_CFLAGS)
686     AC_SUBST(ALSA_LIBS)
687   ], [
688     AM_PATH_ALSA(0.9.1, HAVE_ALSA="yes", HAVE_ALSA="no")
689   ])
690 ])
691
692 dnl *** arts ***
693 dnl if mcopidl can't be found there's no use in compiling it
694 AC_CHECK_PROG(MCOPIDL, mcopidl, yes, no)
695 if test "x$HAVE_MCOPIDL" = "xno";
696 then
697   USE_ARTS=no
698 fi
699
700 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
701 GST_CHECK_FEATURE(ARTS, [arts plug-ins], arts, [
702   AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
703 ])
704
705 dnl *** artsc ***
706 translit(dnm, m, l) AM_CONDITIONAL(USE_ARTSC, true)
707 GST_CHECK_FEATURE(ARTSC, [artsd plug-ins], artsdsink, [
708   GST_CHECK_ARTSC()
709 ])
710
711 dnl *** audiofile ***
712 dnl this check uses the GST_CHECK_CONFIGPROG macro
713 translit(dnm, m, l) AM_CONDITIONAL(USE_AUDIOFILE, true)
714 GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [
715   translit(dnm, m, l) AC_SUBST(AUDIOFILE_LIBS)
716   translit(dnm, m, l) AC_SUBST(AUDIOFILE_CFLAGS)
717   dnl check with pkg-config first
718   PKG_CHECK_MODULES(AUDIOFILE, audiofile, HAVE_AUDIOFILE="yes", HAVE_AUDIOFILE="no")
719   if test "x$HAVE_AUDIOFILE" = "xno"; then
720     GST_CHECK_CONFIGPROG(AUDIOFILE, audiofile-config)
721     dnl we need this function
722     AC_CHECK_LIB(audiofile, afOpenVirtualFile, , HAVE_AUDIOFILE="no")
723   fi])
724
725 dnl *** CDParanoia ***
726 translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true)
727 GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
728   GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
729                       cdda_open, -lm, 
730                       cdda_interface.h, 
731                       CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
732                       HEADER_DIR="no"
733                       FOUND_CDPARANOIA="yes")
734   if test "x$FOUND_CDPARANOIA" != "xyes";
735   then
736     GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
737                         cdda_open, -lm, 
738                         cdda/cdda_interface.h, 
739                         CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
740                         HEADER_DIR="yes"
741                         FOUND_CDPARANOIA="yes")
742   fi
743   if test "x$HEADER_DIR" = "xyes";
744   then
745     AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, ,
746                        defined if cdda headers are in a cdda/ directory)
747   fi
748   AC_SUBST(CDPARANOIA_LIBS)
749 ])
750 dnl FIXME : add second check somehow if that is necessary
751 dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
752 dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
753
754 dnl *** DIVX ***
755 translit(dnm, m, l) AM_CONDITIONAL(USE_DIVX, true)
756 GST_CHECK_FEATURE(DIVX, [divx plugins], divx, [
757   HAVE_DIVX=yes
758   AC_CHECK_HEADER(encore2.h, ,
759                   [ AC_MSG_WARN([Divx4linux encore headers not found]) &&
760                     HAVE_DIVX=no ] )
761   if [ test x$HAVE_DIVX = xyes ]; then
762     AC_MSG_CHECKING([Checking for valid divx4linux encore version])
763     AC_TRY_COMPILE([
764 #include <encore2.h>
765 #if ENCORE_VERSION != 20021024
766 #error Wrong version of divx encore libraries
767 #endif
768     ], [
769 return 0;
770     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
771        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
772          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
773   fi
774   if [ test x$HAVE_DIVX = xyes ]; then
775     AC_CHECK_HEADER(decore.h, ,
776                     [ AC_MSG_WARN([Divx4linux decoder headers not found]) &&
777                       HAVE_DIVX=no ] )
778   fi
779   if [ test x$HAVE_DIVX = xyes ]; then
780     AC_MSG_CHECKING([Checking for valid divx4linux decore version])
781     AC_TRY_COMPILE([
782 #include <decore.h>
783 #if DECORE_VERSION != 20021112
784 #error Wrong version of divx decore libraries
785 #endif
786     ], [
787 return 0;
788     ], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
789        [ HAVE_DIVX=no  && AC_MSG_RESULT(no) &&
790          AC_MSG_WARN([Wrong version of divx4linux installed]) ])
791   fi
792   LIBS="-lm"
793   if test x$HAVE_DIVX = xyes; then
794     AC_CHECK_LIB(divxencore, encore, ,
795                  [ AC_MSG_WARN([Divx4linux encore libs not found]) &&
796                    HAVE_DIVX=no ] )
797   fi
798   if test x$HAVE_DIVX = xyes; then
799     AC_CHECK_LIB(divxdecore, decore, ,
800                  [ AC_MSG_WARN([Divx4linux decore libs not found]) &&
801                    HAVE_DIVX=no ] )
802   fi
803   if test x$HAVE_DIVX = xyes; then
804     DIVXENC_LIBS="-ldivxencore -lm"
805     DIVXDEC_LIBS="-ldivxdecore -lm"
806     AC_SUBST(DIVXENC_LIBS)
807     AC_SUBST(DIVXDEC_LIBS)
808   fi
809 ])
810
811 dnl *** dvdread ***
812 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
813 GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
814   GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
815   AC_SUBST(DVDREAD_LIBS)
816 ])
817
818 dnl *** dvdnav ***
819 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
820 GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnavsrc, [
821   translit(dnm, m, l) AC_SUBST(DVDNAV_LIBS)
822   translit(dnm, m, l) AC_SUBST(DVDNAV_CFLAGS)
823   GST_CHECK_CONFIGPROG(DVDNAV, dvdnav-config)
824   if test x"$HAVE_DVDNAV" = x"yes"; then
825     dnl check version
826     DVDNAV_VERSION=`dvdnav-config --version|head -n 1|sed 's/^.*) //'|sed 's/ (.*)//'`
827     DVDNAV_MAJOR=`echo $DVDNAV_VERSION | cut -d. -f1 | sed s/[a-zA-Z\-].*//g`
828     DVDNAV_MINOR=`echo $DVDNAV_VERSION | cut -d. -f2 | sed s/[a-zA-Z\-].*//g`
829     DVDNAV_MICRO=`echo $DVDNAV_VERSION | cut -d. -f3 | sed s/[a-zA-Z\-].*//g`
830     if [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
831        [[ "$DVDNAV_MINOR" -lt "1" ]]; then
832       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
833       HAVE_DVDNAV="no"
834     elif [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
835          [[ "$DVDNAV_MINOR" -eq "1" ]] && \
836          [[ "$DVDNAV_MICRO" -lt "7" ]]; then
837       AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
838       HAVE_DVDNAV="no"
839       fi
840     fi
841   AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
842 ])
843
844 dnl **** ESound ****
845 translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
846 GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
847   PKG_CHECK_MODULES(ESD, esound >= 0.2.12, [
848     HAVE_ESD="yes"
849     AC_SUBST(ESD_CFLAGS)
850     AC_SUBST(ESD_LIBS)
851   ], [
852     AM_PATH_ESD(0.2.12, HAVE_ESD="yes", HAVE_ESD="no")
853     AS_SCRUB_INCLUDE(ESD_CFLAGS)
854   ])
855 ])
856
857 dnl **** Free AAC Encoder (FAAC) ****
858 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
859 GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
860   GST_CHECK_LIBHEADER(FAAC, faac, faacEncOpen, -lm, faac.h, FAAC_LIBS="-lfaac -lm")
861   AS_SCRUB_INCLUDE(FAAC_CFLAGS)
862   AC_SUBST(FAAC_LIBS)
863 ])
864
865 dnl **** Free AAC Decoder (FAAD) ****
866 translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
867 GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
868   HAVE_FAAD="yes"
869   GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
870   if test $HAVE_FAAD = "yes"; then
871     AC_MSG_CHECKING([Checking for FAAD >= 2])
872     AC_TRY_COMPILE([
873 #include <faad.h>
874 #if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
875 #error Not faad2
876 #endif
877     ], [ return 0; ],
878        [ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
879        [ HAVE_FAAD="no"  && AC_MSG_RESULT(no)])
880   fi;
881   AS_SCRUB_INCLUDE(FAAD_CFLAGS)
882   AC_SUBST(FAAD_LIBS)
883 ])
884
885 dnl **** festival ****
886 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_FESTIVAL, true)
887 dnl GST_CHECK_FEATURE(FESTIVAL, [festival plug-ins], festivalsrc, [
888   dnl NOTE: just using local net connection now, add this lib check
889   dnl       in the future if needed
890   dnl AC_LANG_PUSH(C++)
891   dnl dnl FIXME: took out func to check for
892   dnl dnl This check puts festival_tidy_up in extern "C".
893   dnl dnl But, at least on Debian as of 20020110, it is compiled with name
894   dnl dnl mangling C++ nonsense and symbols can't resolve
895   dnl dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, festival_tidy_up, , festival/festival.h, FESTIVAL_LIBS="-lFestival")
896   dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, , , festival/festival.h, FESTIVAL_LIBS="-lFestival")
897   dnl AC_LANG_POP(C++)
898   dnl AC_SUBST(FESTIVAL_LIBS)
899 dnl  HAVE_FESTIVAL=yes
900 dnl])
901
902 dnl *** FLAC ***
903 translit(dnm, m, l) AM_CONDITIONAL(USE_FLAC, true)
904 GST_CHECK_FEATURE(FLAC, [FLAC lossless audio], flacenc flacdec, [
905   GST_CHECK_LIBHEADER(FLAC, FLAC, FLAC__seekable_stream_encoder_new, -lm, FLAC/all.h, FLAC_LIBS="-lFLAC")
906   AC_SUBST(FLAC_LIBS)
907 ])
908
909 dnl *** GDK pixbuf ***
910 translit(dnm, m, l) AM_CONDITIONAL(USE_GDK_PIXBUF, true)
911 GST_CHECK_FEATURE(GDK_PIXBUF, [GDK pixbuf], gdkpixbufsrc, [
912   if test $HAVE_GTK_22 = "yes"; then HAVE_GDK_PIXBUF=yes; fi;
913 ])
914
915 dnl *** Gnome VFS ***
916 translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
917 GST_CHECK_FEATURE(GNOME_VFS, [Gnome VFS], gnomevfssrc, [
918   PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, HAVE_GNOME_VFS="yes", HAVE_GNOME_VFS="no")
919   AC_SUBST(GNOME_VFS_CFLAGS)
920   AC_SUBST(GNOME_VFS_LIBS)
921 ])
922
923 dnl *** gsm ***
924 translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true)
925 GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
926   GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm")
927   if test $HAVE_GSM != "yes"; then
928     GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
929     if test $HAVE_GSM = "yes"; then 
930       AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
931     fi
932   fi
933   AC_SUBST(GSM_LIBS)
934 ])
935
936 dnl *** Hermes ***
937 translit(dnm, m, l) AM_CONDITIONAL(USE_HERMES, true)
938 GST_CHECK_FEATURE(HERMES, [Hermes library], hermescolorspace, [
939   GST_CHECK_LIBHEADER(HERMES, Hermes, Hermes_ConverterInstance, , Hermes/Hermes.h, HERMES_LIBS="-lHermes")
940 ], AC_SUBST(HERMES_LIBS))
941
942 dnl *** http ***
943 dnl translit(dnm, m, l) AM_CONDITIONAL(USE_HTTP, true)
944 dnl GST_CHECK_FEATURE(HTTP, [http plug-ins], gsthttpsrc, [
945 dnl  dnl FIXME: need to check for header
946 dnl  GHTTP_LIBS=
947 dnl  GST_HTTPSRC_GET_TYPE=
948 dnl  if test x$USE_GLIB2 = xyes; then
949 dnl    AC_MSG_WARN(ghttp disabled for glib2.0)
950 dnl  else
951 dnl    AC_CHECK_LIB(ghttp, ghttp_request_new,
952 dnl      [HTTP_LIBS="-lghttp"
953 dnl       GST_HTTPSRC_GET_TYPE="gst_httpsrc_get_type"
954 dnl       HAVE_HTTP=yes
955 dnl      ], :, $LIBS)
956 dnl  fi
957 dnl  AC_SUBST(HTTP_LIBS)
958 dnl  AC_SUBST(GST_HTTPSRC_GET_TYPE)
959 dnl ])
960
961 dnl *** ivorbis ***
962 dnl AM_PATH_IVORBIS only takes two options
963 translit(dnm, m, l) AM_CONDITIONAL(USE_IVORBIS, true)
964 GST_CHECK_FEATURE(IVORBIS, [integer vorbis plug-in], ivorbisdec, [
965   IVORBIS_LIBS=
966   IVORBIS_CFLAGS=
967   AC_CHECK_LIB(vorbisidec, vorbis_block_init,
968     [IVORBIS_LIBS=-lvorbisidec
969      HAVE_IVORBIS=yes],
970     HAVE_IVORBIS=no)
971   AC_SUBST(IVORBIS_LIBS)
972   AC_SUBST(IVORBIS_CFLAGS)
973 ])
974
975 dnl *** Jack ***
976 translit(dnm, m, l) AM_CONDITIONAL(USE_JACK, true)
977 GST_CHECK_FEATURE(JACK, Jack, jack, [
978   PKG_CHECK_MODULES(JACK, jack >= 0.29.0, HAVE_JACK="yes", HAVE_JACK="no")
979   AC_SUBST(JACK_CFLAGS)
980   AC_SUBST(JACK_LIBS)
981 ])
982
983 dnl *** jpeg ***
984 dnl FIXME: we could use header checks here as well IMO
985 translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true)
986 GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [
987   AC_ARG_WITH(jpeg-mmx,
988     [  --with-jpeg-mmx, path to MMX'ified JPEG library])
989   OLD_LIBS="$LIBS"
990   if test x$with_jpeg_mmx != x; then
991     LIBS="$LIBS -L$with_jpeg_mmx"
992   fi
993   AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
994   JPEG_LIBS="$LIBS -ljpeg-mmx"
995   LIBS="$OLD_LIBS"
996   if test x$HAVE_JPEG != xyes; then
997     AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
998     JPEG_LIBS="-ljpeg"
999   fi
1000   AC_SUBST(JPEG_LIBS)
1001 ])
1002
1003 dnl *** KDE / Qt ***
1004
1005 dnl * Qt *
1006
1007 qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3 /usr/local/qt"
1008
1009 dnl Build include path search path from the list of Qt dirs
1010
1011 qt_include_dirs=""
1012 for dir in $qt_dirs; do
1013   qt_include_dirs="$qt_include_dirs $dir/include $dir"
1014 done
1015
1016 qt_include_dirs="$qt_include_dirs /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/include/qt3"
1017
1018 for dir in $qt_include_dirs; do
1019   if test -r "$dir/qglobal.h"; then
1020     qt_include_dir=$dir
1021     break
1022   fi
1023 done
1024
1025 for dir in $qt_dirs; do
1026   qt_lib_dirs="$qt_lib_dirs $dir/lib $dir"
1027 done
1028
1029 qt_lib_dirs="$qt_lib_dirs /usr/X11R6/lib /usr/lib"
1030
1031 for dir in $qt_lib_dirs; do
1032   try="ls -1 $dir/libqt-mt.*"
1033   if test -n "`$try 2> /dev/null`"; then
1034     qt_lib_dir=$dir
1035     break
1036   fi
1037 done
1038
1039 dnl * KDE *
1040
1041 translit(dnm, m, l) AM_CONDITIONAL(USE_KIO, true)
1042 GST_CHECK_FEATURE(KIO, [kio], kio, [
1043   AC_PATH_PROG(KDE_CONFIG, kde-config, no)
1044
1045   if test x$KDE_CONFIG != xno; then
1046     KDE_PREFIX=`$KDE_CONFIG --prefix`
1047   fi
1048
1049   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"
1050   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"
1051
1052   if test -n "$KDE_PREFIX"; then
1053     kde_include_dirs="$KDE_PREFIX/include $KDE_PREFIX/include/kde $KDE_PREFIX $kde_include_dirs"
1054     kde_lib_dirs="$KDE_PREFIX/lib $KDE_PREFIX $kde_lib_dirs"
1055   fi
1056   if test -n "$KDEDIR"; then
1057     kde_include_dirs="$KDEDIR/include $KDEDIR/include/kde $KDEDIR $kde_include_dirs"
1058     kde_lib_dirs="$KDEDIR/lib $KDEDIR $kde_lib_dirs"
1059   fi
1060
1061   for dir in $kde_include_dirs; do
1062     if test -r "$dir/kglobal.h"; then
1063       kde_include_dir=$dir
1064       break
1065     fi
1066   done
1067
1068   for dir in $kde_lib_dirs; do
1069     try="ls -1 $dir/libkio.*"
1070     if test -n "`$try 2> /dev/null`"; then
1071       kde_lib_dir=$dir
1072       break
1073     fi
1074   done
1075
1076   if test -n $kde_include_dir && test -n $kde_lib_dir; then
1077     KIO_CFLAGS="-I$kde_include_dir -I$qt_include_dir"
1078     KIO_LIBS="-L$KDE_PREFIX/lib -L$qt_lib_dir -lkio -lqt-mt"
1079     AC_LANG_PUSH(C++)
1080     save_LIBS="$LIBS"
1081     save_CPPFLAGS="$CPPFLAGS"
1082     LIBS="$LIBS $KIO_LIBS"
1083     CPPFLAGS="$CPPFLAGS $KIO_CFLAGS"
1084     AC_TRY_LINK([
1085 #include <kio/job.h>
1086                  ], [
1087 KIO::get ("bla")
1088                  ], HAVE_KIO="yes", HAVE_KIO="no")
1089     LIBS="$save_LIBS"
1090     CPPFLAGS="$save_CPPFLAGS"
1091     AC_LANG_POP(C++)
1092     AC_SUBST(KIO_CFLAGS)
1093     AC_SUBST(KIO_LIBS)
1094   else
1095     HAVE_KIO="false"
1096   fi
1097 ])
1098
1099 dnl *** ladspa ***
1100 translit(dnm, m, l) AM_CONDITIONAL(USE_LADSPA, true)
1101 GST_CHECK_FEATURE(LADSPA, [ladspa], ladspa, [
1102   AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA="yes", HAVE_LADSPA="no")
1103 ])
1104
1105 dnl *** lame ***
1106 translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
1107 GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
1108   GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h, HAVE_LAME="yes" LAME_LIBS="-lmp3lame")
1109 ])
1110 AC_SUBST(LAME_LIBS)
1111
1112 dnl *** libcolorspace ***
1113 translit(dnm, m, l) AM_CONDITIONAL(USE_LCS, true)
1114 GST_CHECK_FEATURE(LCS, Lcs, lcs, [
1115   PKG_CHECK_MODULES(LCS, lcs, HAVE_LCS="yes", HAVE_LCS="no")
1116   AC_SUBST(LCS_CFLAGS)
1117   AC_SUBST(LCS_LIBS)
1118 ])
1119
1120 dnl *** libdv ***
1121 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBDV, true)
1122 GST_CHECK_FEATURE(LIBDV, [libdv DV/video decoder], dvdec, [
1123   PKG_CHECK_MODULES(LIBDV, libdv >= 0.98, HAVE_LIBDV="yes", HAVE_LIBDV="no")
1124   AC_SUBST(LIBDV_CFLAGS)
1125   AC_SUBST(LIBDV_LIBS)
1126 ])
1127
1128 dnl *** libcaca ***
1129 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBCACA, true)
1130 GST_CHECK_FEATURE(LIBCACA, [libcaca], libcaca, [
1131   GST_CHECK_CONFIGPROG(LIBCACA, caca-config)
1132   AC_SUBST(LIBCACA_CFLAGS)
1133   AC_SUBST(LIBCACA_LIBS)
1134 ])
1135
1136 dnl *** libfame ***
1137 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBFAME, true)
1138 GST_CHECK_FEATURE(LIBFAME, [libfame MPEG1/4 encoder], libfame, [
1139   AM_PATH_LIBFAME(0.9.0, HAVE_LIBFAME="yes", HAVE_LIBFAME="no")
1140   AC_SUBST(LIBFAME_CFLAGS)
1141   AC_SUBST(LIBFAME_LIBS)
1142 ])
1143
1144 dnl *** libpng ***
1145 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
1146 GST_CHECK_FEATURE(LIBPNG, [libpng PNG encoder], pngenc, [
1147   PKG_CHECK_MODULES(LIBPNG, libpng12, HAVE_LIBPNG="yes", HAVE_LIBPNG="no")
1148   AC_SUBST(LIBPNG_CFLAGS)
1149   AC_SUBST(LIBPNG_LIBS)
1150 ])
1151
1152 dnl *** librfb ***
1153 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBRFB, true)
1154 GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [
1155   PKG_CHECK_MODULES(LIBRFB, librfb-0.1, HAVE_LIBRFB="yes", HAVE_LIBRFB="no")
1156   AC_SUBST(LIBRFB_CFLAGS)
1157   AC_SUBST(LIBRFB_LIBS)
1158 ])
1159
1160 dnl *** mad ***
1161 dnl FIXME: we could use header checks here as well IMO
1162 translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
1163 GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
1164   dnl check with pkg-config first
1165   PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no")
1166   if test "x$HAVE_MAD" = "xno"; then
1167     dnl fall back to oldskool detection
1168     AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
1169     if test "x$HAVE_MAD" = "xyes"; then
1170       HAVE_MAD="no"
1171       save_LIBS=$LIBS
1172       LIBS="-lz"
1173       AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
1174       LIBS=$save_LIBS
1175     fi
1176   fi    
1177 ])
1178 AC_SUBST(MAD_LIBS)
1179
1180 dnl *** mikmod ***
1181 translit(dnm, m, l) AM_CONDITIONAL(USE_MIKMOD, true)
1182 GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
1183   AM_PATH_LIBMIKMOD(, HAVE_MIKMOD=yes, HAVE_MIKMOD=no)
1184   AC_SUBST(MIKMOD_LIBS, "$LIBMIKMOD_LIBS")
1185   AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMODCFLAGS")
1186 ])
1187
1188 dnl *** mpeg2dec ***
1189 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
1190 GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
1191   PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0,
1192       HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no")
1193   AC_SUBST(MPEG2DEC_CFLAGS)
1194   AC_SUBST(MPEG2DEC_LIBS)
1195 ])
1196
1197 dnl *** mpeg2enc ***
1198 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2ENC, true)
1199 GST_CHECK_FEATURE(MPEG2ENC, [mpeg2enc], mpeg2enc, [
1200   HAVE_MPEG2ENC="no"
1201   dnl we require a c++ compiler for this one
1202   if [ test x$HAVE_CXX = xyes ]; then
1203     dnl libmpeg2enc was first included in mjpegtools-1.6.2-rc3 (1.6.1.92)
1204     dnl since many distros include mjpegtools specifically without mplex
1205     dnl and mpeg2enc, we check for mpeg2enc on its own, too.
1206     PKG_CHECK_MODULES(MPEG2ENC, mjpegtools >= 1.6.1.93, [
1207       dnl switch over to c++ to test things
1208       AC_LANG_CPLUSPLUS
1209       OLD_CPPFLAGS="$CPPFLAGS"
1210       CPPFLAGS="$CPPFLAGS $MPEG2ENC_CFLAGS"
1211       AC_CHECK_HEADER(mpeg2encoder.hh, [
1212         MPEG2ENC_LIBS="$MPEG2ENC_LIBS -lmpeg2encpp -lm -lpthread"
1213         OLD_LIBS="$LIBS"
1214         LIBS="$LIBS $MPEG2ENC_LIBS"
1215         AC_MSG_CHECKING([for valid mpeg2enc objects])
1216         AC_TRY_RUN([
1217 #include <mpeg2encoder.hh>
1218 #include <mpeg2encoptions.hh>
1219
1220 int
1221 main (int   argc,
1222       char *argv[])
1223 {
1224   MPEG2EncOptions *options = new MPEG2EncOptions ();
1225   MPEG2Encoder encoder (*options);
1226   return 0;
1227 }
1228         ],[
1229           HAVE_MPEG2ENC="yes"
1230           AC_SUBST(MPEG2ENC_CFLAGS)
1231           AC_SUBST(MPEG2ENC_LIBS)
1232           AC_MSG_RESULT(yes)
1233         ], AC_MSG_RESULT(no))
1234         LIBS="$OLD_LIBS"
1235       ])
1236       CPPFLAGS="$OLD_CPPFLAGS"
1237       AC_LANG_C
1238     ],
1239     HAVE_MPEG2ENC="no")
1240   fi
1241 ])
1242
1243 dnl *** mplex ***
1244 translit(dnm, m, l) AM_CONDITIONAL(USE_MPLEX, true)
1245 GST_CHECK_FEATURE(MPLEX, [mplex], mplex, [
1246   HAVE_MPLEX="no"
1247   dnl we require a c++ compiler for this one
1248   if [ test x$HAVE_CXX = xyes ]; then
1249     dnl libmplex was first included in mjpegtools-1.6.2-rc4 (1.6.1.93)
1250     dnl since many distros include mjpegtools specifically without mplex
1251     dnl and mpeg2enc, we check for mplex on its own, too.
1252     PKG_CHECK_MODULES(MPLEX, mjpegtools >= 1.6.1.93, [
1253       dnl switch over to c++ to test things
1254       AC_LANG_CPLUSPLUS
1255       OLD_CPPFLAGS="$CPPFLAGS"
1256       CPPFLAGS="$CPPFLAGS $MPLEX_CFLAGS"
1257       AC_CHECK_HEADER(interact.hpp, [
1258         MPLEX_LIBS="$MPLEX_LIBS -lmplex2 -lm"
1259         OLD_LIBS="$LIBS"
1260         LIBS="$LIBS $MPLEX_LIBS"
1261         AC_MSG_CHECKING([for valid mplex objects])
1262         AC_TRY_RUN([
1263 #include <interact.hpp>
1264 #include <outputstrm.hpp>
1265 #include <multiplexor.hpp>
1266
1267 int
1268 main (int   argc,
1269       char *argv[])
1270 {
1271   class TestOutputStream : public OutputStream {
1272   public:
1273     TestOutputStream () : OutputStream () { }
1274     void Write (uint8_t *a, unsigned int b) { }
1275     void NextSegment () { }
1276     off_t SegmentSize () { }
1277     void Close () { }
1278     int Open () { }
1279   };
1280   MultiplexJob *job = new MultiplexJob ();
1281   vector<IBitStream *> inputs;
1282   job->SetupInputStreams (inputs);
1283   TestOutputStream *out = new TestOutputStream ();
1284   Multiplexor mux (*job, *out);
1285   return 0;
1286 }
1287         ],[
1288           HAVE_MPLEX="yes"
1289           AC_SUBST(MPLEX_CFLAGS)
1290           AC_SUBST(MPLEX_LIBS)
1291           AC_MSG_RESULT(yes)
1292         ], AC_MSG_RESULT(no))
1293         LIBS="$OLD_LIBS"
1294       ])
1295       CPPFLAGS="$OLD_CPPFLAGS"
1296       AC_LANG_C
1297     ], HAVE_MPLEX="no")
1298   fi
1299 ])
1300
1301 dnl *** musicbrainz ***
1302 dnl libmusicbrainz <= 2.0.2 has symbol clashes with ffmpeg
1303 translit(dnm, m, l) AM_CONDITIONAL(USE_MUSICBRAINZ, true)
1304 GST_CHECK_FEATURE(MUSICBRAINZ, [musicbrainz], musicbrainz, [
1305   PKG_CHECK_MODULES(MUSICBRAINZ, libmusicbrainz > 2.0.2,
1306       HAVE_MUSICBRAINZ="yes", HAVE_MUSICBRAINZ="no")
1307   AC_SUBST(MUSICBRAINZ_CFLAGS)
1308   AC_SUBST(MUSICBRAINZ_LIBS)
1309 ])
1310
1311 dnl *** nas ***
1312 translit(dnm, m, l) AM_CONDITIONAL(USE_NAS, true)
1313 GST_CHECK_FEATURE(NAS, [nas plug-in], nassink, [
1314   HAVE_NAS="no"
1315   if test "x$HAVE_X" = "xyes"; then
1316     save_cppflags=$CFLAGS
1317     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1318     GST_CHECK_LIBHEADER(NAS, audio, AuOpenServer, $X_LIBS, audio/audiolib.h,
1319       NAS_LIBS="$X_LIBS -laudio" NAS_CFLAGS="$X_CFLAGS")
1320     CPPFLAGS="$save_cppflags"
1321   fi
1322   AC_SUBST(NAS_CFLAGS)
1323   AC_SUBST(NAS_LIBS)
1324 ])
1325
1326 dnl *** pango ***
1327 translit(dnm, m, l) AM_CONDITIONAL(USE_PANGO, true)
1328 GST_CHECK_FEATURE(PANGO, [pango], pango, [
1329   PKG_CHECK_MODULES(PANGO, pango pangoft2,
1330       HAVE_PANGO="yes", HAVE_PANGO="no")
1331   AC_SUBST(PANGO_CFLAGS)
1332   AC_SUBST(PANGO_LIBS)
1333 ])
1334
1335 dnl *** raw1394 ***
1336 translit(dnm, m, l) AM_CONDITIONAL(USE_RAW1394, true)
1337 GST_CHECK_FEATURE(RAW1394, [raw1394 library], dv1394src, [
1338   GST_CHECK_LIBHEADER(RAW1394, raw1394, raw1394_new_handle,, libraw1394/raw1394.h, RAW1394_LIBS="-lraw1394")
1339   AC_SUBST(RAW1394_LIBS)
1340 ])
1341
1342 dnl *** SDL ***
1343 translit(dnm, m, l) AM_CONDITIONAL(USE_SDL, true)
1344 GST_CHECK_FEATURE(SDL, [SDL plug-in], sdlvideosink, [
1345   dnl sdlvideosink depends on the xoverlay interface, which depends on X
1346   if test x$HAVE_X = xyes; then
1347     AM_PATH_SDL(, HAVE_SDL=yes, HAVE_SDL=no)
1348   fi
1349 ])
1350
1351 dnl *** shout ***
1352 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT, true)
1353 GST_CHECK_FEATURE(SHOUT, [shout plug-in], icecastsend, [
1354   GST_CHECK_LIBHEADER(SHOUT, shout, shout_init_connection,, shout/shout.h, SHOUT_LIBS="-lshout")
1355   AC_SUBST(SHOUT_LIBS)
1356 ])
1357
1358 dnl *** shout2 *** 
1359 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true)
1360 GST_CHECK_FEATURE(SHOUT2, [shout2 plug-in], shout2send, [
1361   PKG_CHECK_MODULES(SHOUT2, shout >= 2.0, [
1362     HAVE_SHOUT2="yes"
1363     AC_SUBST(SHOUT2_CFLAGS)
1364     AC_SUBST(SHOUT2_LIBS)
1365   ], [
1366     AM_PATH_SHOUT2(HAVE_SHOUT2="yes", HAVE_SHOUT2="no")
1367     AC_SUBST(SHOUT2_CFLAGS)
1368     AC_SUBST(SHOUT2_LIBS)
1369   ])
1370 ])
1371
1372 dnl *** sidplay ***
1373 translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
1374 GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
1375   GST_PATH_SIDPLAY()
1376 ])
1377
1378 dnl *** smoothwave ***
1379 translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
1380 GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plug-in], smoothwave, [
1381   if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
1382 ])
1383
1384
1385 dnl *** snapshot ***
1386 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
1387 GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
1388   GST_CHECK_LIBHEADER(LIBPNG, png, png_read_info, -lz -lm, png.h, LIBPNG_LIBS="-lpng -lz -lm")
1389   AC_SUBST(LIBPNG_LIBS)
1390 ])
1391
1392 dnl *** speex 1.0 only, not 1.1 ***
1393 dnl speex_jitter.h is 1.1 only
1394 translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
1395 GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
1396   GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
1397     AC_CHECK_HEADER(speex_jitter.h, HAVE_SPEEX="no", [
1398       HAVE_SPEEX="yes"
1399       SPEEX_LIBS="-lspeex"
1400       AC_SUBST(SPEEX_CFLAGS)
1401       AC_SUBST(SPEEX_LIBS)
1402     ])
1403   ])
1404 ])
1405
1406 dnl *** sndfile ***
1407 translit(dnm, m, l) AM_CONDITIONAL(USE_SNDFILE, true)
1408 GST_CHECK_FEATURE(SNDFILE, [sndfile plug-in], sfsrc sfsink, [
1409   PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.0, HAVE_SNDFILE="yes", HAVE_SNDFILE="no")
1410   AC_SUBST(SNDFILE_CFLAGS)
1411   AC_SUBST(SNDFILE_LIBS)
1412 ])
1413
1414 dnl *** swfdec ***
1415 translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
1416 GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
1417   PKG_CHECK_MODULES(SWFDEC, swfdec >= 0.1.3.1, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
1418   AC_SUBST(SWFDEC_CFLAGS)
1419   AC_SUBST(SWFDEC_LIBS)
1420 ])
1421
1422 dnl *** tarkin ***
1423 dnl for now the sources are included in the plug-in
1424 dnl and should be moved to ext-libs/ perhaps
1425 translit(dnm, m, l) AM_CONDITIONAL(USE_TARKIN, true)
1426 GST_CHECK_FEATURE(TARKIN, [tarkinenc tarkindec], tarkin, [
1427   HAVE_TARKIN="yes"
1428 ])
1429
1430 dnl *** ogg ***
1431 translit(dnm, m, l) AM_CONDITIONAL(USE_OGG, true)
1432 GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
1433   PKG_CHECK_MODULES(OGG, ogg >= 1.0, [
1434     HAVE_OGG="yes"
1435     AC_SUBST(OGG_CFLAGS)
1436     AC_SUBST(OGG_LIBS)
1437   ], [
1438     XIPH_PATH_OGG(HAVE_OGG="yes", HAVE_OGG="no")
1439     AS_SCRUB_INCLUDE(OGG_CFLAGS)
1440   ])
1441 ])
1442
1443 dnl *** theora ***
1444 dnl FIXME: theora doesn't have proper pc/m4 files yet, change this when this happens
1445 translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
1446 GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec, [
1447   GST_CHECK_LIBHEADER(THEORA, theora, theora_version_string, , theora/theora.h, THEORA_LIBS="-ltheora")
1448   AC_SUBST(THEORA_LIBS)
1449 ])
1450
1451 dnl *** vorbis ***
1452 dnl AM_PATH_VORBIS only takes two options
1453 translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
1454 GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
1455   PKG_CHECK_MODULES(VORBIS, vorbis >= 1.0 vorbisenc >= 1.0, [
1456     HAVE_VORBIS="yes"
1457   ], [
1458     XIPH_PATH_VORBIS(HAVE_VORBIS="yes", HAVE_VORBIS="no")
1459     AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
1460   ])
1461 ])
1462 if test "x$HAVE_VORBIS" = "xyes"; then
1463   ac_cflags_save="$CFLAGS"
1464   dnl FIXME: does this work on non-gcc? -- Company
1465   CFLAGS="-Wall -Werror"
1466   AC_COMPILE_IFELSE(
1467     AC_LANG_PROGRAM([
1468 #include <vorbis/codec.h>
1469                      ],[
1470 vorbis_dsp_state *v;
1471
1472 vorbis_synthesis_restart (v);
1473                      ]), HAVE_VSR=yes, HAVE_VSR=no)
1474   if test "x$HAVE_VSR" = "xyes"; then
1475     AC_DEFINE_UNQUOTED(HAVE_VORBIS_SYNTHESIS_RESTART, 1,
1476                        [defined if vorbis_synthesis_restart is present])
1477   fi
1478   CFLAGS="$ac_cflags_save"
1479 fi
1480
1481 dnl *** xine ***
1482 translit(dnm, m, l) AM_CONDITIONAL(USE_XINE, true)
1483 GST_CHECK_FEATURE(XINE, [xine wrapper], xine, [
1484   PKG_CHECK_MODULES(XINE, libxine >= 1.0.0, HAVE_XINE=yes, HAVE_XINE=no)
1485   AC_SUBST(XINE_CFLAGS)
1486   AC_SUBST(XINE_LIBS)
1487 ],disabled)
1488
1489 dnl *** XVID ***
1490 translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
1491 GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
1492   HAVE_XVID=no
1493   AC_CHECK_HEADER(xvid.h, [
1494     OLD_LIBS="$LIBS"
1495     LIBS="-lm"
1496     AC_CHECK_LIB(xvidcore, xvid_encore, [
1497       AC_CHECK_LIB(xvidcore, xvid_decore, [
1498         AC_CHECK_LIB(xvidcore, xvid_global, [
1499           AC_MSG_CHECKING([for uptodate XviD API version])
1500           AC_TRY_RUN([
1501 #include <xvid.h>
1502 #if XVID_API != XVID_MAKE_API(4,0)
1503 #error "Incompatible XviD API version"
1504 #endif
1505 int main () { return 0; }
1506           ],[ AC_MSG_RESULT(yes)
1507             XVID_LIBS="-lxvidcore -lm"
1508             AC_SUBST(XVID_LIBS)
1509             HAVE_XVID=yes
1510           ], AC_MSG_RESULT(no) )
1511         ], )
1512       ], )
1513     ], )
1514     LIBS="$OLD_LIBS"
1515   ], )
1516 ])
1517
1518
1519 fi dnl of EXT plugins
1520
1521 dnl Check for atomic.h
1522 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
1523 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
1524 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
1525 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
1526 if test x$HAVE_ATOMIC_H = xyes; then
1527   AC_TRY_RUN([
1528 #include "asm/atomic.h"
1529 main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
1530   ],, [
1531     # Not successful
1532     if test x$HAVE_ATOMIC_H = xyes; then
1533       AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
1534     fi
1535     HAVE_ATOMIC_H=no
1536   ], [
1537     # Cross compiling
1538     AC_MSG_RESULT(yes)
1539     AC_MSG_WARN(Can't check properly for atomic reference counting.  Assuming OK.)
1540   ])
1541 fi
1542
1543
1544 dnl ######################################################################
1545 dnl # Check command line parameters, and set shell variables accordingly #
1546 dnl ######################################################################
1547
1548 AC_ARG_ENABLE(libmmx,
1549   AC_HELP_STRING([--enable-libmmx],[use libmmx, if available]),
1550 [case "${enableval}" in
1551   yes) USE_LIBMMX=$HAVE_LIBMMX ;;
1552   no)  USE_LIBMMX=no ;;
1553   *) AC_MSG_ERROR(bad value ${enableval} for --enable-libmmx) ;;
1554 esac], 
1555 [USE_LIBMMX=$HAVE_LIBMMX]) dnl Default value
1556
1557 AC_ARG_ENABLE(atomic,
1558   AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
1559 [case "${enableval}" in
1560   yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1561   noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
1562   no)  USE_ATOMIC_H=no;;
1563   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
1564 esac], 
1565 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
1566
1567 AC_ARG_ENABLE(profiling,
1568   AC_HELP_STRING([--enable-profiling],
1569                  [-pg to compiler commandline, for profiling]),
1570 [case "${enableval}" in
1571   yes) USE_PROFILING=yes ;;
1572   no)  UES_PROFILING=no ;;
1573   *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
1574 esac], 
1575 [USE_PROFILING=no]) dnl Default value
1576
1577 AC_ARG_ENABLE(tests,
1578   AC_HELP_STRING([--disable-tests],[disable building test apps]),
1579 [case "${enableval}" in
1580   yes) BUILD_TESTS=yes ;;
1581   no)  BUILD_TESTS=no ;;
1582   *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
1583 esac], 
1584 [BUILD_TESTS=yes]) dnl Default value
1585
1586 AC_ARG_ENABLE(examples,
1587   AC_HELP_STRING([--disable-examples],[disable building examples]),
1588 [case "${enableval}" in
1589   yes) BUILD_EXAMPLES=yes ;;
1590   no)  BUILD_EXAMPLES=no ;;
1591   *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
1592 esac], 
1593 [BUILD_EXAMPLES=yes]) dnl Default value
1594
1595 dnl seeking needs freetype, so check for it here
1596 PKG_CHECK_MODULES(FT2, freetype2 >= 2.0.9, HAVE_FT2="yes", [
1597   AC_CHECK_FT2(2.0.9, HAVE_FT2="yes", HAVE_FT2="no")
1598 ])
1599 dnl make the HAVE_FT2 variable available to automake and Makefile.am
1600 AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
1601 AC_SUBST(FT2_CFLAGS)
1602 AC_SUBST(FT2_LIBS)
1603
1604 dnl ################################################
1605 dnl # Set defines according to variables set above #
1606 dnl ################################################
1607
1608
1609 if test "x$USE_LIBMMX" = xyes; then
1610   AC_DEFINE(HAVE_LIBMMX, 1, [Define if libmmx is available])
1611 fi
1612
1613 if test "x$USE_ATOMIC_H" = xyes; then
1614   AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
1615 fi
1616
1617 # do not use deprecated stuff
1618 GST_CFLAGS="$GST_CFLAGS -DGST_DISABLE_DEPRECATED"
1619
1620 if test "x$USE_DEBUG" = xyes; then
1621   GST_CFLAGS="$GST_CFLAGS -g"
1622 fi
1623
1624 dnl #############################
1625 dnl # Set automake conditionals #
1626 dnl #############################
1627
1628 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
1629 dnl HAVE_ and it is likely to be easier to stick with the old name
1630 AM_CONDITIONAL(HAVE_LIBMMX,         test "x$USE_LIBMMX" = "xyes")
1631
1632 AM_CONDITIONAL(HAVE_ATOMIC_H,       test "x$USE_ATOMIC_H" = "xyes")
1633
1634 AM_CONDITIONAL(EXPERIMENTAL,        test "$EXPERIMENTAL" = "$xyes")
1635 AM_CONDITIONAL(BROKEN,              test "$BROKEN" = "$xyes")
1636
1637 AM_CONDITIONAL(HAVE_NASM,           test "x$HAVE_NASM" = "xyes")
1638 AM_CONDITIONAL(HAVE_GTK,            test "x$HAVE_GTK" = "xyes")
1639 AM_CONDITIONAL(HAVE_GTK_DOC,        $HAVE_GTK_DOC)
1640 AM_CONDITIONAL(BUILD_DOCS,          test "x$BUILD_DOCS" = "xyes")
1641 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
1642 AM_CONDITIONAL(BUILD_EXAMPLES,      test "x$BUILD_EXAMPLES" = "xyes")
1643 AM_CONDITIONAL(BUILD_PLUGIN_DOCS,   test "x$BUILD_PLUGIN_DOCS" = "xyes")
1644 AM_CONDITIONAL(HAVE_FIG2DEV_PNG,    $HAVE_FIG2DEV_PNG)
1645 AM_CONDITIONAL(HAVE_FIG2DEV_PDF,    $HAVE_FIG2DEV_PDF)
1646 AM_CONDITIONAL(HAVE_RAW1394,        test "x$HAVE_RAW1394" = "xyes")
1647
1648 dnl prefer internal headers to already installed ones
1649 GST_CFLAGS="-I\$(top_srcdir)/gst-libs $GST_CFLAGS $GST_ERROR"
1650
1651 AC_SUBST(GST_LIBS)
1652 AC_SUBST(GST_CFLAGS)
1653
1654 dnl ###########################
1655 dnl # Configure external libs #
1656 dnl ###########################
1657
1658 dnl ############################
1659 dnl # Set up some more defines #
1660 dnl ############################
1661
1662 dnl set license and copyright notice
1663 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
1664 dnl package name in plugins
1665 AC_ARG_WITH(package-name,
1666 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
1667 [case "${withval}" in
1668   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1669   no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
1670   *) GST_PACKAGE="${withval}" ;;
1671 esac], 
1672 [GST_PACKAGE="GStreamer Plugins"]) dnl Default value
1673 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
1674 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
1675 dnl package origin URL
1676 AC_ARG_WITH(package-origin,
1677 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
1678 [case "${withval}" in
1679   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1680   no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
1681   *) GST_ORIGIN="${withval}" ;;
1682 esac], 
1683 [GST_ORIGIN="http://gstreamer.net/"]) dnl Default value
1684 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
1685 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
1686
1687 dnl #########################
1688 dnl # Make the output files #
1689 dnl #########################
1690
1691 AC_CONFIG_FILES(
1692 Makefile
1693 gst-plugins.spec
1694 gst/Makefile
1695 gst/ac3parse/Makefile
1696 gst/adder/Makefile
1697 gst/audioconvert/Makefile
1698 gst/audioscale/Makefile
1699 gst/auparse/Makefile
1700 gst/avi/Makefile
1701 gst/asfdemux/Makefile
1702 gst/cdxaparse/Makefile
1703 gst/chart/Makefile
1704 gst/colorspace/Makefile
1705 gst/cutter/Makefile
1706 gst/debug/Makefile
1707 gst/deinterlace/Makefile
1708 gst/effectv/Makefile
1709 gst/festival/Makefile
1710 gst/ffmpegcolorspace/Makefile
1711 gst/filter/Makefile
1712 gst/flx/Makefile
1713 gst/goom/Makefile
1714 gst/interleave/Makefile
1715 gst/law/Makefile
1716 gst/level/Makefile
1717 gst/matroska/Makefile
1718 gst/median/Makefile
1719 gst/mixmatrix/Makefile
1720 gst/mpeg1sys/Makefile
1721 gst/mpeg1videoparse/Makefile
1722 gst/mpeg2sub/Makefile
1723 gst/mpegaudio/Makefile
1724 gst/mpegaudioparse/Makefile
1725 gst/mpegstream/Makefile
1726 gst/modplug/Makefile
1727 gst/modplug/libmodplug/Makefile
1728 gst/monoscope/Makefile
1729 gst/overlay/Makefile
1730 gst/passthrough/Makefile
1731 gst/playondemand/Makefile
1732 gst/qtdemux/Makefile
1733 gst/realmedia/Makefile
1734 gst/rtjpeg/Makefile
1735 gst/rtp/Makefile
1736 gst/silence/Makefile
1737 gst/sine/Makefile
1738 gst/smooth/Makefile
1739 gst/smpte/Makefile
1740 gst/spectrum/Makefile
1741 gst/speed/Makefile
1742 gst/stereo/Makefile
1743 gst/switch/Makefile
1744 gst/synaesthesia/Makefile
1745 gst/tags/Makefile
1746 gst/tcp/Makefile
1747 gst/typefind/Makefile
1748 gst/udp/Makefile
1749 gst/vbidec/Makefile
1750 gst/videocrop/Makefile
1751 gst/videodrop/Makefile
1752 gst/videofilter/Makefile
1753 gst/videoflip/Makefile
1754 gst/videoscale/Makefile
1755 gst/videotestsrc/Makefile
1756 gst/volenv/Makefile
1757 gst/volume/Makefile
1758 gst/wavenc/Makefile
1759 gst/wavparse/Makefile
1760 gst/y4m/Makefile
1761 sys/Makefile
1762 sys/cdrom/Makefile
1763 sys/dxr3/Makefile
1764 sys/glsink/Makefile
1765 sys/oss/Makefile
1766 sys/qcam/Makefile
1767 sys/v4l/Makefile
1768 sys/v4l2/Makefile
1769 sys/vcd/Makefile
1770 sys/ximage/Makefile
1771 sys/xvimage/Makefile
1772 ext/Makefile
1773 ext/a52dec/Makefile
1774 ext/aalib/Makefile
1775 ext/alsa/Makefile
1776 ext/arts/Makefile
1777 ext/artsd/Makefile
1778 ext/audiofile/Makefile
1779 ext/cdparanoia/Makefile
1780 ext/divx/Makefile
1781 ext/dv/Makefile
1782 ext/dvdread/Makefile
1783 ext/dvdnav/Makefile
1784 ext/esd/Makefile
1785 ext/faac/Makefile
1786 ext/faad/Makefile
1787 ext/flac/Makefile
1788 ext/gdk_pixbuf/Makefile
1789 ext/gnomevfs/Makefile
1790 ext/gsm/Makefile
1791 ext/hermes/Makefile
1792 dnl ext/http/Makefile
1793 ext/jack/Makefile
1794 ext/jpeg/Makefile
1795 ext/kio/Makefile
1796 ext/ladspa/Makefile
1797 ext/lame/Makefile
1798 ext/ivorbis/Makefile
1799 ext/lcs/Makefile
1800 ext/libcaca/Makefile
1801 ext/libfame/Makefile
1802 ext/libpng/Makefile
1803 ext/librfb/Makefile
1804 ext/mad/Makefile
1805 ext/mikmod/Makefile
1806 ext/mpeg2dec/Makefile
1807 ext/mpeg2enc/Makefile
1808 ext/mplex/Makefile
1809 ext/musicbrainz/Makefile
1810 ext/nas/Makefile
1811 ext/ogg/Makefile
1812 ext/pango/Makefile
1813 ext/raw1394/Makefile
1814 ext/sdl/Makefile
1815 ext/shout/Makefile
1816 ext/shout2/Makefile
1817 ext/sidplay/Makefile
1818 ext/smoothwave/Makefile
1819 ext/snapshot/Makefile
1820 ext/speex/Makefile
1821 ext/sndfile/Makefile
1822 ext/swfdec/Makefile
1823 ext/tarkin/Makefile
1824 ext/theora/Makefile
1825 ext/vorbis/Makefile
1826 ext/xine/Makefile
1827 ext/xvid/Makefile
1828 gst-libs/Makefile
1829 gst-libs/gst/Makefile
1830 gst-libs/gst/audio/Makefile
1831 gst-libs/gst/colorbalance/Makefile
1832 gst-libs/gst/floatcast/Makefile
1833 gst-libs/gst/gconf/Makefile
1834 gst-libs/gst/idct/Makefile
1835 gst-libs/gst/media-info/Makefile
1836 gst-libs/gst/mixer/Makefile
1837 gst-libs/gst/navigation/Makefile
1838 gst-libs/gst/play/Makefile
1839 gst-libs/gst/propertyprobe/Makefile
1840 gst-libs/gst/resample/Makefile
1841 gst-libs/gst/riff/Makefile
1842 gst-libs/gst/tag/Makefile
1843 gst-libs/gst/tuner/Makefile
1844 gst-libs/gst/video/Makefile
1845 gst-libs/gst/xoverlay/Makefile
1846 gst-libs/gst/xwindowlistener/Makefile
1847 gst-libs/ext/Makefile
1848 examples/dynparams/Makefile
1849 examples/capsfilter/Makefile
1850 examples/seeking/Makefile
1851 examples/indexing/Makefile
1852 examples/gstplay/Makefile
1853 examples/switch/Makefile
1854 examples/Makefile
1855 testsuite/spider/Makefile
1856 testsuite/alsa/Makefile
1857 testsuite/Makefile
1858 tools/Makefile
1859 gconf/Makefile
1860 gconf/gstreamer.schemas
1861 pkgconfig/Makefile
1862 pkgconfig/gstreamer-gconf.pc
1863 pkgconfig/gstreamer-gconf-uninstalled.pc
1864 pkgconfig/gstreamer-interfaces.pc
1865 pkgconfig/gstreamer-interfaces-uninstalled.pc
1866 pkgconfig/gstreamer-libs.pc
1867 pkgconfig/gstreamer-libs-uninstalled.pc
1868 pkgconfig/gstreamer-media-info.pc
1869 pkgconfig/gstreamer-media-info-uninstalled.pc
1870 pkgconfig/gstreamer-play.pc
1871 pkgconfig/gstreamer-play-uninstalled.pc
1872 pkgconfig/gstreamer-plugins.pc
1873 pkgconfig/gstreamer-plugins-uninstalled.pc
1874 po/Makefile.in
1875 common/Makefile
1876 common/m4/Makefile
1877 m4/Makefile
1878 )
1879 AC_OUTPUT
1880
1881 echo -n "configure: *** Plug-ins that will be built :"
1882 echo -e "$GST_PLUGINS_YES" | sort
1883 echo
1884 echo -n "configure: *** Plug-ins that will not be built :"
1885 echo -e "$GST_PLUGINS_NO" | sort
1886 echo
1887 if test "x$BUILD_EXTERNAL" = "xno"; then
1888   echo "configure: *** No external plug-ins will be built"
1889 fi