~ubuntu-branches/ubuntu/trusty/gnome-themes-standard/trusty-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Sjoerd Simons, Michael Biebl
  • Date: 2011-10-29 12:46:48 UTC
  • mfrom: (1.2.1) (14.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111029124648-a2yi87sofmin1gq5
Tags: 3.2.1-1
[ Sjoerd Simons ]
* New upstream release
* debian/control.in: Update libgtk-3-dev depends and add librsvg2-dev
  build-depends

[ Michael Biebl ]
* debian/watch:
  - Switch to .xz tarballs.
  - Track stable releases.
  - Don't run uupdate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
AC_PREREQ(2.53)
3
3
 
4
 
AC_INIT([gnome-themes-standard], [3.0.0],
 
4
AC_INIT([gnome-themes-standard], [3.2.1],
5
5
        [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-themes-standard])
6
6
 
7
 
AM_INIT_AUTOMAKE([1.9 tar-ustar foreign dist-bzip2 no-dist-gzip])
 
7
AM_INIT_AUTOMAKE([1.9 tar-ustar foreign dist-xz no-dist-gzip])
8
8
 
9
9
PKG_PROG_PKG_CONFIG([0.19])
10
10
 
28
28
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
29
29
AM_GLIB_GNU_GETTEXT
30
30
 
31
 
# Don't forget to update the README when changing this.
32
 
PKG_CHECK_MODULES(GTK, gtk+-3.0 >= 3.0.8,,
33
 
                  AC_MSG_ERROR([GTK+-3.0 is required to compile gnome-themes-standard]))
 
31
GTK_VERSION_REQUIRED=3.1.18
 
32
 
 
33
PKG_CHECK_MODULES(GTK, gtk+-3.0 >= $GTK_VERSION_REQUIRED librsvg-2.0,,
 
34
                  AC_MSG_ERROR([GTK+ $GTK_VERSION_REQUIRED is required to compile gnome-themes-standard]))
34
35
 
35
36
AC_SUBST(GTK_CFLAGS)
36
37
AC_SUBST(GTK_LIBS)