2002-02-06 18:18:16 +00:00
|
|
|
dnl autoconf configuration file for gst-plugins
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_INIT
|
2004-08-02 11:39:17 +00:00
|
|
|
AC_CANONICAL_TARGET
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-16 05:44:09 +00:00
|
|
|
dnl We disable static building for development, for time savings
|
|
|
|
dnl this goes before AS_LIBTOOL to appease autoconf
|
|
|
|
dnl *NOTE*: dnl this line before release, so release does static too
|
|
|
|
AM_DISABLE_STATIC
|
|
|
|
|
2002-08-27 09:54:08 +00:00
|
|
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
dnl when going to/from release please set the nano (fourth number) right !
|
2002-08-27 09:54:08 +00:00
|
|
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
2006-02-20 19:13:36 +00:00
|
|
|
AS_VERSION(gst-plugins-bad, GST_PLUGINS_BAD_VERSION, 0, 10, 1, 1,
|
2005-09-05 15:10:18 +00:00
|
|
|
GST_CVS="no", GST_CVS="yes")
|
2003-09-19 06:24:35 +00:00
|
|
|
|
2002-02-21 17:20:35 +00:00
|
|
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
2002-12-08 14:50:10 +00:00
|
|
|
|
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
2005-09-05 15:10:18 +00:00
|
|
|
GST_MAJORMINOR=$GST_PLUGINS_BAD_VERSION_MAJOR.$GST_PLUGINS_BAD_VERSION_MINOR
|
2005-02-22 16:48:58 +00:00
|
|
|
dnl we override it here if we need to for the release candidate of new series
|
2005-12-01 19:13:20 +00:00
|
|
|
GST_MAJORMINOR=0.10
|
2002-12-08 14:50:10 +00:00
|
|
|
AC_SUBST(GST_MAJORMINOR)
|
|
|
|
|
2005-07-18 15:44:48 +00:00
|
|
|
AS_LIBTOOL_TAGS([CXX])
|
2004-02-04 21:30:15 +00:00
|
|
|
AM_PROG_LIBTOOL
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2005-09-26 17:57:56 +00:00
|
|
|
AC_CONFIG_SRCDIR([gst/qtdemux/qtdemux.c])
|
2002-02-06 18:18:16 +00:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
dnl Add parameters for aclocal
|
|
|
|
dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
|
2004-05-17 00:38:59 +00:00
|
|
|
ACLOCAL_FLAGS="-I m4 -I common/m4"
|
2002-09-18 22:06:14 +00:00
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, $ACLOCAL_FLAGS)
|
2002-02-06 18:18:16 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_CC_STDC
|
|
|
|
AM_PROG_AS
|
|
|
|
AS="${CC}"
|
2004-07-13 06:36:55 +00:00
|
|
|
AS_PROG_OBJC
|
|
|
|
|
2005-07-18 15:44:48 +00:00
|
|
|
dnl the gettext stuff needed
|
2005-07-08 10:47:28 +00:00
|
|
|
AM_GNU_GETTEXT_VERSION(0.11.5)
|
|
|
|
AM_GNU_GETTEXT([external])
|
|
|
|
|
2005-10-03 17:50:21 +00:00
|
|
|
GETTEXT_PACKAGE=gst-plugins-bad-$GST_MAJORMINOR
|
2005-07-08 10:47:28 +00:00
|
|
|
AC_SUBST(GETTEXT_PACKAGE)
|
|
|
|
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
|
|
|
|
[gettext package name])
|
|
|
|
|
2005-11-06 22:16:27 +00:00
|
|
|
GST_ARG_EXAMPLES
|
|
|
|
|
2005-07-08 10:47:28 +00:00
|
|
|
dnl define LOCALEDIR in config.h
|
|
|
|
AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
|
|
|
|
AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
|
|
|
|
[gettext locale dir])
|
2005-05-06 10:02:52 +00:00
|
|
|
|
2003-05-21 15:16:51 +00:00
|
|
|
dnl decide on error flags
|
2003-05-21 18:16:30 +00:00
|
|
|
AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
|
2003-05-21 15:16:51 +00:00
|
|
|
|
2003-05-21 18:16:30 +00:00
|
|
|
if test "x$GST_WALL" = "xyes"; then
|
2004-05-19 16:10:22 +00:00
|
|
|
GST_ERROR="$GST_ERROR -Wall"
|
2003-05-21 18:16:30 +00:00
|
|
|
|
|
|
|
if test "x$GST_CVS" = "xyes"; then
|
|
|
|
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
|
|
|
|
fi
|
2003-05-21 15:16:51 +00:00
|
|
|
fi
|
|
|
|
|
2002-08-07 00:22:04 +00:00
|
|
|
dnl determine c++ compiler
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CXX
|
2002-08-07 00:22:04 +00:00
|
|
|
dnl determine if c++ is available on this system
|
|
|
|
AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
|
|
|
|
dnl determine c++ preprocessor
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CXXCPP
|
|
|
|
AC_ISC_POSIX
|
|
|
|
|
|
|
|
AC_HEADER_STDC([])
|
2004-01-30 20:23:23 +00:00
|
|
|
AC_C_INLINE
|
2004-02-03 02:40:15 +00:00
|
|
|
AX_CREATE_STDINT_H
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-03-15 16:27:29 +00:00
|
|
|
dnl Check for malloc.h
|
|
|
|
AC_CHECK_HEADER(malloc.h,[
|
|
|
|
AC_DEFINE(HAVE_MALLOC_H, 1, [whether malloc.h available])
|
|
|
|
])
|
|
|
|
|
2003-11-11 03:22:53 +00:00
|
|
|
dnl Check for a way to display the function name in debug output
|
|
|
|
GST_CHECK_FUNCTION()
|
|
|
|
|
2003-11-06 02:32:42 +00:00
|
|
|
dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
|
|
|
|
dnl messages printed when running cvs builds
|
|
|
|
if test "x$GST_CVS" = "xyes"; then
|
|
|
|
AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
|
|
|
|
fi
|
|
|
|
|
2004-05-20 19:19:26 +00:00
|
|
|
dnl Check for FIONREAD ioctl declaration :
|
2004-05-20 19:43:25 +00:00
|
|
|
GST_CHECK_FIONREAD()
|
2004-05-20 19:19:26 +00:00
|
|
|
|
2006-03-11 17:08:31 +00:00
|
|
|
GST_DEFAULT_ELEMENTS
|
2004-12-14 06:43:30 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ############################################
|
|
|
|
dnl # Super Duper options for plug-in building #
|
|
|
|
dnl ############################################
|
|
|
|
|
|
|
|
dnl ext plug-ins; plug-ins that have external dependencies
|
|
|
|
GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
|
|
|
|
[HAVE_EXTERNAL=yes],enabled,
|
|
|
|
[
|
2002-09-15 21:26:03 +00:00
|
|
|
AC_MSG_WARN(building external plug-ins)
|
2002-06-14 16:44:33 +00:00
|
|
|
BUILD_EXTERNAL="yes"
|
|
|
|
],[
|
|
|
|
AC_MSG_WARN(all plug-ins with external dependencies will not be built)
|
|
|
|
BUILD_EXTERNAL="no"
|
|
|
|
])
|
2002-06-15 17:50:20 +00:00
|
|
|
# make BUILD_EXTERNAL available to Makefile.am
|
|
|
|
AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl experimental plug-ins; stuff that hasn't had the dust settle yet
|
2002-06-10 14:19:30 +00:00
|
|
|
dnl read 'builds, but might not work'UTO
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
|
2001-12-20 21:18:37 +00:00
|
|
|
[HAVE_EXPERIMENTAL=yes],disabled,
|
|
|
|
[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_WARN(building experimental plug-ins)
|
2002-02-04 10:51:26 +00:00
|
|
|
USE_TARKIN="yes"
|
2001-12-20 21:18:37 +00:00
|
|
|
],[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_NOTICE(not building experimental plug-ins)
|
2002-02-04 10:51:26 +00:00
|
|
|
USE_TARKIN="no"
|
2001-12-20 21:18:37 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl broken plug-ins; stuff that doesn't seem to build at the moment
|
|
|
|
GST_CHECK_FEATURE(BROKEN, [enable building of broken plug-ins],,
|
2001-12-20 21:18:37 +00:00
|
|
|
HAVE_BROKEN=yes,disabled,
|
|
|
|
[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
|
2001-12-20 21:18:37 +00:00
|
|
|
],[
|
2002-06-17 17:30:54 +00:00
|
|
|
AC_MSG_NOTICE([not building broken plug-ins])
|
2001-12-20 21:18:37 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl ##############################
|
|
|
|
dnl # Do automated configuration #
|
|
|
|
dnl ##############################
|
|
|
|
|
|
|
|
dnl Check for tools:
|
|
|
|
dnl ================
|
|
|
|
|
2002-05-27 14:01:51 +00:00
|
|
|
dnl allow for different autotools
|
|
|
|
AS_AUTOTOOLS_ALTERNATE()
|
|
|
|
|
2001-12-26 23:14:44 +00:00
|
|
|
dnl modify pkg-config path
|
|
|
|
AC_ARG_WITH(pkg-config-path,
|
|
|
|
AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
|
|
|
|
[export PKG_CONFIG_PATH=${withval}])
|
|
|
|
|
2005-10-19 12:41:49 +00:00
|
|
|
GST_DOCBOOK_CHECK()
|
2004-02-13 13:09:27 +00:00
|
|
|
dnl check architecture
|
|
|
|
GST_ARCH()
|
|
|
|
|
2002-07-01 15:41:13 +00:00
|
|
|
dnl check for gconftool-2
|
2004-12-09 11:54:10 +00:00
|
|
|
|
|
|
|
dnl this macro defines an am conditional, so it needs to be run always
|
|
|
|
AM_GCONF_SOURCE_2
|
|
|
|
|
2002-07-01 15:41:13 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GCONFTOOL, true)
|
|
|
|
GST_CHECK_FEATURE(GCONFTOOL, [GConf schemas], , [
|
2002-06-06 10:36:13 +00:00
|
|
|
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
|
|
|
|
if test x$GCONFTOOL = xno; then
|
|
|
|
AC_MSG_WARN(Not installing GConf schemas)
|
2002-07-01 15:41:13 +00:00
|
|
|
HAVE_GCONFTOOL="no"
|
2002-06-06 10:36:13 +00:00
|
|
|
else
|
2002-07-01 15:41:13 +00:00
|
|
|
HAVE_GCONFTOOL="yes"
|
2002-06-06 10:36:13 +00:00
|
|
|
fi
|
2002-07-01 15:41:13 +00:00
|
|
|
AC_SUBST(HAVE_GCONFTOOL)
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl check for GConf libraries
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GCONF, true)
|
|
|
|
GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
|
|
|
|
PKG_CHECK_MODULES(GCONF, gconf-2.0, HAVE_GCONF="yes", HAVE_GCONF="no")
|
|
|
|
AC_SUBST(GCONF_CFLAGS)
|
|
|
|
AC_SUBST(GCONF_LIBS)
|
2002-06-06 10:36:13 +00:00
|
|
|
])
|
2002-05-10 21:56:15 +00:00
|
|
|
|
2004-07-28 12:15:24 +00:00
|
|
|
dnl check for gstreamer
|
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2006-02-17 16:00:12 +00:00
|
|
|
GST_REQ=0.10.3
|
|
|
|
GST_PBREQ=0.10.3
|
2004-04-15 15:16:31 +00:00
|
|
|
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
|
2002-02-16 17:53:57 +00:00
|
|
|
HAVE_GST="yes", HAVE_GST="no")
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-01-02 17:07:31 +00:00
|
|
|
if test "x$HAVE_GST" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer found)
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-12-08 14:50:10 +00:00
|
|
|
GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
|
2002-02-16 17:53:57 +00:00
|
|
|
if test -z $GST_TOOLS_DIR; then
|
|
|
|
AC_MSG_ERROR([no tools dir defined in GStreamer pkg-config file; core upgrade needed.])
|
|
|
|
fi
|
|
|
|
AC_SUBST(GST_TOOLS_DIR)
|
|
|
|
|
2005-05-05 16:35:52 +00:00
|
|
|
dnl check for gstreamer-base; uninstalled is selected preferentially
|
2006-02-17 16:00:12 +00:00
|
|
|
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_PBREQ,
|
2005-05-05 16:35:52 +00:00
|
|
|
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
|
|
|
|
|
|
|
|
if test "x$HAVE_GST_BASE" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer Base Libs found)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(GST_BASE_LIBS)
|
2005-05-06 19:11:14 +00:00
|
|
|
AC_SUBST(GST_BASE_CFLAGS)
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2005-07-01 09:25:58 +00:00
|
|
|
dnl check for gstreamer-plugins-base; uinstalled is selected preferentially
|
2005-06-30 13:19:36 +00:00
|
|
|
PKG_CHECK_MODULES(GST_PLUGINS_BASE,
|
|
|
|
gstreamer-plugins-base-$GST_MAJORMINOR >= $GST_REQ,
|
|
|
|
HAVE_GST_PLUGINS_BASE="yes", HAVE_GST_PLUGINS_BASE="no")
|
2005-05-06 18:00:56 +00:00
|
|
|
|
2005-06-30 13:19:36 +00:00
|
|
|
if test "x$HAVE_GST_PLUGINS_BASE" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer Base Plugins development files found)
|
2005-05-06 18:00:56 +00:00
|
|
|
fi
|
|
|
|
|
2005-06-30 13:19:36 +00:00
|
|
|
AC_SUBST(GST_PLUGINS_BASE_LIBS)
|
|
|
|
AC_SUBST(GST_PLUGINS_BASE_CFLAGS)
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Determine endianness
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
2002-04-26 09:22:35 +00:00
|
|
|
dnl Check for fast float to int casting as defined in C99
|
|
|
|
AC_C99_FUNC_LRINT()
|
|
|
|
AC_C99_FUNC_LRINTF()
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Check for essential libraries first:
|
|
|
|
dnl ====================================
|
|
|
|
|
2005-10-16 17:08:26 +00:00
|
|
|
GST_GLIB_CHECK([2.6.0])
|
2003-07-28 11:37:49 +00:00
|
|
|
|
2003-11-11 11:11:36 +00:00
|
|
|
dnl Check for additional libraries that we might use:
|
|
|
|
dnl =================================================
|
2003-12-16 16:58:59 +00:00
|
|
|
|
2004-02-20 15:49:27 +00:00
|
|
|
# we set the defaults always to make sure we have non-empty variables
|
|
|
|
# for the Makefile
|
|
|
|
|
2005-08-16 16:12:14 +00:00
|
|
|
PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.0, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
|
Convert a few inner loops to use liboil. This is currently optional, and is only enabled if liboil is present (duh!).
Original commit message from CVS:
Convert a few inner loops to use liboil. This is currently
optional, and is only enabled if liboil is present (duh!).
* configure.ac: Check for liboil-0.1
* gst/intfloat/Makefile.am:
* gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
(gst_int2float_chain_gint16):
* gst/videofilter/Makefile.am:
* gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
(tablelookup_u8), (gst_videobalance_planar411):
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
* gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
(paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
(paint_hline_RGB565), (paint_hline_xRGB1555):
2004-02-12 07:37:49 +00:00
|
|
|
AC_SUBST(LIBOIL_CFLAGS)
|
|
|
|
AC_SUBST(LIBOIL_LIBS)
|
|
|
|
if test "x${HAVE_LIBOIL}" = xyes ; then
|
|
|
|
#AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
|
|
|
|
true
|
|
|
|
fi
|
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ===========================================================================
|
|
|
|
dnl ============================= gst plug-ins ================================
|
|
|
|
dnl ===========================================================================
|
2002-08-13 10:39:26 +00:00
|
|
|
|
2003-08-09 23:40:49 +00:00
|
|
|
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
|
|
|
AC_SUBST(plugindir)
|
|
|
|
|
2005-11-14 17:11:55 +00:00
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS -no-undefined"
|
2002-01-18 02:05:26 +00:00
|
|
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl these are all the gst plug-ins, compilable without additional libs
|
2005-05-06 11:12:18 +00:00
|
|
|
GST_PLUGINS_ALL="\
|
2006-02-10 17:41:18 +00:00
|
|
|
cdxaparse \
|
2006-02-13 17:02:09 +00:00
|
|
|
freeze \
|
2005-10-17 20:48:35 +00:00
|
|
|
speed \
|
ext/faad/gstfaad.c: Sign/unsign mismatch.
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_event):
Sign/unsign mismatch.
* configure.ac:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
(gst_qtdemux_init), (gst_qtdemux_get_src_query_types),
(gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
(plugin_init), (gst_qtdemux_handle_sink_event),
(gst_qtdemux_change_state), (gst_qtdemux_loop_header),
(qtdemux_sink_activate), (qtdemux_sink_activate_pull),
(gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
(qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
* gst/qtdemux/qtdemux.h:
Half-assed port (hey, it works).
2005-08-09 14:43:48 +00:00
|
|
|
qtdemux \
|
2006-03-11 11:12:30 +00:00
|
|
|
xingheader \
|
2005-09-22 11:17:26 +00:00
|
|
|
tta \
|
2005-07-04 14:02:46 +00:00
|
|
|
"
|
2002-08-07 00:22:04 +00:00
|
|
|
|
|
|
|
dnl see if we can build C++ plug-ins
|
|
|
|
if test "x$HAVE_CXX" = "xyes"; then
|
2006-03-10 17:10:09 +00:00
|
|
|
GST_PLUGINS_ALL="$GST_PLUGINS_ALL \
|
|
|
|
modplug \
|
|
|
|
"
|
2002-08-07 00:22:04 +00:00
|
|
|
else
|
2002-08-13 10:39:26 +00:00
|
|
|
AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
|
2002-08-07 00:22:04 +00:00
|
|
|
fi
|
2001-12-23 03:25:55 +00:00
|
|
|
|
|
|
|
AC_SUBST(GST_PLUGINS_ALL)
|
|
|
|
|
|
|
|
GST_PLUGINS_SELECTED=""
|
|
|
|
|
|
|
|
AC_ARG_WITH(plugins,
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]),
|
2001-12-23 03:25:55 +00:00
|
|
|
[for i in `echo $withval | tr , ' '`; do
|
2004-03-02 18:32:27 +00:00
|
|
|
if echo $GST_PLUGINS_ALL | grep $i > /dev/null
|
|
|
|
then
|
2001-12-23 03:25:55 +00:00
|
|
|
GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i"
|
|
|
|
else
|
2002-06-14 16:44:33 +00:00
|
|
|
echo "plug-in $i not recognized, ignoring..."
|
2001-12-23 03:25:55 +00:00
|
|
|
fi
|
|
|
|
done],
|
|
|
|
[GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
|
|
|
|
|
|
|
|
AC_SUBST(GST_PLUGINS_SELECTED)
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2001-12-20 20:16:57 +00:00
|
|
|
dnl ==========================================================================
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ============================= sys plug-ins ================================
|
2001-12-20 20:16:57 +00:00
|
|
|
dnl ==========================================================================
|
|
|
|
|
|
|
|
|
2005-05-07 18:50:39 +00:00
|
|
|
dnl ###########################
|
|
|
|
dnl # Configure external libs #
|
|
|
|
dnl ###########################
|
|
|
|
|
2006-01-28 04:39:18 +00:00
|
|
|
#dnl *** cairo ***
|
|
|
|
#translit(dnm, m, l) AM_CONDITIONAL(USE_CAIRO, true)
|
|
|
|
#GST_CHECK_FEATURE(CAIRO, [cairo plug-in], cairo, [
|
|
|
|
# PKG_CHECK_MODULES(CAIRO, cairo >= 1.0 glitz-glx, HAVE_CAIRO=yes, HAVE_CAIRO=no)
|
|
|
|
# AC_SUBST(CAIRO_CFLAGS)
|
|
|
|
# AC_SUBST(CAIRO_LIBS)
|
|
|
|
#])
|
|
|
|
|
Complete rewrite/port of
Original commit message from CVS:
2005-11-02 Julien MOUTTE <julien@moutte.net>
* configure.ac:
* ext/Makefile.am:
* ext/directfb/Makefile.am:
* ext/directfb/dfbvideosink.c:
(gst_dfbvideosink_get_format_name),
(gst_dfbvideosink_surface_create),
(gst_dfbvideosink_surface_destroy),
(gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
(gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
(gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
(gst_dfbvideosink_get_format_from_caps),
(gst_dfbvideosink_get_caps_from_format),
(gst_dfbvideosink_can_blit_from_format),
(gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
(gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
(gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
(gst_dfbvideosink_show_frame),
(gst_dfbvideosink_bufferpool_clear),
(gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
(gst_dfbsurface_init), (gst_dfbsurface_class_init),
(gst_dfbsurface_get_type),
(gst_dfbvideosink_interface_supported),
(gst_dfbvideosink_interface_init),
(gst_dfbvideosink_navigation_send_event),
(gst_dfbvideosink_navigation_init),
(gst_dfbvideosink_set_property),
(gst_dfbvideosink_get_property),
(gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
(gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
(plugin_init):
* ext/directfb/dfbvideosink.h:
* ext/directfb/directfbvideosink.c:
* ext/directfb/directfbvideosink.h: Complete rewrite/port of
DirectFB video sink to 0.9. Handles reverse negotiation,
hardware
scaling, navigation, buffer allocation from video memory etc...
2005-11-02 12:43:03 +00:00
|
|
|
dnl **** DirectFB ****
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DIRECTFB, true)
|
|
|
|
GST_CHECK_FEATURE(DIRECTFB, [directfb], dfbvideosink , [
|
2005-11-02 17:12:31 +00:00
|
|
|
PKG_CHECK_MODULES(DIRECTFB, directfb >= 0.9.24, [
|
Complete rewrite/port of
Original commit message from CVS:
2005-11-02 Julien MOUTTE <julien@moutte.net>
* configure.ac:
* ext/Makefile.am:
* ext/directfb/Makefile.am:
* ext/directfb/dfbvideosink.c:
(gst_dfbvideosink_get_format_name),
(gst_dfbvideosink_surface_create),
(gst_dfbvideosink_surface_destroy),
(gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
(gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
(gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
(gst_dfbvideosink_get_format_from_caps),
(gst_dfbvideosink_get_caps_from_format),
(gst_dfbvideosink_can_blit_from_format),
(gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
(gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
(gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
(gst_dfbvideosink_show_frame),
(gst_dfbvideosink_bufferpool_clear),
(gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
(gst_dfbsurface_init), (gst_dfbsurface_class_init),
(gst_dfbsurface_get_type),
(gst_dfbvideosink_interface_supported),
(gst_dfbvideosink_interface_init),
(gst_dfbvideosink_navigation_send_event),
(gst_dfbvideosink_navigation_init),
(gst_dfbvideosink_set_property),
(gst_dfbvideosink_get_property),
(gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
(gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
(plugin_init):
* ext/directfb/dfbvideosink.h:
* ext/directfb/directfbvideosink.c:
* ext/directfb/directfbvideosink.h: Complete rewrite/port of
DirectFB video sink to 0.9. Handles reverse negotiation,
hardware
scaling, navigation, buffer allocation from video memory etc...
2005-11-02 12:43:03 +00:00
|
|
|
HAVE_DIRECTFB="yes"
|
|
|
|
AC_SUBST(DIRECTFB_CFLAGS)
|
|
|
|
AC_SUBST(DIRECTFB_LIBS)
|
|
|
|
], [
|
|
|
|
HAVE_DIRECTFB="no"
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2005-09-01 19:12:44 +00:00
|
|
|
dnl **** Free AAC Encoder (FAAC) ****
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
|
|
|
|
GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
|
|
|
|
GST_CHECK_LIBHEADER(FAAC, faac, faacEncOpen, -lm, faac.h, FAAC_LIBS="-lfaac -lm")
|
|
|
|
AS_SCRUB_INCLUDE(FAAC_CFLAGS)
|
|
|
|
AC_SUBST(FAAC_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-07-19 20:51:15 +00:00
|
|
|
dnl **** Free AAC Decoder (FAAD) ****
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
|
|
|
|
GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
|
|
|
HAVE_FAAD="yes"
|
|
|
|
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
|
|
|
if test $HAVE_FAAD = "yes"; then
|
|
|
|
AC_MSG_CHECKING([Checking for FAAD >= 2])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
|
|
|
|
#include <faad.h>
|
|
|
|
#if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
|
|
|
|
#error Not faad2
|
|
|
|
#else
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char version[9] = FAAD2_VERSION;
|
|
|
|
// a release candidate of 2.0 is not enought for us
|
|
|
|
if ( strstr( version, "2.0 RC" ) ) { return 1; }
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
],
|
|
|
|
[ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_FAAD="no" && AC_MSG_RESULT(no)])
|
|
|
|
fi;
|
|
|
|
AS_SCRUB_INCLUDE(FAAD_CFLAGS)
|
|
|
|
AC_SUBST(FAAD_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-09-19 21:47:54 +00:00
|
|
|
dnl Check for X11
|
Port ximagesrc to 0.10 (Closes #304795)
Original commit message from CVS:
* configure.ac:
* sys/Makefile.am:
* sys/ximagesrc/Makefile.am:
* sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
(gst_ximagesrc_open_display), (gst_ximagesrc_start),
(gst_ximagesrc_stop), (gst_ximagesrc_unlock),
(gst_ximagesrc_recalc), (composite_pixel),
(gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
(gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
(gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
(gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
(gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
(gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
(gst_ximagesrc_init), (plugin_init):
* sys/ximagesrc/ximagesrc.h:
* sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
(ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
(ximageutil_xcontext_clear),
(ximageutil_calculate_pixel_aspect_ratio),
(gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
(gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
(gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
(gst_ximageutil_ximage_destroy):
* sys/ximagesrc/ximageutil.h:
Port ximagesrc to 0.10 (Closes #304795)
2006-02-20 21:19:59 +00:00
|
|
|
dnl *** X11 ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
|
|
|
|
GST_CHECK_FEATURE(X, [X libraries and plugins],
|
|
|
|
[ximagesrc], [
|
|
|
|
AC_PATH_XTRA
|
2006-02-22 14:37:20 +00:00
|
|
|
|
|
|
|
dnl now try to find the HEADER
|
Port ximagesrc to 0.10 (Closes #304795)
Original commit message from CVS:
* configure.ac:
* sys/Makefile.am:
* sys/ximagesrc/Makefile.am:
* sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
(gst_ximagesrc_open_display), (gst_ximagesrc_start),
(gst_ximagesrc_stop), (gst_ximagesrc_unlock),
(gst_ximagesrc_recalc), (composite_pixel),
(gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
(gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
(gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
(gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
(gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
(gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
(gst_ximagesrc_init), (plugin_init):
* sys/ximagesrc/ximagesrc.h:
* sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
(ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
(ximageutil_xcontext_clear),
(ximageutil_calculate_pixel_aspect_ratio),
(gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
(gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
(gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
(gst_ximageutil_ximage_destroy):
* sys/ximagesrc/ximageutil.h:
Port ximagesrc to 0.10 (Closes #304795)
2006-02-20 21:19:59 +00:00
|
|
|
ac_cflags_save="$CFLAGS"
|
|
|
|
ac_cppflags_save="$CPPFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
|
|
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
|
|
|
AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
|
|
|
|
|
|
|
|
if test "x$HAVE_X" = "xno"
|
|
|
|
then
|
|
|
|
AC_MSG_NOTICE([cannot find X11 development files])
|
|
|
|
else
|
|
|
|
dnl this is much more than we want
|
|
|
|
X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
|
|
|
|
dnl AC_PATH_XTRA only defines the path needed to find the X libs,
|
|
|
|
dnl it does not add the libs; therefore we add them here
|
|
|
|
X_LIBS="$X_LIBS -lX11"
|
|
|
|
AC_SUBST(X_CFLAGS)
|
|
|
|
AC_SUBST(X_LIBS)
|
|
|
|
|
|
|
|
dnl check for Xfixes
|
|
|
|
PKG_CHECK_MODULES(XFIXES, xfixes, HAVE_XFIXES="yes", HAVE_XFIXES="no")
|
|
|
|
if test "x$HAVE_XFIXES" = "xyes"
|
|
|
|
then
|
|
|
|
XFIXES_CFLAGS="-DHAVE_XFIXES $XFIXES_CFLAGS"
|
|
|
|
fi
|
|
|
|
AC_SUBST(XFIXES_LIBS)
|
|
|
|
AC_SUBST(XFIXES_CFLAGS)
|
|
|
|
|
|
|
|
dnl check for Xdamage
|
|
|
|
PKG_CHECK_MODULES(XDAMAGE, xdamage, HAVE_XDAMAGE="yes", HAVE_XDAMAGE="no")
|
|
|
|
if test "x$HAVE_XDAMAGE" = "xyes"
|
|
|
|
then
|
|
|
|
XDAMAGE_CFLAGS="-DHAVE_XDAMAGE $XDAMAGE_CFLAGS"
|
|
|
|
fi
|
|
|
|
AC_SUBST(XDAMAGE_LIBS)
|
|
|
|
AC_SUBST(XDAMAGE_CFLAGS)
|
|
|
|
fi
|
|
|
|
AC_SUBST(HAVE_X)
|
|
|
|
CFLAGS="$ac_cflags_save"
|
|
|
|
CPPFLAGS="$ac_cppflags_save"
|
|
|
|
])
|
2005-09-19 21:47:54 +00:00
|
|
|
|
Port ximagesrc to 0.10 (Closes #304795)
Original commit message from CVS:
* configure.ac:
* sys/Makefile.am:
* sys/ximagesrc/Makefile.am:
* sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
(gst_ximagesrc_open_display), (gst_ximagesrc_start),
(gst_ximagesrc_stop), (gst_ximagesrc_unlock),
(gst_ximagesrc_recalc), (composite_pixel),
(gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
(gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
(gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
(gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
(gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
(gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
(gst_ximagesrc_init), (plugin_init):
* sys/ximagesrc/ximagesrc.h:
* sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
(ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
(ximageutil_xcontext_clear),
(ximageutil_calculate_pixel_aspect_ratio),
(gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
(gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
(gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
(gst_ximageutil_ximage_destroy):
* sys/ximagesrc/ximageutil.h:
Port ximagesrc to 0.10 (Closes #304795)
2006-02-20 21:19:59 +00:00
|
|
|
dnl check for X Shm
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
|
|
|
|
GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], [ximagesrc w/ xshm], [
|
|
|
|
if test x$HAVE_X = xyes; then
|
|
|
|
AC_CHECK_LIB(Xext, XShmAttach,
|
|
|
|
HAVE_XSHM="yes", HAVE_XSHM="no",
|
|
|
|
$X_LIBS)
|
|
|
|
if test "x$HAVE_XSHM" = "xyes"; then
|
|
|
|
XSHM_LIBS="-lXext"
|
|
|
|
else
|
|
|
|
dnl On AIX, it is in XextSam instead, but we still need -lXext
|
|
|
|
AC_CHECK_LIB(XextSam, XShmAttach,
|
|
|
|
HAVE_XSHM="yes", HAVE_XSHM="no",
|
|
|
|
$X_LIBS)
|
|
|
|
if test "x$HAVE_XSHM" = "xyes"; then
|
|
|
|
XSHM_LIBS="-lXext -lXextSam"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
], , [
|
|
|
|
AC_SUBST(HAVE_XSHM)
|
|
|
|
AC_SUBST(XSHM_LIBS)
|
|
|
|
] )
|
2005-09-19 21:47:54 +00:00
|
|
|
|
2006-02-06 09:40:09 +00:00
|
|
|
dnl *** BZ2 ***
|
2006-02-22 14:37:20 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_BZ2, true)
|
2006-02-06 09:40:09 +00:00
|
|
|
GST_CHECK_FEATURE(BZ2, [bz2 library], bz2, [
|
|
|
|
GST_CHECK_LIBHEADER(BZ2, bz2, BZ2_bzCompress, ,bzlib.h, BZ2_LIBS="-lbz2")
|
|
|
|
AC_SUBST(BZ2_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-12-14 20:54:06 +00:00
|
|
|
dnl *** DTS ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DTS, true)
|
|
|
|
GST_CHECK_FEATURE(DTS, [dts library], dtsdec, [
|
|
|
|
GST_CHECK_LIBHEADER(DTS, dts_pic, dts_init, -lm, dts.h, DTS_LIBS="-ldts_pic -lm")
|
|
|
|
AC_SUBST(DTS_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-12-19 14:40:22 +00:00
|
|
|
dnl *** DIVX ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DIVX, true)
|
|
|
|
GST_CHECK_FEATURE(DIVX, [divx plugins], divx, [
|
|
|
|
HAVE_DIVX=yes
|
|
|
|
AC_CHECK_HEADER(encore2.h, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux encore headers not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_MSG_CHECKING([Checking for valid divx4linux encore version])
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <encore2.h>
|
|
|
|
#if ENCORE_VERSION != 20021024
|
|
|
|
#error Wrong version of divx encore libraries
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
return 0;
|
|
|
|
], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_DIVX=no && AC_MSG_RESULT(no) &&
|
|
|
|
AC_MSG_WARN([Wrong version of divx4linux installed]) ])
|
|
|
|
fi
|
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_CHECK_HEADER(decore.h, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux decoder headers not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_MSG_CHECKING([Checking for valid divx4linux decore version])
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <decore.h>
|
|
|
|
#if DECORE_VERSION != 20021112
|
|
|
|
#error Wrong version of divx decore libraries
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
return 0;
|
|
|
|
], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_DIVX=no && AC_MSG_RESULT(no) &&
|
|
|
|
AC_MSG_WARN([Wrong version of divx4linux installed]) ])
|
|
|
|
fi
|
|
|
|
LIBS="-lm"
|
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
AC_CHECK_LIB(divxencore, encore, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux encore libs not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
AC_CHECK_LIB(divxdecore, decore, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux decore libs not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
DIVXENC_LIBS="-ldivxencore -lm"
|
|
|
|
DIVXDEC_LIBS="-ldivxdecore -lm"
|
|
|
|
AC_SUBST(DIVXENC_LIBS)
|
|
|
|
AC_SUBST(DIVXDEC_LIBS)
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2005-11-22 15:09:28 +00:00
|
|
|
dnl *** musepack ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MUSEPACK, true)
|
|
|
|
GST_CHECK_FEATURE(MUSEPACK, [musepackdec], musepack, [
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
AC_CHECK_HEADER([mpcdec/mpcdec.h], [
|
|
|
|
HAVE_MUSEPACK="yes"
|
|
|
|
MUSEPACK_LIBS="-lmpcdec"
|
|
|
|
AC_SUBST(MUSEPACK_LIBS)
|
|
|
|
], [HAVE_MUSEPACK="no"])
|
|
|
|
AC_LANG_C
|
|
|
|
])
|
|
|
|
|
2005-12-28 21:07:17 +00:00
|
|
|
dnl *** neon ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_NEON, true)
|
|
|
|
GST_CHECK_FEATURE(NEON, [neon http client plugins], neonhttpsrc, [
|
2006-02-21 15:44:05 +00:00
|
|
|
PKG_CHECK_MODULES(NEON, neon >= 0.25.5, HAVE_NEON="yes", HAVE_NEON="no")
|
2005-12-28 21:07:17 +00:00
|
|
|
AC_SUBST(NEON_CFLAGS)
|
|
|
|
AC_SUBST(NEON_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-11-29 02:55:18 +00:00
|
|
|
dnl *** libmms ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBMMS, true)
|
|
|
|
GST_CHECK_FEATURE(LIBMMS, [mms protocol library], libmms, [
|
|
|
|
dnl check with pkg-config first
|
2005-12-11 23:09:21 +00:00
|
|
|
PKG_CHECK_MODULES(LIBMMS, libmms >= 0.2, HAVE_LIBMMS="yes", HAVE_LIBMMS="no")
|
2005-11-29 02:55:18 +00:00
|
|
|
])
|
|
|
|
AC_SUBST(LIBMMS_LIBS)
|
|
|
|
|
2005-09-19 21:47:54 +00:00
|
|
|
|
|
|
|
dnl *** SDL ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SDL, true)
|
2006-01-09 18:20:56 +00:00
|
|
|
GST_CHECK_FEATURE(SDL, [SDL plug-in], sdlvideosink sdlaudiosink, [
|
2005-09-19 21:47:54 +00:00
|
|
|
AM_PATH_SDL(, HAVE_SDL=yes, HAVE_SDL=no)
|
|
|
|
])
|
|
|
|
|
2005-12-09 04:15:02 +00:00
|
|
|
dnl *** swfdec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
|
|
|
|
GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
|
2006-01-21 18:35:29 +00:00
|
|
|
PKG_CHECK_MODULES(SWFDEC, swfdec-0.3 >= 0.3.6, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
|
2005-12-09 04:15:02 +00:00
|
|
|
AC_SUBST(SWFDEC_CFLAGS)
|
|
|
|
AC_SUBST(SWFDEC_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-11-25 19:58:19 +00:00
|
|
|
dnl *** wavpack ***
|
|
|
|
dnl We ship our own version of the library
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_WAVPACK, true)
|
|
|
|
GST_CHECK_FEATURE(WAVPACK, [wavpack plug-in], wavpack, [
|
|
|
|
PKG_CHECK_MODULES(WAVPACK, wavpack >= 4.2, HAVE_WAVPACK=yes, HAVE_WAVPACK=no)
|
|
|
|
AC_SUBST(WAVPACK_CFLAGS)
|
|
|
|
AC_SUBST(WAVPACK_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-11-08 13:55:13 +00:00
|
|
|
dnl *** ivorbis ***
|
|
|
|
dnl AM_PATH_IVORBIS only takes two options
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_IVORBIS, true)
|
|
|
|
GST_CHECK_FEATURE(IVORBIS, [integer vorbis plug-in], ivorbisdec, [
|
|
|
|
IVORBIS_LIBS=
|
|
|
|
IVORBIS_CFLAGS=
|
|
|
|
AC_CHECK_LIB(vorbisidec, vorbis_block_init,
|
|
|
|
[IVORBIS_LIBS=-lvorbisidec
|
|
|
|
HAVE_IVORBIS=yes],
|
|
|
|
HAVE_IVORBIS=no)
|
|
|
|
AC_SUBST(IVORBIS_LIBS)
|
|
|
|
AC_SUBST(IVORBIS_CFLAGS)
|
|
|
|
])
|
2005-09-19 21:47:54 +00:00
|
|
|
|
2005-09-02 20:21:17 +00:00
|
|
|
dnl *** gsm ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true)
|
|
|
|
GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
|
|
|
|
GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm")
|
|
|
|
if test $HAVE_GSM != "yes"; then
|
|
|
|
GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
|
|
|
|
if test $HAVE_GSM = "yes"; then
|
|
|
|
AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_SUBST(GSM_LIBS)
|
|
|
|
])
|
|
|
|
|
2006-01-28 04:39:18 +00:00
|
|
|
dnl *** OpenGL ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
|
2006-02-22 14:37:20 +00:00
|
|
|
save_CPPFLAGS="$CPPFLAGS"
|
|
|
|
save_LIBS="$LIBS"
|
|
|
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
|
|
|
LIBS="$LIBS $X_LIBS"
|
2006-01-28 04:39:18 +00:00
|
|
|
GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
|
2006-02-22 14:37:20 +00:00
|
|
|
GST_CHECK_LIBHEADER(GL, GL, glTexImage2D,,
|
2006-01-28 04:39:18 +00:00
|
|
|
GL/gl.h, HAVE_OPENGL="yes", HAVE_OPENGL="no")
|
|
|
|
])
|
2006-02-22 14:37:20 +00:00
|
|
|
CPPFLAGS="$save_CPPFLAGS"
|
|
|
|
LIBS="$save_LIBS"
|
2006-01-28 04:39:18 +00:00
|
|
|
|
2005-12-14 22:41:47 +00:00
|
|
|
dnl *** XVID ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
|
|
|
|
GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
|
|
|
|
HAVE_XVID=no
|
|
|
|
AC_CHECK_HEADER(xvid.h, [
|
|
|
|
OLD_LIBS="$LIBS"
|
|
|
|
LIBS="-lm"
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_encore, [
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_decore, [
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_global, [
|
|
|
|
AC_MSG_CHECKING([for uptodate XviD API version])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <xvid.h>
|
|
|
|
#if XVID_API_MAJOR(XVID_API) != 4
|
|
|
|
#error "Incompatible XviD API version"
|
|
|
|
#endif
|
|
|
|
int main () { return 0; }
|
|
|
|
],[ AC_MSG_RESULT(yes)
|
|
|
|
XVID_LIBS="-lxvidcore -lm"
|
|
|
|
AC_SUBST(XVID_LIBS)
|
|
|
|
HAVE_XVID=yes
|
|
|
|
], AC_MSG_RESULT(no) )
|
|
|
|
], )
|
|
|
|
], )
|
|
|
|
], )
|
|
|
|
LIBS="$OLD_LIBS"
|
|
|
|
], )
|
|
|
|
])
|
|
|
|
|
2006-03-09 17:44:17 +00:00
|
|
|
dnl *** taglib ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_TAGLIB, true)
|
|
|
|
GST_CHECK_FEATURE(TAGLIB, [taglib ID3v2 tag writer], taglib, [
|
|
|
|
PKG_CHECK_MODULES(TAGLIB, taglib >= 1.4, HAVE_TAGLIB="yes", HAVE_TAGLIB="no")
|
|
|
|
AC_SUBST(TAGLIB_CFLAGS)
|
|
|
|
AC_SUBST(TAGLIB_LIBS)
|
2006-03-11 17:08:31 +00:00
|
|
|
if test "x$HAVE_CXX" != "xyes"; then
|
|
|
|
USE_TAGLIB=false
|
|
|
|
AC_MSG_NOTICE([Not building taglib plugin: no C++ compiler found])
|
|
|
|
fi
|
2006-03-09 17:44:17 +00:00
|
|
|
])
|
|
|
|
|
2005-12-14 22:41:47 +00:00
|
|
|
|
2005-07-05 15:26:56 +00:00
|
|
|
dnl also add builddir include for enumtypes and marshal
|
|
|
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
2005-06-29 16:14:29 +00:00
|
|
|
|
2001-12-21 12:46:50 +00:00
|
|
|
AC_SUBST(GST_LIBS)
|
|
|
|
AC_SUBST(GST_CFLAGS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2005-11-06 21:55:01 +00:00
|
|
|
dnl ######################
|
|
|
|
dnl # Checks for gtk-doc #
|
|
|
|
dnl ######################
|
|
|
|
|
|
|
|
GTK_DOC_CHECK([1.3])
|
|
|
|
AS_PATH_PYTHON([2.1])
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl ############################
|
|
|
|
dnl # Set up some more defines #
|
|
|
|
dnl ############################
|
|
|
|
|
|
|
|
dnl set license and copyright notice
|
|
|
|
AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
|
2004-08-12 12:00:31 +00:00
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl package name in plugins
|
|
|
|
AC_ARG_WITH(package-name,
|
|
|
|
AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
|
|
|
|
[case "${withval}" in
|
|
|
|
yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
|
|
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
|
|
|
*) GST_PACKAGE="${withval}" ;;
|
|
|
|
esac],
|
2004-08-12 12:00:31 +00:00
|
|
|
[
|
|
|
|
dnl default value
|
|
|
|
if test "x$GST_CVS" = "xyes"
|
|
|
|
then
|
|
|
|
dnl nano >= 1
|
|
|
|
GST_PACKAGE="GStreamer CVS/prerelease"
|
|
|
|
else
|
|
|
|
GST_PACKAGE="GStreamer source release"
|
|
|
|
fi
|
|
|
|
]
|
|
|
|
)
|
2003-10-31 20:03:29 +00:00
|
|
|
AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
|
|
|
|
AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
|
2004-08-12 12:00:31 +00:00
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl package origin URL
|
|
|
|
AC_ARG_WITH(package-origin,
|
|
|
|
AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
|
|
|
|
[case "${withval}" in
|
|
|
|
yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
|
|
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
|
|
|
*) GST_ORIGIN="${withval}" ;;
|
|
|
|
esac],
|
2004-08-12 12:00:31 +00:00
|
|
|
[GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
|
2003-10-31 20:03:29 +00:00
|
|
|
AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
|
|
|
|
AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl #########################
|
|
|
|
dnl # Make the output files #
|
|
|
|
dnl #########################
|
2005-08-31 18:07:29 +00:00
|
|
|
dnl po/Makefile.in
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_CONFIG_FILES(
|
2001-12-17 18:37:01 +00:00
|
|
|
Makefile
|
2005-09-06 14:05:50 +00:00
|
|
|
gst-plugins-bad.spec
|
2001-12-21 11:46:15 +00:00
|
|
|
gst/Makefile
|
2006-02-10 17:41:18 +00:00
|
|
|
gst/cdxaparse/Makefile
|
2006-02-13 17:02:09 +00:00
|
|
|
gst/freeze/Makefile
|
2006-03-10 17:10:09 +00:00
|
|
|
gst/modplug/Makefile
|
|
|
|
gst/modplug/libmodplug/Makefile
|
2005-10-17 20:48:35 +00:00
|
|
|
gst/speed/Makefile
|
2005-08-30 18:00:06 +00:00
|
|
|
gst/qtdemux/Makefile
|
2005-09-22 11:17:26 +00:00
|
|
|
gst/tta/Makefile
|
2006-03-11 11:12:30 +00:00
|
|
|
gst/xingheader/Makefile
|
2001-12-20 20:16:57 +00:00
|
|
|
sys/Makefile
|
2006-01-28 04:39:18 +00:00
|
|
|
sys/glsink/Makefile
|
Port ximagesrc to 0.10 (Closes #304795)
Original commit message from CVS:
* configure.ac:
* sys/Makefile.am:
* sys/ximagesrc/Makefile.am:
* sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
(gst_ximagesrc_open_display), (gst_ximagesrc_start),
(gst_ximagesrc_stop), (gst_ximagesrc_unlock),
(gst_ximagesrc_recalc), (composite_pixel),
(gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
(gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
(gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
(gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
(gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
(gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
(gst_ximagesrc_init), (plugin_init):
* sys/ximagesrc/ximagesrc.h:
* sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
(ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
(ximageutil_xcontext_clear),
(ximageutil_calculate_pixel_aspect_ratio),
(gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
(gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
(gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
(gst_ximageutil_ximage_destroy):
* sys/ximagesrc/ximageutil.h:
Port ximagesrc to 0.10 (Closes #304795)
2006-02-20 21:19:59 +00:00
|
|
|
sys/ximagesrc/Makefile
|
2005-11-06 21:55:01 +00:00
|
|
|
examples/Makefile
|
|
|
|
examples/directfb/Makefile
|
2005-05-06 11:04:30 +00:00
|
|
|
ext/Makefile
|
2006-02-06 09:40:09 +00:00
|
|
|
ext/bz2/Makefile
|
Complete rewrite/port of
Original commit message from CVS:
2005-11-02 Julien MOUTTE <julien@moutte.net>
* configure.ac:
* ext/Makefile.am:
* ext/directfb/Makefile.am:
* ext/directfb/dfbvideosink.c:
(gst_dfbvideosink_get_format_name),
(gst_dfbvideosink_surface_create),
(gst_dfbvideosink_surface_destroy),
(gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
(gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
(gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
(gst_dfbvideosink_get_format_from_caps),
(gst_dfbvideosink_get_caps_from_format),
(gst_dfbvideosink_can_blit_from_format),
(gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
(gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
(gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
(gst_dfbvideosink_show_frame),
(gst_dfbvideosink_bufferpool_clear),
(gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
(gst_dfbsurface_init), (gst_dfbsurface_class_init),
(gst_dfbsurface_get_type),
(gst_dfbvideosink_interface_supported),
(gst_dfbvideosink_interface_init),
(gst_dfbvideosink_navigation_send_event),
(gst_dfbvideosink_navigation_init),
(gst_dfbvideosink_set_property),
(gst_dfbvideosink_get_property),
(gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
(gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
(plugin_init):
* ext/directfb/dfbvideosink.h:
* ext/directfb/directfbvideosink.c:
* ext/directfb/directfbvideosink.h: Complete rewrite/port of
DirectFB video sink to 0.9. Handles reverse negotiation,
hardware
scaling, navigation, buffer allocation from video memory etc...
2005-11-02 12:43:03 +00:00
|
|
|
ext/directfb/Makefile
|
2005-09-01 19:12:44 +00:00
|
|
|
ext/faac/Makefile
|
2005-08-30 18:00:06 +00:00
|
|
|
ext/faad/Makefile
|
2005-11-25 19:58:19 +00:00
|
|
|
ext/wavpack/Makefile
|
2005-11-08 13:55:13 +00:00
|
|
|
ext/ivorbis/Makefile
|
2005-09-02 20:21:17 +00:00
|
|
|
ext/gsm/Makefile
|
2005-12-28 21:07:17 +00:00
|
|
|
ext/neon/Makefile
|
2005-11-29 02:55:18 +00:00
|
|
|
ext/libmms/Makefile
|
2005-12-14 20:54:06 +00:00
|
|
|
ext/dts/Makefile
|
2005-12-19 14:40:22 +00:00
|
|
|
ext/divx/Makefile
|
2005-11-22 15:09:28 +00:00
|
|
|
ext/musepack/Makefile
|
2005-09-19 21:47:54 +00:00
|
|
|
ext/sdl/Makefile
|
2006-01-28 04:39:18 +00:00
|
|
|
ext/swfdec/Makefile
|
2006-03-09 17:44:17 +00:00
|
|
|
ext/taglib/Makefile
|
2005-12-14 22:41:47 +00:00
|
|
|
ext/xvid/Makefile
|
2005-11-06 21:55:01 +00:00
|
|
|
docs/Makefile
|
|
|
|
docs/plugins/Makefile
|
|
|
|
docs/version.entities
|
2004-03-18 12:38:53 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
|
|
|
m4/Makefile
|
2001-12-17 18:37:01 +00:00
|
|
|
)
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2005-10-24 13:02:32 +00:00
|
|
|
echo "configure: *** Core plug-ins, always built:"
|
|
|
|
( for i in $GST_PLUGINS_ALL; do echo -e '\t'$i; done ) | sort
|
|
|
|
echo
|
|
|
|
echo -n "configure: *** Plug-ins relying on libraries that will be built:"
|
2003-09-25 21:40:35 +00:00
|
|
|
echo -e "$GST_PLUGINS_YES" | sort
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
2005-10-24 13:02:32 +00:00
|
|
|
echo -n "configure: *** Plug-ins relying on libraries that will NOT be built:"
|
2003-09-25 21:40:35 +00:00
|
|
|
echo -e "$GST_PLUGINS_NO" | sort
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
2002-06-14 16:44:33 +00:00
|
|
|
if test "x$BUILD_EXTERNAL" = "xno"; then
|
|
|
|
echo "configure: *** No external plug-ins will be built"
|
|
|
|
fi
|