~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
dnl initialize autoconf
4
4
dnl when going to/from release please set the nano (fourth number) right !
5
5
dnl releases only do Wall, cvs and prerelease does Werror too
6
 
AC_INIT(GStreamer libav, 1.0.10,
 
6
AC_INIT(GStreamer libav, 1.2.0,
7
7
    http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
8
8
    gst-libav)
9
9
 
10
10
AG_GST_INIT
11
11
 
12
12
dnl initialize automake
13
 
AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar])
 
13
AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar subdir-objects])
14
14
 
15
15
dnl define PACKAGE_VERSION_* variables
16
16
AS_VERSION
42
42
AC_SUBST(GST_API_VERSION)
43
43
 
44
44
AG_GST_LIBTOOL_PREPARE
45
 
AS_LIBTOOL(GST, 9, 0, 9)
 
45
AS_LIBTOOL(GST, 200, 0, 200)
46
46
 
47
47
dnl *** required versions of GStreamer stuff ***
48
 
GST_REQ=1.0.0
 
48
GST_REQ=1.2.0
 
49
GST_PBREQ=1.2.0
49
50
 
50
51
ORC_REQ=0.4.16
51
52
ORC_CHECK([$ORC_REQ])
66
67
AG_GST_ARG_WITH_PACKAGE_NAME
67
68
AG_GST_ARG_WITH_PACKAGE_ORIGIN
68
69
AG_GST_ARG_VALGRIND
 
70
AG_GST_ARG_GCOV
69
71
 
70
72
dnl *** checks for platform ***
71
73
 
118
120
dnl uninstalled is selected preferentially -- see pkg-config(1)
119
121
AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ])
120
122
AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ])
121
 
AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GST_REQ])
 
123
AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GST_PBREQ])
122
124
AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no)
123
125
AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
124
126
 
341
343
  emblibav_configure_args="$emblibav_configure_args --disable-avserver --disable-avplay\
342
344
        --disable-avconv --disable-avprobe --enable-static --enable-pic \
343
345
        --disable-encoder=flac --disable-decoder=cavs --disable-protocols --disable-devices\
344
 
        --disable-network --disable-hwaccels --disable-filters --disable-doc\
345
 
        --enable-optimizations"
 
346
        --disable-network --disable-hwaccels --disable-dxva2 --disable-vdpau\
 
347
        --disable-filters --disable-doc --enable-optimizations"
346
348
 
347
349
  if test "x$enable_lgpl" != "xyes"; then
348
350
    emblibav_configure_args="$emblibav_configure_args --enable-gpl"
465
467
tests/Makefile
466
468
tests/check/Makefile
467
469
tests/files/Makefile
 
470
pkgconfig/Makefile
 
471
pkgconfig/gstreamer-plugins-libav-uninstalled.pc
468
472
)
469
473
AC_OUTPUT
470
474