~bratsche/oif/eog-rotate-gesture-2

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-08-05 11:18:27 UTC
  • mfrom: (1.14.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100805111827-mg8n4etd5pj7btti
Tags: 2.31.5-0ubuntu1
* New upstream versions:
  - New toolbar button and 'P' shortcut to pause the slideshow (lp: #272552)
  - Rename "Image Collection" to "Image Gallery" 
  - Update totem-scrsaver to use GDBus 
  - Render SVGs natively when zoomed 
  - Print SVGs as vector image 
  - Embed page setup in print dialog 
  - Various UI improvements 
  - Further GSEAL-compatibility work 
* debian/control.in:
  - require librsvg, updated glib and gtk requirements
* debian/control.in, debian/patches/99_autoconf.patch, debian/rules:
  - run autoreconf at build time now

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.59)
2
2
 
3
3
m4_define(eog_major_version,  2)
4
 
m4_define(eog_minor_version, 30)
5
 
m4_define(eog_micro_version,  2)
 
4
m4_define(eog_minor_version, 31)
 
5
m4_define(eog_micro_version,  5)
6
6
m4_define(eog_version, eog_major_version.eog_minor_version.eog_micro_version)
7
7
 
8
8
AC_INIT([eog], eog_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=eog], [eog])
83
83
# GNOME Libs
84
84
# **********
85
85
 
86
 
GTK_REQUIRED=2.17.5
87
 
GLIB_REQUIRED=2.15.3
 
86
GTK_REQUIRED=2.18.0
 
87
GLIB_REQUIRED=2.25.9
88
88
GNOME_DESKTOP_REQUIRED=2.25.1
89
89
GDKPIXBUF_REQUIRED=2.4.0
90
90
GCONF_REQUIRED=2.5.90
277
277
LIBXML2_REQUIRED=2.0
278
278
PKG_CHECK_MODULES(LIBXML2, [libxml-2.0 >= $LIBXML2_REQUIRED])
279
279
 
 
280
# ***************
 
281
# RSVG (optional for scaling svg image)
 
282
# ***************
 
283
 
 
284
LIBRSVG_REQUIRED=2.26.0
 
285
 
 
286
AC_ARG_WITH([librsvg], AC_HELP_STRING([--without-librsvg], [disable RSVG support]))
 
287
have_rsvg=no
 
288
if test x$with_librsvg != xno; then
 
289
    PKG_CHECK_MODULES(RSVG, librsvg-2.0 >= $LIBRSVG_REQUIRED, have_rsvg=yes, have_rsvg=no)
 
290
fi
 
291
if test "x$have_rsvg" = "xyes"; then
 
292
  AC_DEFINE(HAVE_RSVG, 1, [RSVG Support.])
 
293
  EOG_MODULES="$EOG_MODULES librsvg-2.0 >= $LIBRSVG_REQUIRED"
 
294
fi
 
295
 
 
296
AM_CONDITIONAL([HAVE_RSVG], [test "x$have_rsvg" = "xyes"])
 
297
 
280
298
# ****************
281
299
# CFLAGS/LIBS init
282
300
# ****************