2015-04-23 16:09:36 +00:00
|
|
|
AC_PREREQ(2.69)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl initialize autoconf
|
2003-12-09 15:59:48 +00:00
|
|
|
dnl when going to/from release please set the nano (fourth number) right !
|
|
|
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
2017-05-04 15:59:14 +00:00
|
|
|
AC_INIT(GStreamer libav, 1.13.0.1,
|
2006-04-01 15:41:27 +00:00
|
|
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
2012-04-12 17:41:52 +00:00
|
|
|
gst-libav)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_INIT
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl initialize automake
|
2015-04-23 16:09:36 +00:00
|
|
|
AM_INIT_AUTOMAKE([-Wno-portability 1.14 no-dist-gzip dist-xz tar-ustar subdir-objects])
|
2005-10-03 18:01:15 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl define PACKAGE_VERSION_* variables
|
|
|
|
AS_VERSION
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check if this is a release version
|
2010-03-24 10:53:46 +00:00
|
|
|
AS_NANO(GST_GIT="no", GST_GIT="yes")
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl can autoconf find the source ?
|
2012-09-10 15:53:54 +00:00
|
|
|
AC_CONFIG_SRCDIR([ext/libav/gstav.c])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl define the output header for config
|
2012-12-31 00:32:41 +00:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
2012-04-13 11:53:37 +00:00
|
|
|
AM_MAINTAINER_MODE([enable])
|
2004-02-26 18:21:44 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl sets host_* variables
|
|
|
|
AC_CANONICAL_HOST
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2015-04-23 16:09:36 +00:00
|
|
|
dnl use pretty build output by default
|
|
|
|
AM_SILENT_RULES([yes])
|
2010-02-26 14:48:43 +00:00
|
|
|
|
2003-12-09 15:59:48 +00:00
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
2012-04-04 12:48:25 +00:00
|
|
|
GST_API_VERSION=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl we override it here if we need to for the release candidate of new series
|
2012-04-04 12:48:25 +00:00
|
|
|
GST_API_VERSION=1.0
|
|
|
|
AC_SUBST(GST_API_VERSION)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
2017-05-20 10:02:39 +00:00
|
|
|
dnl *** Check for external $AS vs detected by AS_LIBTOOL
|
|
|
|
user_AS="$AS"
|
2011-01-27 21:22:02 +00:00
|
|
|
AG_GST_LIBTOOL_PREPARE
|
2017-05-04 15:59:14 +00:00
|
|
|
AS_LIBTOOL(GST, 1300, 0, 1300)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** required versions of GStreamer stuff ***
|
2017-05-04 15:59:14 +00:00
|
|
|
GST_REQ=1.13.0.1
|
|
|
|
GST_PBREQ=1.13.0.1
|
2012-09-11 12:27:55 +00:00
|
|
|
|
2012-08-08 15:32:16 +00:00
|
|
|
ORC_REQ=0.4.16
|
2012-09-11 12:27:55 +00:00
|
|
|
ORC_CHECK([$ORC_REQ])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** autotools stuff ****
|
|
|
|
|
|
|
|
dnl allow for different autotools
|
|
|
|
AS_AUTOTOOLS_ALTERNATE
|
2003-12-09 15:59:48 +00:00
|
|
|
|
|
|
|
dnl Add parameters for aclocal
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
|
|
|
|
|
|
|
dnl *** check for arguments to configure ***
|
|
|
|
|
2012-01-25 12:10:07 +00:00
|
|
|
AG_GST_ARG_DISABLE_FATAL_WARNINGS
|
2015-10-20 14:29:42 +00:00
|
|
|
AG_GST_ARG_ENABLE_EXTRA_CHECKS
|
2012-01-25 12:10:07 +00:00
|
|
|
|
2009-08-26 11:37:02 +00:00
|
|
|
AG_GST_ARG_WITH_PKG_CONFIG_PATH
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_ARG_WITH_PACKAGE_NAME
|
|
|
|
AG_GST_ARG_WITH_PACKAGE_ORIGIN
|
|
|
|
AG_GST_ARG_VALGRIND
|
2013-03-07 08:04:16 +00:00
|
|
|
AG_GST_ARG_GCOV
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** checks for platform ***
|
|
|
|
|
|
|
|
dnl * hardware/architecture *
|
|
|
|
|
|
|
|
dnl common/m4/gst-arch.m4
|
|
|
|
dnl check CPU type
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_ARCH
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** checks for programs ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl find a compiler
|
2003-12-09 15:59:48 +00:00
|
|
|
AC_PROG_CC
|
2010-08-04 17:41:06 +00:00
|
|
|
AC_PROG_CC_STDC
|
2010-08-04 17:32:51 +00:00
|
|
|
|
2008-01-10 12:43:35 +00:00
|
|
|
dnl check if the compiler supports '-c' and '-o' options
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
|
2006-05-09 16:15:39 +00:00
|
|
|
AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
|
|
|
|
AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check for documentation tools
|
2012-08-22 11:20:36 +00:00
|
|
|
GTK_DOC_CHECK([1.12])
|
2014-02-26 11:01:52 +00:00
|
|
|
AG_GST_PLUGIN_DOCS([1.12])
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for libraries ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2007-08-01 15:06:44 +00:00
|
|
|
dnl check for libm, for sin()
|
2012-04-13 11:53:37 +00:00
|
|
|
LT_LIB_M
|
2007-08-01 15:06:44 +00:00
|
|
|
AC_SUBST(LIBM)
|
|
|
|
|
2016-08-26 19:46:18 +00:00
|
|
|
dnl check for pthreads
|
|
|
|
AX_PTHREAD
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for header files ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check if we have ANSI C header files
|
|
|
|
AC_HEADER_STDC
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for types/defines ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for structures ***
|
|
|
|
|
|
|
|
dnl *** checks for compiler characteristics ***
|
|
|
|
|
|
|
|
dnl *** checks for library functions ***
|
|
|
|
|
|
|
|
dnl *** checks for dependancy libraries ***
|
|
|
|
|
2015-10-02 19:26:36 +00:00
|
|
|
dnl GLib is required
|
|
|
|
GLIB_REQ=2.40.0
|
|
|
|
AC_SUBST([GLIB_REQ])
|
|
|
|
AG_GST_GLIB_CHECK([$GLIB_REQ])
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl checks for gstreamer
|
2006-01-31 08:55:57 +00:00
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2012-04-04 12:48:25 +00:00
|
|
|
AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ])
|
|
|
|
AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ])
|
2012-10-25 11:51:41 +00:00
|
|
|
AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GST_PBREQ])
|
2012-04-04 12:48:25 +00:00
|
|
|
AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no)
|
2007-07-13 16:35:45 +00:00
|
|
|
AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
|
2005-06-10 23:55:38 +00:00
|
|
|
|
2006-05-18 23:06:31 +00:00
|
|
|
AC_MSG_NOTICE(Using GStreamer Core Plugins in $GST_PLUGINS_DIR)
|
|
|
|
AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
|
|
|
|
|
2015-12-21 11:34:11 +00:00
|
|
|
dnl Check for -Bsymbolic-functions linker flag used to avoid
|
|
|
|
dnl intra-library PLT jumps, if available.
|
|
|
|
AC_ARG_ENABLE(Bsymbolic,
|
|
|
|
[AS_HELP_STRING([--disable-Bsymbolic],[avoid linking with -Bsymbolic])],,
|
|
|
|
[SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
|
|
|
|
AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
|
|
|
|
LDFLAGS=-Wl,-Bsymbolic-functions
|
|
|
|
LIBS=
|
|
|
|
AC_TRY_LINK([], [return 0],
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
enable_Bsymbolic=yes,
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
enable_Bsymbolic=no)
|
|
|
|
LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** set variables based on configure arguments ***
|
|
|
|
|
|
|
|
dnl set location of plugin directory
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_SET_PLUGINDIR
|
2006-04-01 15:41:27 +00:00
|
|
|
|
2017-05-16 18:43:11 +00:00
|
|
|
dnl Detect if we are building static plugins, in which case we need to
|
|
|
|
dnl generates libav .la files and install the static libraries.
|
|
|
|
AM_CONDITIONAL(GST_PLUGIN_BUILD_STATIC, test "x$enable_static" = "xyes")
|
2012-10-24 10:18:56 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl define an ERROR_CFLAGS Makefile variable
|
2012-01-25 12:10:07 +00:00
|
|
|
AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [
|
2010-03-24 11:07:28 +00:00
|
|
|
-Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wundef
|
|
|
|
-Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition
|
2011-07-07 16:52:23 +00:00
|
|
|
-Winit-self -Wmissing-include-dirs -Waddress
|
2010-03-24 11:07:28 +00:00
|
|
|
-Waggregate-return -Wno-multichar -Wnested-externs ])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl define correct level for debugging messages
|
2010-03-24 10:53:46 +00:00
|
|
|
AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** finalize CFLAGS, LDFLAGS, LIBS ***
|
|
|
|
|
|
|
|
dnl Overview:
|
|
|
|
dnl GST_OPTION_CFLAGS: common flags for profiling, debugging, errors, ...
|
|
|
|
dnl GST_*: flags shared by built objects to link against GStreamer
|
|
|
|
dnl GST_ALL_LDFLAGS: linker flags shared by all
|
|
|
|
dnl GST_LIB_LDFLAGS: additional linker flags for all libaries
|
|
|
|
dnl GST_LT_LDFLAGS: library versioning of our libraries
|
|
|
|
dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
|
|
|
|
|
|
|
|
dnl GST_OPTION_CFLAGS
|
|
|
|
if test "x$USE_DEBUG" = xyes; then
|
|
|
|
PROFILE_CFLAGS="-g"
|
2003-12-09 15:59:48 +00:00
|
|
|
fi
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(PROFILE_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2010-03-24 10:53:46 +00:00
|
|
|
if test "x$GST_GIT" = "xyes"; then
|
2007-12-17 12:43:06 +00:00
|
|
|
DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
|
|
|
else
|
|
|
|
DEPRECATED_CFLAGS=""
|
|
|
|
fi
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(DEPRECATED_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
|
2010-03-10 21:10:08 +00:00
|
|
|
GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_OPTION_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl FIXME: do we want to rename to GST_ALL_* ?
|
|
|
|
dnl prefer internal headers to already installed ones
|
|
|
|
dnl also add builddir include for enumtypes and marshal
|
|
|
|
dnl add GST_OPTION_CFLAGS, but overridable
|
2012-09-17 16:53:29 +00:00
|
|
|
GST_CFLAGS="$GST_CFLAGS"
|
2010-06-14 11:28:41 +00:00
|
|
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GLIB_EXTRA_CFLAGS \$(GST_OPTION_CFLAGS)"
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_CFLAGS)
|
|
|
|
AC_SUBST(GST_LIBS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2007-05-24 08:51:52 +00:00
|
|
|
GST_ALL_LDFLAGS="-no-undefined"
|
2015-12-21 11:34:11 +00:00
|
|
|
if test "x${enable_Bsymbolic}" = "xyes"; then
|
|
|
|
GST_ALL_LDFLAGS="$GST_ALL_LDFLAGS -Wl,-Bsymbolic-functions"
|
|
|
|
fi
|
2007-05-24 08:51:52 +00:00
|
|
|
AC_SUBST(GST_ALL_LDFLAGS)
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl this really should only contain flags, not libs - they get added before
|
|
|
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
2012-10-24 10:18:56 +00:00
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_.*' $GST_ALL_LDFLAGS"
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
2006-01-31 08:55:57 +00:00
|
|
|
|
2007-05-17 15:46:17 +00:00
|
|
|
dnl Add MacOSX specific flags
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
case $host_os in
|
|
|
|
darwin*)
|
|
|
|
DARWIN_LDFLAGS="-Wl,-read_only_relocs,suppress"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
DARWIN_LDFLAGS=""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(DARWIN_LDFLAGS)
|
|
|
|
|
2015-07-01 20:40:02 +00:00
|
|
|
AC_ARG_ENABLE(gpl,
|
|
|
|
[AC_HELP_STRING([--enable-gpl], [build a GPL licensed gst-libav])])
|
|
|
|
AM_CONDITIONAL(GST_LIBAV_ENABLE_GPL, test "x$enable_gpl" = "xyes")
|
|
|
|
if test "x$enable_gpl" = "xyes"; then
|
|
|
|
AC_DEFINE([GST_LIBAV_ENABLE_GPL], [], [Defined if building a GPL-licensed version of gst-libav])
|
2011-07-05 18:35:46 +00:00
|
|
|
fi
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** configure external libs ***
|
2004-03-11 18:18:36 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
HAVE_LIBAV_UNINSTALLED=1
|
2006-12-14 23:31:45 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_ARG_WITH(system-libav,
|
|
|
|
[AC_HELP_STRING([--with-system-libav], [use system Libav libraries])])
|
2006-12-14 23:31:45 +00:00
|
|
|
|
2016-10-24 07:30:05 +00:00
|
|
|
HAVE_LZMA="no"
|
|
|
|
HAVE_BZ2="no"
|
2012-04-12 17:41:52 +00:00
|
|
|
if test "x$with_system_libav" = "xyes"; then
|
2017-02-08 14:10:52 +00:00
|
|
|
PKG_CHECK_MODULES(LIBAV, libavfilter libavformat libavcodec >= 57 libavutil)
|
2009-06-01 15:24:53 +00:00
|
|
|
PKG_CHECK_MODULES(SWSCALE, libswscale libavutil)
|
2006-12-14 23:31:45 +00:00
|
|
|
saved_CPPFLAGS="$CPPFLAGS"
|
2012-04-12 17:41:52 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS $LIBAV_CFLAGS"
|
2006-12-14 23:31:45 +00:00
|
|
|
AC_CHECK_HEADERS([avi.h])
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_DEFINE([LIBAV_SOURCE], ["system install"], [Describes where the Libav libraries come from.])
|
|
|
|
HAVE_LIBAV_UNINSTALLED=0
|
2012-04-12 17:46:24 +00:00
|
|
|
AC_MSG_NOTICE([Using system-installed libav code])
|
2015-11-24 07:45:38 +00:00
|
|
|
AC_MSG_CHECKING([whether libav is provided by FFmpeg])
|
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
]],[[
|
|
|
|
#if LIBAVCODEC_VERSION_MICRO >= 100
|
|
|
|
/* FFmpeg uses 100+ as its micro version */
|
|
|
|
#else
|
|
|
|
#error libav provider should be FFmpeg
|
|
|
|
#endif
|
|
|
|
]])], [is_ffmpeg=yes], [is_ffmpeg=no])
|
|
|
|
AC_MSG_RESULT([$is_ffmpeg])
|
2016-03-20 13:43:00 +00:00
|
|
|
CPPFLAGS="$saved_CPPFLAGS"
|
2015-11-24 07:45:38 +00:00
|
|
|
if test "$is_ffmpeg" = no; then
|
|
|
|
AC_MSG_ERROR([Uncompatible libavcodec found])
|
|
|
|
fi
|
2006-12-14 23:31:45 +00:00
|
|
|
else
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_NOTICE([Using local Libav snapshot])
|
2016-08-26 19:46:18 +00:00
|
|
|
|
2016-08-29 14:08:16 +00:00
|
|
|
dnl *** Check for bz2
|
|
|
|
save_LIBS=$LIBS
|
|
|
|
LIBS="$LIBS -lbz2"
|
|
|
|
AC_MSG_CHECKING([for BZ2_bzlibVersion in -lbz2])
|
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <bzlib.h>]], [[const char *version = BZ2_bzlibVersion ();]])],[HAVE_BZ2=yes],[HAVE_BZ2=no])
|
|
|
|
AC_MSG_RESULT($HAVE_BZ2)
|
|
|
|
LIBS=$save_LIBS
|
|
|
|
if test "x$HAVE_BZ2" = "xno"; then
|
|
|
|
AC_WARN([libbz2 not found, matroska demuxer will not be able to read bz2 tracks])
|
2017-05-20 13:27:52 +00:00
|
|
|
BZ2_LIBS=
|
|
|
|
else
|
|
|
|
BZ2_LIBS="-lbz2"
|
2016-08-29 14:08:16 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
dnl *** Check for lzma
|
|
|
|
save_LIBS=$LIBS
|
|
|
|
LIBS="$LIBS -llzma"
|
|
|
|
AC_MSG_CHECKING([for lzma_version_string in -llzma])
|
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <lzma.h>]], [[const char *version = lzma_version_string ();]])],[HAVE_LZMA=yes],[HAVE_LZMA=no])
|
|
|
|
AC_MSG_RESULT($HAVE_LZMA)
|
|
|
|
LIBS=$save_LIBS
|
|
|
|
if test "x$HAVE_LZMA" = "xno"; then
|
|
|
|
AC_WARN([lzma not found, tiff reader will not be able to read lzma files])
|
2017-05-20 13:27:52 +00:00
|
|
|
LZMA_LIBS=
|
|
|
|
else
|
|
|
|
LZMA_LIBS="-llzma"
|
2016-08-29 14:08:16 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
dnl libgstlibav.la: include dirs
|
2012-09-10 15:08:00 +00:00
|
|
|
LIBAV_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
|
2012-09-11 18:40:07 +00:00
|
|
|
-I \$(top_builddir)/gst-libs/ext/libav \
|
2008-01-09 15:46:18 +00:00
|
|
|
-Wno-deprecated-declarations"
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2017-05-12 01:17:21 +00:00
|
|
|
LIBAV_DEPS="\$(top_builddir)/gst-libs/ext/libav/libavfilter/libavfilter.a \
|
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavformat/libavformat.a \
|
2012-09-13 11:10:05 +00:00
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavcodec/libavcodec.a \
|
2015-06-30 10:05:46 +00:00
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libswresample/libswresample.a \
|
2012-09-13 11:10:05 +00:00
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
|
2017-05-11 01:20:05 +00:00
|
|
|
|
2017-05-12 01:17:21 +00:00
|
|
|
LIBAV_LIBS="$ac_pwd/gst-libs/ext/libavfilter.la \
|
|
|
|
$ac_pwd/gst-libs/ext/libavformat.la \
|
|
|
|
$ac_pwd/gst-libs/ext/libavcodec.la \
|
|
|
|
$ac_pwd/gst-libs/ext/libswresample.la \
|
|
|
|
$ac_pwd/gst-libs/ext/libavutil.la"
|
2007-12-17 12:43:06 +00:00
|
|
|
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
dnl
|
2012-09-10 15:08:00 +00:00
|
|
|
SWSCALE_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
|
2012-09-11 18:40:07 +00:00
|
|
|
-I \$(top_builddir)/gst-libs/ext/libav \
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
-Wno-deprecated-declarations"
|
|
|
|
|
2012-09-13 11:10:05 +00:00
|
|
|
SWSCALE_DEPS="\$(top_builddir)/gst-libs/ext/libav/libswscale/libswscale.a \
|
2011-04-19 17:27:40 +00:00
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
|
2012-09-13 11:10:05 +00:00
|
|
|
if test "x$enable_static_plugins" = xyes; then
|
|
|
|
dnl with static linking we can't use the .a archive directly as they would
|
|
|
|
dnl be included in the final libgstswscale.a as a file and won't be usable.
|
|
|
|
dnl libav*.a must be copied to the final destination too
|
2015-07-28 08:19:52 +00:00
|
|
|
SWSCALE_LIBS="-lswscale -lavutil"
|
2012-09-13 11:10:05 +00:00
|
|
|
else
|
|
|
|
dnl libgstswscale.la: libs to statically link to
|
|
|
|
SWSCALE_LIBS="$SWSCALE_DEPS"
|
|
|
|
fi
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
LIBAV_SUBDIRS=gst-libs
|
2006-12-14 23:31:45 +00:00
|
|
|
AC_DEFINE(HAVE_AVI_H)
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_DEFINE([LIBAV_SOURCE], ["local snapshot"], [Describes where the Libav libraries come from.])
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2016-08-26 19:46:18 +00:00
|
|
|
AC_ARG_WITH(libav-extra-configure,
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_HELP_STRING([--with-libav-extra-configure="xxx"],
|
|
|
|
[extra configure options for internal libav ./configure script]),,
|
|
|
|
with_libav=no)
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2009-04-19 01:34:50 +00:00
|
|
|
# basic arguments
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="--prefix=$prefix"
|
2009-04-19 01:34:50 +00:00
|
|
|
|
2010-06-16 09:46:02 +00:00
|
|
|
# Enable pic and static so that we get .a files, but with PIC code.
|
2015-06-30 10:05:46 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args \
|
|
|
|
--enable-static --enable-pic \
|
2015-11-04 20:16:18 +00:00
|
|
|
--disable-avdevice --disable-postproc \
|
2015-06-30 10:05:46 +00:00
|
|
|
--disable-programs --disable-ffserver --disable-ffplay --disable-ffprobe --disable-ffmpeg \
|
2015-07-07 14:52:49 +00:00
|
|
|
--disable-encoder=flac --disable-protocols --disable-devices \
|
|
|
|
--disable-network --disable-hwaccels --disable-dxva2 --disable-vdpau \
|
2016-04-20 12:27:45 +00:00
|
|
|
--disable-filters --enable-filter=yadif --disable-doc --disable-vda --disable-d3d11va --disable-dxva2 \
|
2016-08-16 18:11:35 +00:00
|
|
|
--disable-audiotoolbox --disable-videotoolbox --disable-vaapi --disable-crystalhd \
|
2016-07-01 07:29:03 +00:00
|
|
|
--disable-mediacodec --disable-nvenc --disable-mmal --disable-omx \
|
|
|
|
--disable-omx-rpi --disable-cuda --disable-cuvid --disable-libmfx \
|
|
|
|
--disable-libnpp --disable-iconv --disable-jni --enable-optimizations"
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2015-07-01 20:40:02 +00:00
|
|
|
if test "x$enable_gpl" == "xyes"; then
|
2012-09-10 15:18:30 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-gpl"
|
2011-07-05 18:35:46 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
# if we are cross-compiling, tell libav so
|
2012-10-23 08:21:52 +00:00
|
|
|
case $host in
|
|
|
|
*android*)
|
|
|
|
target_os=linux
|
|
|
|
;;
|
2013-09-23 13:08:18 +00:00
|
|
|
*darwin*)
|
|
|
|
target_os=darwin
|
|
|
|
;;
|
2012-10-23 08:21:52 +00:00
|
|
|
*)
|
2016-11-10 14:42:19 +00:00
|
|
|
target_os=`echo $host_os | sed 's/-gnu.*//'`
|
2012-10-23 08:21:52 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-10-08 11:24:26 +00:00
|
|
|
if test "x$cross_compiling" = xyes; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-cross-compile \
|
2011-06-05 02:10:15 +00:00
|
|
|
--target-os=$target_os --arch=$host_cpu --cross-prefix=$host_alias-"
|
2008-10-08 11:24:26 +00:00
|
|
|
fi
|
|
|
|
|
2008-03-17 14:09:54 +00:00
|
|
|
case $host_os in
|
2008-10-08 11:24:26 +00:00
|
|
|
mingw32*)
|
|
|
|
WIN32_LIBS="-lws2_32"
|
|
|
|
;;
|
2008-03-17 14:09:54 +00:00
|
|
|
*)
|
2008-10-08 11:24:26 +00:00
|
|
|
WIN32_LIBS=
|
2008-03-17 14:09:54 +00:00
|
|
|
;;
|
|
|
|
esac
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2012-12-21 13:28:57 +00:00
|
|
|
if test x"$AR" != x; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --ar=\\\"\\\$AR\\\""
|
|
|
|
fi
|
|
|
|
|
2017-05-20 10:02:39 +00:00
|
|
|
if test x"$orig_AS" != x; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$orig_AS\\\""
|
|
|
|
elif test x"$CC" != x; then
|
|
|
|
dnl No external $AS - try $CC for the libav assembler
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$CC\\\""
|
2012-12-21 13:28:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$CC" != x; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --cc=\\\"\\\$CC\\\""
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$LD" != x; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --ld=\\\"\\\$CC\\\""
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$NM" != x; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args --nm=\\\"\\\$NM\\\""
|
|
|
|
fi
|
|
|
|
|
2009-04-19 01:34:50 +00:00
|
|
|
dnl checks for extra enable/disable flags
|
2013-01-14 16:00:17 +00:00
|
|
|
LIBAV_OPTS=`cd $srcdir/gst-libs/ext/libav && ./configure --help`
|
2012-04-12 17:41:52 +00:00
|
|
|
# Let's check if we can disable the building of the libav binary
|
|
|
|
can_disable=`echo "$LIBAV_OPTS" | grep 'disable-ffmpeg'`
|
2010-01-22 11:58:13 +00:00
|
|
|
if test "$can_disable" != ""; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --disable-ffmpeg"
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
dnl check if libswscale needs enabling explicitly
|
2012-04-12 17:41:52 +00:00
|
|
|
can_enable=`echo "$LIBAV_OPTS" | grep 'enable-swscale'`
|
2010-01-22 11:58:13 +00:00
|
|
|
if test "$can_enable" != ""; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-swscale"
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
# append extra configure options to emblibav_configure_args if needed
|
|
|
|
if test "x$with_libav_extra_configure" != "xno"; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args $with_libav_extra_configure"
|
2008-10-08 11:24:26 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_SUBST(LIBAV_CO_DIR)
|
|
|
|
AC_SUBST(LIBAV_SVN)
|
|
|
|
AC_SUBST(LIBAV_REVISION)
|
|
|
|
AC_SUBST(LIBAV_EXTERNALS_REVISION)
|
|
|
|
AC_CONFIG_COMMANDS([configure-embedded-libav],
|
|
|
|
[echo "Configuring included Libav instance with args $emblibav_configure_args"
|
2009-04-19 01:34:50 +00:00
|
|
|
origdir=`pwd`
|
|
|
|
dnl Don't put path on the configure call when not needed, as FFmpeg's configure relies on it
|
|
|
|
dnl to detect out-of-tree builds
|
|
|
|
if test -z "$srcdir" -o "$srcdir" = .; then
|
|
|
|
confcmd=./configure
|
2017-05-20 10:02:39 +00:00
|
|
|
gasppdir=../gas-preprocessor
|
2009-04-19 01:34:50 +00:00
|
|
|
else
|
2011-01-27 21:25:13 +00:00
|
|
|
confcmd="$ac_abs_top_srcdir"/gst-libs/ext/libav/configure
|
2017-05-20 10:02:39 +00:00
|
|
|
gasppdir="$ac_abs_top_srcdir"/gst-libs/ext/gas-preprocessor
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
|
2011-04-19 17:27:40 +00:00
|
|
|
AS_MKDIR_P(["$ac_top_build_prefix"gst-libs/ext/libav])
|
2017-05-20 10:02:39 +00:00
|
|
|
oldPATH="$PATH"
|
|
|
|
PATH="$gasppdir:$PATH"
|
2011-04-19 17:27:40 +00:00
|
|
|
cd "$ac_top_build_prefix"gst-libs/ext/libav &&
|
2012-04-12 17:41:52 +00:00
|
|
|
eval "$confcmd $emblibav_configure_args" ||
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_ERROR([Failed to configure embedded Libav tree])
|
2017-05-20 10:02:39 +00:00
|
|
|
PATH="$oldPATH"
|
2009-04-19 01:34:50 +00:00
|
|
|
cd "$origdir"
|
|
|
|
],
|
2012-04-12 17:41:52 +00:00
|
|
|
[emblibav_configure_args="$emblibav_configure_args"])
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_NOTICE([Using included Libav code])
|
2006-12-14 23:31:45 +00:00
|
|
|
fi
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2016-08-29 14:08:16 +00:00
|
|
|
AM_CONDITIONAL(HAVE_BZ2, test "x$HAVE_BZ2" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_LZMA, test "x$HAVE_LZMA" = "xyes")
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_SUBST(LIBAV_CFLAGS)
|
2012-09-13 11:10:05 +00:00
|
|
|
AC_SUBST(LIBAV_DEPS)
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_SUBST(LIBAV_LIBS)
|
|
|
|
AC_SUBST(LIBAV_SUBDIRS)
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
AC_SUBST(SWSCALE_CFLAGS)
|
2012-09-13 11:10:05 +00:00
|
|
|
AC_SUBST(SWSCALE_DEPS)
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
AC_SUBST(SWSCALE_LIBS)
|
2008-10-08 11:24:26 +00:00
|
|
|
AC_SUBST(WIN32_LIBS)
|
2017-05-20 13:27:52 +00:00
|
|
|
AC_SUBST(BZ2_LIBS)
|
|
|
|
AC_SUBST(LZMA_LIBS)
|
2016-08-26 19:46:18 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
if test x$HAVE_LIBAV_UNINSTALLED = x1; then
|
|
|
|
AC_DEFINE(HAVE_LIBAV_UNINSTALLED, [], [Defined if building against uninstalled Libav source])
|
2008-05-13 15:07:25 +00:00
|
|
|
fi
|
2012-04-12 17:41:52 +00:00
|
|
|
AM_CONDITIONAL(HAVE_LIBAV_UNINSTALLED, test x$HAVE_LIBAV_UNINSTALLED = x1)
|
2007-01-05 16:04:12 +00:00
|
|
|
|
2003-12-09 15:59:48 +00:00
|
|
|
AC_CONFIG_FILES(
|
|
|
|
Makefile
|
2009-02-22 20:04:07 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
2003-12-09 15:59:48 +00:00
|
|
|
ext/Makefile
|
2012-09-10 15:53:54 +00:00
|
|
|
ext/libav/Makefile
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
ext/libswscale/Makefile
|
2003-12-09 15:59:48 +00:00
|
|
|
gst-libs/Makefile
|
|
|
|
gst-libs/ext/Makefile
|
2006-01-31 08:55:57 +00:00
|
|
|
docs/Makefile
|
2014-02-26 10:52:07 +00:00
|
|
|
docs/plugins/Makefile
|
2006-02-01 19:22:04 +00:00
|
|
|
docs/version.entities
|
2006-05-09 16:15:39 +00:00
|
|
|
tests/Makefile
|
|
|
|
tests/check/Makefile
|
2009-07-28 22:21:11 +00:00
|
|
|
tests/files/Makefile
|
2013-02-28 19:34:02 +00:00
|
|
|
pkgconfig/Makefile
|
|
|
|
pkgconfig/gstreamer-plugins-libav-uninstalled.pc
|
2003-12-09 15:59:48 +00:00
|
|
|
)
|
|
|
|
AC_OUTPUT
|
2007-10-12 14:44:55 +00:00
|
|
|
|
2010-06-14 12:38:44 +00:00
|
|
|
ORC_OUTPUT
|