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