~ubuntu-branches/ubuntu/vivid/clutter-1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to build/autotools/glibtests.m4

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2014-03-26 11:51:28 UTC
  • mfrom: (1.5.1) (4.1.30 experimental)
  • Revision ID: package-import@ubuntu.com-20140326115128-timmbsde8734o6wz
Tags: 1.18.0-1
* New upstream release.
* debian/control.in:
  + Bump gtk-doc-tools build dependency.
  + Also break libcogl15.
  + Standards-Version is 3.9.5, no changes needed.
* debian/libclutter-1.0-0.symbols:
  + Drop a few symbols that were accidentally exported in the DSO because
    they had a clutter_ prefix but were not in the public headers.
  + Add one new symbol.
  + Drop unnecessary debian revisions from some symbols.
* debian/control.in,
  debian/rules,
  debian/libclutter-1.0-0.symbols:
  + Temporarily disable evdev input support. It was only enabled in 1.17.6-1
    in experimental and there is nothing using it yet, and I would like to
    wait a bit before uploading libinput to unstable as the ABI isn't stable
    yet.
* d/p/0001-wayland-Add-missing-CLUTTER_AVAILABLE-annotations.patch:
  + Add missing annotations so that a few symbols are exported in the DSO.

* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl GLIB_TESTS
 
2
dnl
 
3
 
 
4
AC_DEFUN([GLIB_TESTS],
 
5
[
 
6
  AC_ARG_ENABLE(installed-tests,
 
7
                AS_HELP_STRING([--enable-installed-tests],
 
8
                               [Enable installation of some test cases]),
 
9
                [case ${enableval} in
 
10
                  yes) ENABLE_INSTALLED_TESTS="1"  ;;
 
11
                  no)  ENABLE_INSTALLED_TESTS="" ;;
 
12
                  *) AC_MSG_ERROR([bad value ${enableval} for --enable-installed-tests]) ;;
 
13
                 esac])
 
14
  AM_CONDITIONAL([ENABLE_INSTALLED_TESTS], test "$ENABLE_INSTALLED_TESTS" = "1")
 
15
  AC_ARG_ENABLE(always-build-tests,
 
16
                AS_HELP_STRING([--enable-always-build-tests],
 
17
                               [Enable always building tests during 'make all']),
 
18
                [case ${enableval} in
 
19
                  yes) ENABLE_ALWAYS_BUILD_TESTS="1"  ;;
 
20
                  no)  ENABLE_ALWAYS_BUILD_TESTS="" ;;
 
21
                  *) AC_MSG_ERROR([bad value ${enableval} for --enable-always-build-tests]) ;;
 
22
                 esac])
 
23
  AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], test "$ENABLE_ALWAYS_BUILD_TESTS" = "1")
 
24
  if test "$ENABLE_INSTALLED_TESTS" = "1"; then
 
25
    AC_SUBST(installed_test_metadir, [${datadir}/installed-tests/]AC_PACKAGE_NAME)
 
26
    AC_SUBST(installed_testdir, [${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
 
27
  fi
 
28
])