back to HEAD
[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-base, GST_PLUGINS_BASE_VERSION, 0, 9, 2, 1,
16     GST_CVS="no", GST_CVS="yes")
17
18 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
19
20 dnl our libraries and install dirs use major.minor as a version
21 GST_MAJORMINOR=$GST_PLUGINS_BASE_VERSION_MAJOR.$GST_PLUGINS_BASE_VERSION_MINOR
22 dnl we override it here if we need to for the release candidate of new series
23 GST_MAJORMINOR=0.9
24 AC_SUBST(GST_MAJORMINOR)
25
26 dnl CURRENT, REVISION, AGE
27 dnl - library source changed -> increment REVISION
28 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
29 dnl - interfaces added -> increment AGE
30 dnl - interfaces removed -> AGE = 0
31 AS_LIBTOOL(GST_PLUGINS, 1, 0, 1)
32 AS_LIBTOOL_TAGS([])
33 AM_PROG_LIBTOOL
34
35 dnl FIXME take something else ?
36 AC_CONFIG_SRCDIR([gst/sine/gstsinesrc.c])
37 AM_CONFIG_HEADER(config.h)
38
39 dnl Add parameters for aclocal
40 dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
41 ACLOCAL_FLAGS="-I m4 -I common/m4"
42 AC_SUBST(ACLOCAL_AMFLAGS, $ACLOCAL_FLAGS)
43
44 AC_PROG_CC
45 AM_PROG_CC_STDC
46 AM_PROG_AS
47 AS="${CC}"
48 AS_PROG_OBJC
49
50 dnl the gettext stuff needed
51 AM_GNU_GETTEXT_VERSION(0.11.5)
52 AM_GNU_GETTEXT([external])
53                                                                                 
54 GETTEXT_PACKAGE=gst-plugins-base-$GST_MAJORMINOR
55 AC_SUBST(GETTEXT_PACKAGE)
56 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
57                    [gettext package name])
58                                                                                 
59 dnl define LOCALEDIR in config.h
60 AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
61 AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
62                    [gettext locale dir])
63
64 GST_SET_ERROR_CFLAGS($GST_CVS)
65
66 dnl determine c++ compiler
67 AC_PROG_CXX
68 dnl determine if c++ is available on this system
69 AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
70 dnl determine c++ preprocessor
71 AC_PROG_CXXCPP
72 AC_ISC_POSIX
73
74 AC_HEADER_STDC([])
75 AC_C_INLINE
76 AX_CREATE_STDINT_H
77
78 dnl Check for malloc.h
79 AC_CHECK_HEADER(malloc.h,[
80   AC_DEFINE(HAVE_MALLOC_H, 1, [whether malloc.h available])
81 ])
82
83 dnl Check for a way to display the function name in debug output
84 GST_CHECK_FUNCTION()
85
86 dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
87 dnl messages printed when running cvs builds
88 if test "x$GST_CVS" = "xyes"; then
89   AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
90 fi
91
92 dnl Check for FIONREAD ioctl declaration :
93 GST_CHECK_FIONREAD()
94
95 DEFAULT_AUDIOSINK="alsasink"
96 DEFAULT_VIDEOSINK="xvimagesink"
97 DEFAULT_AUDIOSRC="alsasrc"
98 DEFAULT_VIDEOSRC="v4lsrc"
99 DEFAULT_VISUALIZER="goom"
100 case "$host" in 
101   *-sun-* | *pc-solaris* )
102     DEFAULT_AUDIOSINK="sunaudiosink"
103     DEFAULT_VIDEOSINK="ximagesink"
104     DEFAULT_AUDIOSRC="sunaudiosrc"
105     ;;
106   *-darwin* )
107     DEFAULT_AUDIOSINK="osxaudiosink"
108     DEFAULT_AUDIOSRC="osxaudiosrc"
109     DEFAULT_VIDEOSINK="osxvideosink"
110     ;;
111 esac
112
113 AC_SUBST(DEFAULT_AUDIOSINK)
114 AC_DEFINE_UNQUOTED(DEFAULT_AUDIOSINK,"$DEFAULT_AUDIOSINK",[Default audio sink])
115 AC_SUBST(DEFAULT_AUDIOSRC)
116 AC_DEFINE_UNQUOTED(DEFAULT_AUDIOSRC,"$DEFAULT_AUDIOSRC",[Default audio source])
117 AC_SUBST(DEFAULT_VIDEOSINK)
118 AC_DEFINE_UNQUOTED(DEFAULT_VIDEOSINK,"$DEFAULT_VIDEOSINK",[Default video sink])
119 AC_SUBST(DEFAULT_VIDEOSRC)
120 AC_DEFINE_UNQUOTED(DEFAULT_VIDEOSRC,"$DEFAULT_VIDEOSRC",[Default video source])
121 AC_SUBST(DEFAULT_VISUALIZER)
122 AC_DEFINE_UNQUOTED(DEFAULT_VISUALIZER,"$DEFAULT_VISUALIZER",[Default visualizer])
123
124 dnl ############################################
125 dnl # Super Duper options for plug-in building #
126 dnl ############################################
127
128 dnl ext plug-ins; plug-ins that have external dependencies
129 GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
130 [HAVE_EXTERNAL=yes],enabled,
131 [
132   AC_MSG_WARN(building external plug-ins)
133   BUILD_EXTERNAL="yes"
134 ],[
135   AC_MSG_WARN(all plug-ins with external dependencies will not be built)
136   BUILD_EXTERNAL="no"
137 ])
138 # make BUILD_EXTERNAL available to Makefile.am
139 AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
140
141 dnl experimental plug-ins; stuff that hasn't had the dust settle yet
142 dnl read 'builds, but might not work'UTO
143 GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
144 [HAVE_EXPERIMENTAL=yes],disabled,
145 [
146   AC_MSG_WARN(building experimental plug-ins)
147   USE_TARKIN="yes"
148 ],[
149   AC_MSG_NOTICE(not building experimental plug-ins)
150   USE_TARKIN="no"
151 ])
152
153 dnl broken plug-ins; stuff that doesn't seem to build at the moment
154 GST_CHECK_FEATURE(BROKEN, [enable building of broken plug-ins],,
155 HAVE_BROKEN=yes,disabled,
156 [  
157   AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
158 ],[
159   AC_MSG_NOTICE([not building broken plug-ins])
160 ])
161
162 dnl ##############################
163 dnl # Do automated configuration #
164 dnl ##############################
165
166 dnl Check for tools:
167 dnl ================
168
169 dnl allow for different autotools
170 AS_AUTOTOOLS_ALTERNATE()
171
172 dnl modify pkg-config path
173 AC_ARG_WITH(pkg-config-path, 
174    AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
175    [export PKG_CONFIG_PATH=${withval}])
176
177 dnl check architecture
178 GST_ARCH()
179
180 dnl check for gstreamer
181 dnl uninstalled is selected preferentially -- see pkg-config(1)
182 GST_REQ=0.9.0
183 PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
184   HAVE_GST="yes", HAVE_GST="no")
185
186 if test "x$HAVE_GST" = "xno"; then
187   AC_MSG_ERROR(no GStreamer found)
188 fi
189
190 GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
191 if test -z $GST_TOOLS_DIR; then
192   AC_MSG_ERROR([no tools dir defined in GStreamer pkg-config file; core upgrade needed.])
193 fi
194 AC_SUBST(GST_TOOLS_DIR)
195
196 GST_PLUGINS_DIR=`pkg-config --variable=pluginsdir gstreamer-$GST_MAJORMINOR`
197 if test -z $GST_PLUGINS_DIR; then
198   AC_MSG_ERROR([no plugins dir defined in GStreamer pkg-config file; core upgrade needed.])
199 fi
200 AC_SUBST(GST_PLUGINS_DIR)
201
202
203 dnl check for gstreamer-dataprotocol; uninstalled is selected preferentially
204 PKG_CHECK_MODULES(GST_GDP, gstreamer-dataprotocol-$GST_MAJORMINOR >= $GST_REQ,
205   HAVE_GST_GDP="yes", HAVE_GST_GDP="no")
206
207 if test "x$HAVE_GST_GDP" = "xno"; then
208   AC_MSG_ERROR(no GStreamer Dataprotocol Libs found)
209 fi
210
211 AC_SUBST(GST_GDP_LIBS)
212
213 dnl check for gstreamer-controller; uninstalled is selected preferentially
214 PKG_CHECK_MODULES(GST_CTRL, gstreamer-controller-$GST_MAJORMINOR >= $GST_REQ,
215   HAVE_GST_CTRL="yes", HAVE_GST_CTRL="no")
216
217 if test "x$HAVE_GST_CTRL" = "xno"; then
218   AC_MSG_ERROR(no GStreamer Controller Libs found)
219 fi
220
221 AC_SUBST(GST_CTRL_LIBS)
222
223 PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
224   HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
225
226 if test "x$HAVE_GST_BASE" = "xno"; then
227   AC_MSG_ERROR(no libgstbase found)
228 fi
229
230 AC_SUBST(GST_BASE_LIBS)
231
232 PKG_CHECK_MODULES(GST_CHECK, gstreamer-check-$GST_MAJORMINOR >= $GST_REQ,
233   HAVE_GST_CHECK="yes", HAVE_GST_CHECK="no")
234
235 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
236 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
237
238 dnl Determine endianness
239 AC_C_BIGENDIAN
240
241 dnl Check for fast float to int casting as defined in C99
242 AC_C99_FUNC_LRINT()
243 AC_C99_FUNC_LRINTF()
244
245 dnl Check for essential libraries first:
246 dnl ====================================
247
248 GST_GLIB2_CHECK()
249
250 dnl Check for additional libraries that we might use:
251 dnl =================================================
252 dnl GTK
253 HAVE_GTK=NO
254 PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
255 if test "x$HAVE_GTK_22" = "xyes"; then
256   HAVE_GTK=yes
257   GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
258   AC_SUBST(GTK_VERSION)
259   GTK_PREFIX=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
260   AC_SUBST(GTK_BASE_DIR)
261 else
262   PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK_20=yes, HAVE_GTK_20=no)
263 fi
264 if test "x$HAVE_GTK_20" = "xyes"; then
265   HAVE_GTK=yes
266 fi
267 GTK_CFLAGS=$GTK2_CFLAGS
268 GTK_LIBS=$GTK2_LIBS
269 AC_SUBST(GTK_LIBS)
270 AC_SUBST(GTK_CFLAGS)
271 AC_SUBST(HAVE_GTK)
272
273 PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
274 AC_SUBST(LIBOIL_CFLAGS)
275 AC_SUBST(LIBOIL_LIBS)
276 if test "x${HAVE_LIBOIL}" != xyes ; then
277   AC_ERROR([liboil-0.3 is required])
278 fi
279
280 dnl ===========================================================================
281 dnl ============================= gst plug-ins ================================
282 dnl ===========================================================================
283
284 plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
285 AC_SUBST(plugindir)
286
287 dnl this really should only contain flags, not libs - they get added before
288 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
289 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*'"
290 AC_SUBST(GST_PLUGIN_LDFLAGS)
291
292 dnl these are all the gst plug-ins, compilable without additional libs
293 GST_PLUGINS_ALL="\
294         adder \
295         audioconvert \
296         audiorate \
297         audioresample \
298         ffmpegcolorspace \
299         playback \
300         sine \
301         subparse \
302         tcp \
303         typefind \
304         videotestsrc \
305         videorate \
306         videoscale \
307         volume \
308         "
309
310 dnl see if we can build C++ plug-ins
311 if test "x$HAVE_CXX" = "xyes"; then
312   GST_PLUGINS_ALL="$GST_PLUGINS_ALL"
313 else
314   AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
315 fi
316
317 AC_SUBST(GST_PLUGINS_ALL)
318
319 GST_PLUGINS_SELECTED=""
320
321 AC_ARG_WITH(plugins,
322     AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]),
323     [for i in `echo $withval | tr , ' '`; do
324         if echo $GST_PLUGINS_ALL | grep $i > /dev/null
325         then
326             GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i"
327         else
328             echo "plug-in $i not recognized, ignoring..."
329         fi
330     done],
331     [GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
332
333 AC_SUBST(GST_PLUGINS_SELECTED)
334
335 dnl ==========================================================================
336 dnl ============================= sys plug-ins ================================
337 dnl ==========================================================================
338
339 echo
340 AC_MSG_NOTICE([Checking libraries for plugins in sys/])
341 echo
342
343 dnl Check for X11
344 translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
345 GST_CHECK_FEATURE(X, [X libraries and plugins],
346                   [ximagesink], [
347   AC_PATH_XTRA
348   ac_cflags_save="$CFLAGS"
349   ac_cppflags_save="$CPPFLAGS"
350   CFLAGS="$CFLAGS $X_CFLAGS"
351   CPPFLAGS="$CPPFLAGS $X_CFLAGS"
352
353   dnl now try to find the HEADER
354   AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
355
356   if test "x$HAVE_X" = "xno"
357   then
358     AC_MSG_NOTICE([cannot find X11 development files])
359   else
360     dnl this is much more than we want
361     X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
362     dnl AC_PATH_XTRA only defines the path needed to find the X libs,
363     dnl it does not add the libs; therefore we add them here
364     X_LIBS="$X_LIBS -lX11"
365     AC_SUBST(X_CFLAGS)
366     AC_SUBST(X_LIBS)
367   fi
368   AC_SUBST(HAVE_X)
369   CFLAGS="$ac_cflags_save"
370   CPPFLAGS="$ac_cppflags_save"
371 ])
372   
373 dnl *** XVideo ***
374 dnl Look for the PIC library first, Debian requires it.
375 dnl Check debian-devel archives for gory details.
376 dnl 20020110:
377 dnl At the moment XFree86 doesn't distribute shared libXv due
378 dnl to unstable API.  On many platforms you CAN NOT link a shared
379 dnl lib to a static non-PIC lib.  This is what the xvideo GStreamer
380 dnl plug-in wants to do.  So Debian distributes a PIC compiled
381 dnl version of the static lib for plug-ins to link to when it is
382 dnl inappropriate to link the main application to libXv directly.
383 dnl FIXME: add check if this platform can support linking to a
384 dnl        non-PIC libXv, if not then don not use Xv.
385 dnl FIXME: perhaps warn user if they have a shared libXv since
386 dnl        this is an error until XFree86 starts shipping one
387    
388 dnl Check for Xv extension
389 translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
390 GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions],
391                   [xvimagesink], [
392   if test x$HAVE_X = xyes; then
393     AC_CHECK_LIB(Xv_pic, XvQueryExtension,
394                  HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
395                  $X_LIBS -lXext)
396
397     if test x$HAVE_XVIDEO = xyes; then
398       XVIDEO_LIBS="-lXv_pic -lXext"
399       AC_SUBST(XVIDEO_LIBS)
400     else
401       dnl try again using something else if we didn't find it first
402       if test x$HAVE_XVIDEO = xno; then
403         AC_CHECK_LIB(Xv, XvQueryExtension,
404                    HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
405                    $X_LIBS -lXext)
406
407         if test x$HAVE_XVIDEO = xyes; then
408           XVIDEO_LIBS="-lXv -lXext"
409           AC_SUBST(XVIDEO_LIBS)
410         fi
411       fi
412     fi
413   fi
414 ])
415
416 dnl check for X Shm
417 translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
418 GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], xshm, [
419   if test x$HAVE_X = xyes; then
420     AC_CHECK_LIB(Xext, XShmAttach, 
421                  HAVE_XSHM="yes", HAVE_XSHM="no",
422                  $X_LIBS) 
423     if test "x$HAVE_XSHM" = "xyes"; then
424       XSHM_LIBS="-lXext"
425     else
426       dnl On AIX, it is in XextSam instead, but we still need -lXext
427       AC_CHECK_LIB(XextSam, XShmAttach, 
428                    HAVE_XSHM="yes", HAVE_XSHM="no",
429                    $X_LIBS) 
430       if test "x$HAVE_XSHM" = "xyes"; then
431         XSHM_LIBS="-lXext -lXextSam"
432       fi
433     fi
434   fi
435 ], , [ 
436   AC_SUBST(HAVE_XSHM) 
437   AC_SUBST(XSHM_LIBS) 
438 ] )
439
440 dnl v4l/v4l2 checks have been moved down because they require X
441
442 dnl *** Video 4 Linux ***
443 dnl for information about the header/define, see sys/v4l/gstv4lelement.h
444 dnl renamed to GST_V4L in accordance with V4L2 below
445 translit(dnm, m, l) AM_CONDITIONAL(USE_GST_V4L, true)
446 GST_CHECK_FEATURE(GST_V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
447   # first check X
448   HAVE_GST_V4L="no"
449   if test "$HAVE_X" = "yes"
450   then
451     AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_GST_V4L="yes", HAVE_GST_V4L="no", [
452 #include <sys/types.h>
453 #define _LINUX_TIME_H
454 #define __user
455 #include <linux/videodev.h>
456     ])
457   fi
458 ])
459
460 dnl *** Video 4 Linux 2 ***
461 dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
462 dnl renamed to GST_V4L2 because of some conflict with kernel headers
463 translit(dnm, m, l) AM_CONDITIONAL(USE_GST_V4L2, true)
464 GST_CHECK_FEATURE(GST_V4L2, [Video 4 Linux 2], v4l2src, [
465   HAVE_GST_V4L2="no"
466   if test "$HAVE_X" = "yes"
467   then
468     AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
469     AC_TRY_COMPILE([
470 #include <sys/types.h>
471 #include <linux/types.h>
472 #define _LINUX_TIME_H
473 #define __user
474 #include <linux/videodev2.h>
475 #if defined(V4L2_MAJOR_VERSION) || defined(V4L2_MINOR_VERSION)
476 #error too early v4l2 version or no v4l2 at all
477 #endif
478     ], [
479 return 0;
480     ], [ HAVE_GST_V4L2="yes" && AC_MSG_RESULT(yes)],
481        [ HAVE_GST_V4L2="no"  && AC_MSG_RESULT(no) &&
482          AC_CHECK_HEADER(linux/videodev2.h,
483                          [ AC_MSG_WARN([video4linux2 headers were found, but they're old. Please update v4l2 to compile the v4l2 plugins])],
484                          [ AC_MSG_WARN([video4linux2 was not found])])
485        ])
486   fi
487   dnl check for missing v4l2_buffer declaration (see #135919)
488   if [ test x$HAVE_GST_V4L2 = xyes ]; then
489     MISSING_DECL=0
490     AC_MSG_CHECKING(struct v4l2_buffer declaration)
491     AC_TRY_COMPILE([
492 #include <sys/types.h>
493 #include <linux/types.h>
494 #define _LINUX_TIME_H
495 #define __user
496 #include <linux/videodev2.h>
497     ],[
498 struct v4l2_buffer buf;
499 buf.index = 0;
500 return 0;
501     ], [ AC_MSG_RESULT(yes) ], [ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
502     if [ test x$MISSING_DECL = x1 ]; then
503       AC_DEFINE(GST_V4L2_MISSING_BUFDECL, 1, [struct v4l2_buffer missing])
504     fi
505   fi
506 ])
507
508 dnl Next, check for the optional libraries:
509 dnl These are all libraries used in building plug-ins
510 dnl ================================================
511 dnl let's try and sort them alphabetically, shall we ?
512
513 if test "x$BUILD_EXTERNAL" = "xyes"; then
514
515 echo
516 AC_MSG_NOTICE([Checking libraries for plugins in ext/])
517 echo
518
519 dnl *** alsa ***
520 translit(dnm, m, l) AM_CONDITIONAL(USE_ALSA, true)
521 GST_CHECK_FEATURE(ALSA, [alsa plug-ins], gstalsa, [
522   PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, [
523     HAVE_ALSA="yes"
524     AC_SUBST(ALSA_CFLAGS)
525     AC_SUBST(ALSA_LIBS)
526   ], [
527     AM_PATH_ALSA(0.9.1, HAVE_ALSA="yes", HAVE_ALSA="no")
528   ])
529 ])
530
531 dnl *** CDParanoia ***
532 translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true)
533 GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
534   GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
535                       cdda_open, -lm, 
536                       cdda_interface.h, 
537                       CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
538                       HEADER_DIR="no"
539                       FOUND_CDPARANOIA="yes")
540   if test "x$FOUND_CDPARANOIA" != "xyes";
541   then
542     GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, 
543                         cdda_open, -lm, 
544                         cdda/cdda_interface.h, 
545                         CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
546                         HEADER_DIR="yes"
547                         FOUND_CDPARANOIA="yes")
548   fi
549   if test "x$HEADER_DIR" = "xyes";
550   then
551     AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, ,
552                        defined if cdda headers are in a cdda/ directory)
553   fi
554   AC_SUBST(CDPARANOIA_LIBS)
555 ])
556 dnl FIXME : add second check somehow if that is necessary
557 dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
558 dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
559
560 dnl *** Gnome VFS ***
561 translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
562 GST_CHECK_FEATURE(GNOME_VFS, [Gnome VFS], gnomevfssrc, [
563   PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, HAVE_GNOME_VFS="yes", HAVE_GNOME_VFS="no")
564   AC_SUBST(GNOME_VFS_CFLAGS)
565   AC_SUBST(GNOME_VFS_LIBS)
566 ])
567
568 dnl *** libvisual ***
569 USE_LIBVISUAL=no
570 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true)
571 GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [
572   PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.2.0, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no")
573   AC_SUBST(LIBVISUAL_CFLAGS)
574   AC_SUBST(LIBVISUAL_LIBS)
575 ])
576
577 dnl *** ogg ***
578 translit(dnm, m, l) AM_CONDITIONAL(USE_OGG, true)
579 GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
580   PKG_CHECK_MODULES(OGG, ogg >= 1.0, [
581     HAVE_OGG="yes"
582     AC_SUBST(OGG_CFLAGS)
583     AC_SUBST(OGG_LIBS)
584   ], [
585     XIPH_PATH_OGG(HAVE_OGG="yes", HAVE_OGG="no")
586     AS_SCRUB_INCLUDE(OGG_CFLAGS)
587   ])
588 ])
589
590 dnl *** theora ***
591 translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
592 GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [
593   PKG_CHECK_MODULES(THEORA, theora, [
594     HAVE_THEORA="yes"
595     AC_SUBST(THEORA_LIBS)
596     AC_SUBST(THEORA_CFLAGS)
597   ], [
598     GST_CHECK_LIBHEADER(THEORA, theora, theora_version_string, "-logg", theora/theora.h, THEORA_LIBS="-ltheora -logg")
599     AC_SUBST(THEORA_LIBS)
600   ])
601 ])
602
603 dnl *** vorbis ***
604 dnl AM_PATH_VORBIS only takes two options
605 translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
606 GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
607   PKG_CHECK_MODULES(VORBIS, vorbis >= 1.0 vorbisenc >= 1.0, [
608     HAVE_VORBIS="yes"
609   ], [
610     XIPH_PATH_VORBIS(HAVE_VORBIS="yes", HAVE_VORBIS="no")
611     AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
612   ])
613 ])
614 if test "x$HAVE_VORBIS" = "xyes"; then
615   ac_cflags_save="$CFLAGS"
616   dnl FIXME: does this work on non-gcc? -- Company
617   dnl FIXME: no, it doesn't.  Why is this here in the first place ? -- thomasvs
618   CFLAGS="-Wall -Werror"
619   AC_COMPILE_IFELSE(
620     AC_LANG_PROGRAM([
621 #include <vorbis/codec.h>
622                      ],[
623 vorbis_dsp_state *v;
624
625 vorbis_synthesis_restart (v);
626                      ]), HAVE_VSR=yes, HAVE_VSR=no)
627   if test "x$HAVE_VSR" = "xyes"; then
628     AC_DEFINE_UNQUOTED(HAVE_VORBIS_SYNTHESIS_RESTART, 1,
629                        [defined if vorbis_synthesis_restart is present])
630   fi
631   CFLAGS="$ac_cflags_save"
632 fi
633
634 fi dnl of EXT plugins
635
636 dnl Check for atomic.h
637 dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
638 dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
639 AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
640 dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
641 if test x$HAVE_ATOMIC_H = xyes; then
642   AC_TRY_RUN([
643 #include "asm/atomic.h"
644 main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
645   ],, [
646     # Not successful
647     if test x$HAVE_ATOMIC_H = xyes; then
648       AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
649     fi
650     HAVE_ATOMIC_H=no
651   ], [
652     # Cross compiling
653     AC_MSG_RESULT(yes)
654     AC_MSG_WARN(Can't check properly for atomic reference counting.  Assuming OK.)
655   ])
656 fi
657
658 dnl check for "check", unit testing library/header
659 AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
660 AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
661
662 dnl ######################################################################
663 dnl # Check command line parameters, and set shell variables accordingly #
664 dnl ######################################################################
665
666 AC_ARG_ENABLE(atomic,
667   AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
668 [case "${enableval}" in
669   yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
670   noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
671   no)  USE_ATOMIC_H=no;;
672   *) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
673 esac], 
674 [USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
675
676 AC_ARG_ENABLE(profiling,
677   AC_HELP_STRING([--enable-profiling],
678                  [-pg to compiler commandline, for profiling]),
679 [case "${enableval}" in
680   yes) USE_PROFILING=yes ;;
681   no)  UES_PROFILING=no ;;
682   *) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
683 esac], 
684 [USE_PROFILING=no]) dnl Default value
685
686 AC_ARG_ENABLE(tests,
687   AC_HELP_STRING([--disable-tests],[disable building test apps]),
688 [case "${enableval}" in
689   yes) BUILD_TESTS=yes ;;
690   no)  BUILD_TESTS=no ;;
691   *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
692 esac], 
693 [BUILD_TESTS=yes]) dnl Default value
694
695 AC_ARG_ENABLE(examples,
696   AC_HELP_STRING([--disable-examples],[disable building examples]),
697 [case "${enableval}" in
698   yes) BUILD_EXAMPLES=yes ;;
699   no)  BUILD_EXAMPLES=no ;;
700   *) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
701 esac], 
702 [BUILD_EXAMPLES=yes]) dnl Default value
703
704 dnl seeking needs freetype, so check for it here
705 PKG_CHECK_MODULES(FT2, freetype2 >= 2.0.9, HAVE_FT2="yes", [
706   AC_CHECK_FT2(2.0.9, HAVE_FT2="yes", HAVE_FT2="no")
707 ])
708 dnl make the HAVE_FT2 variable available to automake and Makefile.am
709 AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
710 AC_SUBST(FT2_CFLAGS)
711 AC_SUBST(FT2_LIBS)
712
713 dnl ################################################
714 dnl # Set defines according to variables set above #
715 dnl ################################################
716
717
718 if test "x$USE_ATOMIC_H" = xyes; then
719   AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
720 fi
721
722 # do not use deprecated stuff
723 GST_CFLAGS="$GST_CFLAGS -DGST_DISABLE_DEPRECATED"
724
725 if test "x$USE_DEBUG" = xyes; then
726   GST_CFLAGS="$GST_CFLAGS -g"
727 fi
728
729 dnl ############################
730 dnl # Checks for documentation #
731 dnl ############################
732
733 GTK_DOC_CHECK([1.3])
734 AS_PATH_PYTHON([2.1])
735
736 dnl #############################
737 dnl # Set automake conditionals #
738 dnl #############################
739
740 dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
741 dnl HAVE_ and it is likely to be easier to stick with the old name
742 AM_CONDITIONAL(HAVE_ATOMIC_H,       test "x$USE_ATOMIC_H" = "xyes")
743
744 AM_CONDITIONAL(EXPERIMENTAL,        test "$EXPERIMENTAL" = "$xyes")
745 AM_CONDITIONAL(BROKEN,              test "$BROKEN" = "$xyes")
746
747 AM_CONDITIONAL(HAVE_NASM,           test "x$HAVE_NASM" = "xyes")
748 AM_CONDITIONAL(HAVE_GTK,            test "x$HAVE_GTK" = "xyes")
749 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
750 AM_CONDITIONAL(BUILD_EXAMPLES,      test "x$BUILD_EXAMPLES" = "xyes")
751 AM_CONDITIONAL(HAVE_FIG2DEV_PNG,    $HAVE_FIG2DEV_PNG)
752 AM_CONDITIONAL(HAVE_FIG2DEV_PDF,    $HAVE_FIG2DEV_PDF)
753 AM_CONDITIONAL(HAVE_RAW1394,        test "x$HAVE_RAW1394" = "xyes")
754
755 dnl prefer internal headers to already installed ones
756 dnl also add builddir include for enumtypes and marshal
757 dnl add ERROR_CFLAGS, but overridable
758 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(ERROR_CFLAGS)"
759
760 AC_SUBST(GST_LIBS)
761 AC_SUBST(GST_CFLAGS)
762
763 dnl ###########################
764 dnl # Configure external libs #
765 dnl ###########################
766
767 dnl ############################
768 dnl # Set up some more defines #
769 dnl ############################
770
771 dnl set license and copyright notice
772 AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
773
774 dnl package name in plugins
775 AC_ARG_WITH(package-name,
776 AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
777 [case "${withval}" in
778   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
779   no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
780   *) GST_PACKAGE="${withval}" ;;
781 esac], 
782 [
783 dnl default value
784 if test "x$GST_CVS" = "xyes"
785 then
786   dnl nano >= 1
787   GST_PACKAGE="GStreamer CVS/prerelease"
788 else
789   GST_PACKAGE="GStreamer source release"
790 fi
791 ]
792 )
793 AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
794 AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
795
796 dnl package origin URL
797 AC_ARG_WITH(package-origin,
798 AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
799 [case "${withval}" in
800   yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
801   no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
802   *) GST_ORIGIN="${withval}" ;;
803 esac], 
804 [GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
805 AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
806 AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
807
808 dnl #########################
809 dnl # Make the output files #
810 dnl #########################
811
812 AC_CONFIG_FILES(
813 Makefile
814 gst-plugins-base.spec
815 gst/Makefile
816 gst/adder/Makefile
817 gst/audioconvert/Makefile
818 gst/audiorate/Makefile
819 gst/audioresample/Makefile
820 gst/ffmpegcolorspace/Makefile
821 gst/playback/Makefile
822 gst/sine/Makefile
823 gst/subparse/Makefile
824 gst/tcp/Makefile
825 gst/typefind/Makefile
826 gst/videotestsrc/Makefile
827 gst/videorate/Makefile
828 gst/videoscale/Makefile
829 gst/volume/Makefile
830 sys/Makefile
831 sys/ximage/Makefile
832 sys/xvimage/Makefile
833 sys/v4l/Makefile
834 ext/Makefile
835 ext/alsa/Makefile
836 ext/cdparanoia/Makefile
837 ext/gnomevfs/Makefile
838 ext/libvisual/Makefile
839 ext/ogg/Makefile
840 ext/theora/Makefile
841 ext/vorbis/Makefile
842 gst-libs/Makefile
843 gst-libs/gst/Makefile
844 gst-libs/gst/audio/Makefile
845 gst-libs/gst/floatcast/Makefile
846 gst-libs/gst/interfaces/Makefile
847 gst-libs/gst/net/Makefile
848 gst-libs/gst/riff/Makefile
849 gst-libs/gst/rtp/Makefile
850 gst-libs/gst/tag/Makefile
851 gst-libs/gst/video/Makefile
852 gst-libs/ext/Makefile
853 examples/seeking/Makefile
854 examples/Makefile
855 tools/Makefile
856 pkgconfig/Makefile
857 pkgconfig/gstreamer-plugins-base.pc
858 pkgconfig/gstreamer-plugins-base-uninstalled.pc
859 check/Makefile
860 docs/Makefile
861 docs/libs/Makefile
862 docs/plugins/Makefile
863 docs/version.entities
864 po/Makefile.in
865 common/Makefile
866 common/m4/Makefile
867 m4/Makefile
868 )
869 AC_OUTPUT
870
871 echo -n "configure: *** Core plug-ins, always built:"
872 ( for i in $GST_PLUGINS_ALL; do echo $i; done ) | sort
873 echo
874 echo -n "configure: *** Plug-ins relying on libraries that will be built:"
875 echo -e "$GST_PLUGINS_YES" | sort
876 echo
877 echo -n "configure: *** Plug-ins relying on libraries that will NOT be built:"
878 echo -e "$GST_PLUGINS_NO" | sort
879 echo
880 if test "x$BUILD_EXTERNAL" = "xno"; then
881   echo "configure: *** No external plug-ins will be built"
882 fi