Back to development
[platform/upstream/gst-libav.git] / configure.ac
1 AC_PREREQ(2.69)
2
3 dnl initialize autoconf
4 dnl when going to/from release please set the nano (fourth number) right !
5 dnl releases only do Wall, cvs and prerelease does Werror too
6 AC_INIT(GStreamer libav, 1.9.0.1,
7     http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
8     gst-libav)
9
10 AG_GST_INIT
11
12 dnl initialize automake
13 AM_INIT_AUTOMAKE([-Wno-portability 1.14 no-dist-gzip dist-xz tar-ustar subdir-objects])
14
15 dnl define PACKAGE_VERSION_* variables
16 AS_VERSION
17
18 dnl check if this is a release version
19 AS_NANO(GST_GIT="no", GST_GIT="yes")
20
21 dnl can autoconf find the source ?
22 AC_CONFIG_SRCDIR([ext/libav/gstav.c])
23
24 dnl define the output header for config
25 AC_CONFIG_HEADERS([config.h])
26
27 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
28 AM_MAINTAINER_MODE([enable])
29
30 dnl sets host_* variables
31 AC_CANONICAL_HOST
32
33 dnl use pretty build output by default
34 AM_SILENT_RULES([yes])
35
36 dnl our libraries and install dirs use major.minor as a version
37 GST_API_VERSION=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
38 dnl we override it here if we need to for the release candidate of new series
39 GST_API_VERSION=1.0
40 AC_SUBST(GST_API_VERSION)
41
42 AG_GST_LIBTOOL_PREPARE
43 AS_LIBTOOL(GST, 900, 0, 900)
44
45 dnl *** required versions of GStreamer stuff ***
46 GST_REQ=1.9.0.1
47 GST_PBREQ=1.9.0.1
48
49 ORC_REQ=0.4.16
50 ORC_CHECK([$ORC_REQ])
51
52 dnl *** autotools stuff ****
53
54 dnl allow for different autotools
55 AS_AUTOTOOLS_ALTERNATE
56
57 dnl Add parameters for aclocal
58 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
59
60 dnl *** check for arguments to configure ***
61
62 AG_GST_ARG_DISABLE_FATAL_WARNINGS
63 AG_GST_ARG_ENABLE_EXTRA_CHECKS
64
65 AG_GST_ARG_WITH_PKG_CONFIG_PATH
66 AG_GST_ARG_WITH_PACKAGE_NAME
67 AG_GST_ARG_WITH_PACKAGE_ORIGIN
68 AG_GST_ARG_VALGRIND
69 AG_GST_ARG_GCOV
70
71 dnl *** checks for platform ***
72
73 dnl * hardware/architecture *
74
75 dnl common/m4/gst-arch.m4
76 dnl check CPU type
77 AG_GST_ARCH
78
79 dnl *** checks for programs ***
80
81 dnl find a compiler
82 AC_PROG_CC
83 AC_PROG_CC_STDC
84
85 dnl check if the compiler supports '-c' and '-o' options
86 AM_PROG_CC_C_O
87
88 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
89 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
90
91 dnl check for documentation tools
92 GTK_DOC_CHECK([1.12])
93 AG_GST_PLUGIN_DOCS([1.12])
94
95 dnl *** checks for libraries ***
96
97 dnl check for libm, for sin()
98 LT_LIB_M
99 AC_SUBST(LIBM)
100
101 dnl *** checks for header files ***
102
103 dnl check if we have ANSI C header files
104 AC_HEADER_STDC
105
106 dnl *** checks for types/defines ***
107
108 dnl *** checks for structures ***
109
110 dnl *** checks for compiler characteristics ***
111
112 dnl *** checks for library functions ***
113
114 dnl *** checks for dependancy libraries ***
115
116 dnl GLib is required
117 GLIB_REQ=2.40.0
118 AC_SUBST([GLIB_REQ])
119 AG_GST_GLIB_CHECK([$GLIB_REQ])
120
121 dnl checks for gstreamer
122 dnl uninstalled is selected preferentially -- see pkg-config(1)
123 AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ])
124 AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ])
125 AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GST_PBREQ])
126 AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no)
127 AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
128
129 AC_MSG_NOTICE(Using GStreamer Core Plugins in $GST_PLUGINS_DIR)
130 AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
131
132 dnl Check for -Bsymbolic-functions linker flag used to avoid
133 dnl intra-library PLT jumps, if available.
134 AC_ARG_ENABLE(Bsymbolic,
135               [AS_HELP_STRING([--disable-Bsymbolic],[avoid linking with -Bsymbolic])],,
136               [SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
137                AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
138                LDFLAGS=-Wl,-Bsymbolic-functions
139                LIBS=
140                AC_TRY_LINK([], [return 0],
141                            AC_MSG_RESULT(yes)
142                            enable_Bsymbolic=yes,
143                            AC_MSG_RESULT(no)
144                            enable_Bsymbolic=no)
145                LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
146
147 dnl *** set variables based on configure arguments ***
148
149 dnl set location of plugin directory
150 AG_GST_SET_PLUGINDIR
151
152 dnl build static plugins or not
153 AC_MSG_CHECKING([whether to build static plugins or not])
154 AC_ARG_ENABLE(
155   static-plugins,
156   AC_HELP_STRING(
157     [--enable-static-plugins],
158     [build static plugins @<:@default=no@:>@]),
159   [AS_CASE(
160     [$enableval], [no], [], [yes], [],
161     [AC_MSG_ERROR([bad value "$enableval" for --enable-static-plugins])])],
162   [enable_static_plugins=no])
163 AC_MSG_RESULT([$enable_static_plugins])
164 if test "x$enable_static_plugins" = xyes; then
165   AC_DEFINE(GST_PLUGIN_BUILD_STATIC, 1,
166     [Define if static plugins should be built])
167   GST_PLUGIN_LIBTOOLFLAGS=""
168 else
169   GST_PLUGIN_LIBTOOLFLAGS="--tag=disable-static"
170 fi
171 AC_SUBST(GST_PLUGIN_LIBTOOLFLAGS)
172 AM_CONDITIONAL(GST_PLUGIN_BUILD_STATIC, test "x$enable_static_plugins" = "xyes")
173
174 dnl define an ERROR_CFLAGS Makefile variable
175 AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [
176     -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wundef
177     -Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition
178     -Winit-self -Wmissing-include-dirs -Waddress
179     -Waggregate-return -Wno-multichar -Wnested-externs ])
180
181 dnl define correct level for debugging messages
182 AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
183
184 dnl *** finalize CFLAGS, LDFLAGS, LIBS ***
185
186 dnl Overview:
187 dnl GST_OPTION_CFLAGS:  common flags for profiling, debugging, errors, ...
188 dnl GST_*:              flags shared by built objects to link against GStreamer
189 dnl GST_ALL_LDFLAGS:    linker flags shared by all
190 dnl GST_LIB_LDFLAGS:    additional linker flags for all libaries
191 dnl GST_LT_LDFLAGS:     library versioning of our libraries
192 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
193
194 dnl GST_OPTION_CFLAGS
195 if test "x$USE_DEBUG" = xyes; then
196    PROFILE_CFLAGS="-g"
197 fi
198 AC_SUBST(PROFILE_CFLAGS)
199
200 if test "x$GST_GIT" = "xyes"; then
201   DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
202 else
203   DEPRECATED_CFLAGS=""
204 fi
205 AC_SUBST(DEPRECATED_CFLAGS)
206
207 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
208 GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
209
210 AC_SUBST(GST_OPTION_CFLAGS)
211
212 dnl FIXME: do we want to rename to GST_ALL_* ?
213 dnl prefer internal headers to already installed ones
214 dnl also add builddir include for enumtypes and marshal
215 dnl add GST_OPTION_CFLAGS, but overridable
216 GST_CFLAGS="$GST_CFLAGS"
217 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GLIB_EXTRA_CFLAGS \$(GST_OPTION_CFLAGS)"
218 AC_SUBST(GST_CFLAGS)
219 AC_SUBST(GST_LIBS)
220
221 GST_ALL_LDFLAGS="-no-undefined"
222 if test "x${enable_Bsymbolic}" = "xyes"; then
223   GST_ALL_LDFLAGS="$GST_ALL_LDFLAGS -Wl,-Bsymbolic-functions"
224 fi
225 AC_SUBST(GST_ALL_LDFLAGS)
226
227 dnl this really should only contain flags, not libs - they get added before
228 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
229 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_.*' $GST_ALL_LDFLAGS"
230 AC_SUBST(GST_PLUGIN_LDFLAGS)
231
232 dnl Add MacOSX specific flags
233 AC_CANONICAL_HOST
234 case $host_os in
235      darwin*)
236         DARWIN_LDFLAGS="-Wl,-read_only_relocs,suppress"
237         ;;
238      *)
239         DARWIN_LDFLAGS=""
240         ;;
241 esac
242 AC_SUBST(DARWIN_LDFLAGS)
243
244 dnl *** Check for bz2
245 save_LIBS=$LIBS
246 LIBS="$LIBS -lbz2"
247 AC_MSG_CHECKING([for BZ2_bzlibVersion in -lbz2])
248 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <bzlib.h>]], [[const char *version = BZ2_bzlibVersion ();]])],[HAVE_BZ2=yes],[HAVE_BZ2=no])
249 AC_MSG_RESULT($HAVE_BZ2)
250 LIBS=$save_LIBS
251 AM_CONDITIONAL(HAVE_BZ2, test "x$HAVE_BZ2" = "xyes")
252 if test "x$HAVE_BZ2" = "xno"; then
253   AC_WARN([libbz2 not found, matroska demuxer will not be able to read bz2 tracks])
254 fi
255
256 dnl *** Check for lzma
257 save_LIBS=$LIBS
258 LIBS="$LIBS -llzma"
259 AC_MSG_CHECKING([for lzma_version_string in -llzma])
260 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <lzma.h>]], [[const char *version = lzma_version_string ();]])],[HAVE_LZMA=yes],[HAVE_LZMA=no])
261 AC_MSG_RESULT($HAVE_LZMA)
262 LIBS=$save_LIBS
263 AM_CONDITIONAL(HAVE_LZMA, test "x$HAVE_LZMA" = "xyes")
264 if test "x$HAVE_LZMA" = "xno"; then
265     AC_WARN([lzma not found, tiff reader will not be able to read lzma files])
266 fi
267
268 AC_ARG_ENABLE(gpl,
269               [AC_HELP_STRING([--enable-gpl], [build a GPL licensed gst-libav])])
270 AM_CONDITIONAL(GST_LIBAV_ENABLE_GPL, test "x$enable_gpl" = "xyes")
271 if test "x$enable_gpl" = "xyes"; then
272   AC_DEFINE([GST_LIBAV_ENABLE_GPL], [], [Defined if building a GPL-licensed version of gst-libav])
273 fi
274
275 dnl *** configure external libs ***
276
277 HAVE_LIBAV_UNINSTALLED=1
278
279 AC_ARG_WITH(system-libav,
280             [AC_HELP_STRING([--with-system-libav], [use system Libav libraries])])
281
282 if test "x$with_system_libav" = "xyes"; then
283   PKG_CHECK_MODULES(LIBAV, libavfilter libavformat libavcodec libavutil)
284   PKG_CHECK_MODULES(SWSCALE, libswscale libavutil)
285   saved_CPPFLAGS="$CPPFLAGS"
286   CPPFLAGS="$CPPFLAGS $LIBAV_CFLAGS"
287   AC_CHECK_HEADERS([avi.h])
288   AC_DEFINE([LIBAV_SOURCE], ["system install"], [Describes where the Libav libraries come from.])
289   HAVE_LIBAV_UNINSTALLED=0
290   AC_MSG_NOTICE([Using system-installed libav code])
291   AC_MSG_CHECKING([whether libav is provided by FFmpeg])
292   AC_LINK_IFELSE([AC_LANG_PROGRAM([[
293     #include <libavcodec/avcodec.h>
294     ]],[[
295         #if LIBAVCODEC_VERSION_MICRO >= 100
296         /* FFmpeg uses 100+ as its micro version */
297         #else
298         #error libav provider should be FFmpeg
299         #endif
300     ]])], [is_ffmpeg=yes], [is_ffmpeg=no])
301   AC_MSG_RESULT([$is_ffmpeg])
302   CPPFLAGS="$saved_CPPFLAGS"
303   if test "$is_ffmpeg" = no; then
304     AC_MSG_ERROR([Uncompatible libavcodec found])
305   fi
306 else
307   AC_MSG_NOTICE([Using local Libav snapshot])
308   
309   dnl libgstlibav.la: include dirs
310   LIBAV_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
311                 -I \$(top_builddir)/gst-libs/ext/libav \
312                  -Wno-deprecated-declarations"
313
314   LIBAV_DEPS="\$(top_builddir)/gst-libs/ext/libav/libavformat/libavformat.a \
315               \$(top_builddir)/gst-libs/ext/libav/libavcodec/libavcodec.a \
316               \$(top_builddir)/gst-libs/ext/libav/libavfilter/libavfilter.a \
317               \$(top_builddir)/gst-libs/ext/libav/libswresample/libswresample.a \
318               \$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
319   if test "x$enable_static_plugins" = xyes; then
320       dnl with static linking we can't use the .a archive directly as they would
321       dnl be included in the final libgstlibav.a as a file and won't be usable.
322       dnl libav*.a must be copied to the final destination too
323       LIBAV_LIBS="-lavformat -lavcodec -lswresample -lavutil -lavfilter"
324   else
325       dnl libgstlibav.la: libs to statically link to
326       LIBAV_LIBS="$LIBAV_DEPS"
327   fi
328
329   dnl
330   SWSCALE_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
331                   -I \$(top_builddir)/gst-libs/ext/libav \
332                   -Wno-deprecated-declarations"
333
334   SWSCALE_DEPS="\$(top_builddir)/gst-libs/ext/libav/libswscale/libswscale.a \
335                 \$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
336   if test "x$enable_static_plugins" = xyes; then
337       dnl with static linking we can't use the .a archive directly as they would
338       dnl be included in the final libgstswscale.a as a file and won't be usable.
339       dnl libav*.a must be copied to the final destination too
340       SWSCALE_LIBS="-lswscale -lavutil"
341   else
342       dnl libgstswscale.la: libs to statically link to
343       SWSCALE_LIBS="$SWSCALE_DEPS"
344   fi
345
346   LIBAV_SUBDIRS=gst-libs
347   AC_DEFINE(HAVE_AVI_H)
348   AC_DEFINE([LIBAV_SOURCE], ["local snapshot"], [Describes where the Libav libraries come from.])
349
350   AC_ARG_WITH(libav-extra-configure, 
351       AC_HELP_STRING([--with-libav-extra-configure="xxx"],
352       [extra configure options for internal libav ./configure script]),,
353       with_libav=no)
354
355   # basic arguments
356   emblibav_configure_args="--prefix=$prefix"
357
358   # Enable pic and static so that we get .a files, but with PIC code.
359   emblibav_configure_args="$emblibav_configure_args \
360         --enable-static --enable-pic \
361         --disable-avdevice --disable-postproc \
362         --disable-programs --disable-ffserver --disable-ffplay --disable-ffprobe --disable-ffmpeg \
363         --disable-encoder=flac --disable-protocols --disable-devices \
364         --disable-network --disable-hwaccels --disable-dxva2 --disable-vdpau \
365         --disable-filters --disable-doc --disable-vda --disable-d3d11va --disable-dxva2 \
366         --disable-iconv --enable-optimizations"
367
368   if test "x$enable_gpl" == "xyes"; then
369     emblibav_configure_args="$emblibav_configure_args --enable-gpl"
370   fi
371
372   # if we are cross-compiling, tell libav so
373   case $host in
374       *android*)
375         target_os=linux
376       ;;
377       *darwin*)
378         target_os=darwin
379       ;;
380       *)
381         target_os=`echo $host_os | sed 's/-gnu//'`
382       ;;
383   esac
384
385   if test "x$cross_compiling" = xyes; then
386     emblibav_configure_args="$emblibav_configure_args --enable-cross-compile \
387         --target-os=$target_os --arch=$host_cpu --cross-prefix=$host_alias-"
388   fi
389
390   case $host_os in
391     mingw32*)
392       emblibav_configure_args="$emblibav_configure_args --enable-memalign-hack"
393       WIN32_LIBS="-lws2_32"
394       ;;
395     *)
396       WIN32_LIBS=
397       ;;
398   esac
399
400   if test x"$AR" != x; then
401     emblibav_configure_args="$emblibav_configure_args --ar=\\\"\\\$AR\\\""
402   fi
403
404   if test x"$AS" != x; then
405     emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$CC\\\""
406   fi
407
408   if test x"$CC" != x; then
409     emblibav_configure_args="$emblibav_configure_args --cc=\\\"\\\$CC\\\""
410   fi
411
412   if test x"$LD" != x; then
413     emblibav_configure_args="$emblibav_configure_args --ld=\\\"\\\$CC\\\""
414   fi
415
416   if test x"$NM" != x; then
417     emblibav_configure_args="$emblibav_configure_args --nm=\\\"\\\$NM\\\""
418   fi
419
420   dnl checks for extra enable/disable flags
421   LIBAV_OPTS=`cd $srcdir/gst-libs/ext/libav && ./configure --help`
422   # Let's check if we can disable the building of the libav binary
423   can_disable=`echo "$LIBAV_OPTS" | grep 'disable-ffmpeg'`
424   if test "$can_disable" != ""; then
425     emblibav_configure_args="$emblibav_configure_args --disable-ffmpeg"
426   fi
427   dnl check if libswscale needs enabling explicitly
428   can_enable=`echo "$LIBAV_OPTS" | grep 'enable-swscale'`
429   if test "$can_enable" != ""; then
430     emblibav_configure_args="$emblibav_configure_args --enable-swscale"
431   fi
432
433   # append extra configure options to emblibav_configure_args if needed
434   if test "x$with_libav_extra_configure" != "xno"; then
435     emblibav_configure_args="$emblibav_configure_args $with_libav_extra_configure"
436   fi
437
438   AC_SUBST(LIBAV_CO_DIR)
439   AC_SUBST(LIBAV_SVN)
440   AC_SUBST(LIBAV_REVISION)
441   AC_SUBST(LIBAV_EXTERNALS_REVISION)
442   AC_CONFIG_COMMANDS([configure-embedded-libav],
443     [echo "Configuring included Libav instance with args $emblibav_configure_args"
444      origdir=`pwd`
445      dnl Don't put path on the configure call when not needed, as FFmpeg's configure relies on it
446      dnl to detect out-of-tree builds
447      if test -z "$srcdir" -o "$srcdir" = .; then
448        confcmd=./configure
449      else
450        confcmd="$ac_abs_top_srcdir"/gst-libs/ext/libav/configure
451      fi
452
453      AS_MKDIR_P(["$ac_top_build_prefix"gst-libs/ext/libav])
454      cd "$ac_top_build_prefix"gst-libs/ext/libav &&
455          eval "$confcmd $emblibav_configure_args" ||
456          AC_MSG_ERROR([Failed to configure embedded Libav tree])
457      cd "$origdir"
458     ],
459     [emblibav_configure_args="$emblibav_configure_args"])
460   AC_MSG_NOTICE([Using included Libav code])
461 fi
462
463 AC_SUBST(LIBAV_CFLAGS)
464 AC_SUBST(LIBAV_DEPS)
465 AC_SUBST(LIBAV_LIBS)
466 AC_SUBST(LIBAV_SUBDIRS)
467 AC_SUBST(SWSCALE_CFLAGS)
468 AC_SUBST(SWSCALE_DEPS)
469 AC_SUBST(SWSCALE_LIBS)
470 AC_SUBST(WIN32_LIBS)
471  
472 if test x$HAVE_LIBAV_UNINSTALLED = x1; then
473   AC_DEFINE(HAVE_LIBAV_UNINSTALLED, [], [Defined if building against uninstalled Libav source])
474 fi
475 AM_CONDITIONAL(HAVE_LIBAV_UNINSTALLED, test x$HAVE_LIBAV_UNINSTALLED = x1)
476
477 AC_CONFIG_FILES(
478 Makefile
479 common/Makefile
480 common/m4/Makefile
481 gst-libav.spec
482 ext/Makefile
483 ext/libav/Makefile
484 ext/libswscale/Makefile
485 gst-libs/Makefile
486 gst-libs/ext/Makefile
487 docs/Makefile
488 docs/plugins/Makefile
489 docs/version.entities
490 tests/Makefile
491 tests/check/Makefile
492 tests/files/Makefile
493 pkgconfig/Makefile
494 pkgconfig/gstreamer-plugins-libav-uninstalled.pc
495 )
496 AC_OUTPUT
497
498 ORC_OUTPUT