From 1504cfa9045c63519990f2ad00edb0e94f52a66e Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sun, 4 Nov 2007 11:55:30 +0000 Subject: [PATCH] INSTALL bumped required version of GTK+ to 2.12.0. 2007-11-04 Sven Neumann * INSTALL * configure.in: bumped required version of GTK+ to 2.12.0. * app/sanity.c (sanity_check_glib) * app/gui/gui.c (gui_sanity_check): updated sanity checks. svn path=/trunk/; revision=24049 --- ChangeLog | 8 ++++++++ INSTALL | 7 +++---- app/gui/gui.c | 4 ++-- app/sanity.c | 4 ++-- configure.in | 2 +- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00b03be6de..7fdd56e4ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-11-04 Sven Neumann + + * INSTALL + * configure.in: bumped required version of GTK+ to 2.12.0. + + * app/sanity.c (sanity_check_glib) + * app/gui/gui.c (gui_sanity_check): updated sanity checks. + 2007-11-02 Michael Natterer * app/widgets/gimphistogramview.[ch]: added API to set the diff --git a/INSTALL b/INSTALL index c05c775702..fdc87fb483 100644 --- a/INSTALL +++ b/INSTALL @@ -28,10 +28,9 @@ header files installed. 1. You need to have installed a recent version of pkg-config available from http://www.freedesktop.org/software/pkgconfig/. - 2. You need to have installed GTK+ version 2.10.13 or newer. GIMP - needs an even more recent version of GLib (>= 2.14.1). It also - wants Pango (>= 1.12.2). Sources for these can be grabbed from - ftp://ftp.gtk.org/. + 2. You need to have installed GTK+ version 2.12.0 or newer. GIMP + also need a recent versions of GLib (>= 2.14.1) and Pango (>= 1.12.2). + Sources for these can be grabbed from ftp://ftp.gtk.org/. 3. We require PangoFT2, a Pango backend that uses FreeType2. Make sure you have FreeType2 and fontconfig installed before you diff --git a/app/gui/gui.c b/app/gui/gui.c index 69614db2f1..f81dbda7f8 100644 --- a/app/gui/gui.c +++ b/app/gui/gui.c @@ -271,8 +271,8 @@ gui_sanity_check (void) const gchar *mismatch; #define GTK_REQUIRED_MAJOR 2 -#define GTK_REQUIRED_MINOR 10 -#define GTK_REQUIRED_MICRO 13 +#define GTK_REQUIRED_MINOR 12 +#define GTK_REQUIRED_MICRO 0 mismatch = gtk_check_version (GTK_REQUIRED_MAJOR, GTK_REQUIRED_MINOR, diff --git a/app/sanity.c b/app/sanity.c index 0c5d203e02..fbcb420f07 100644 --- a/app/sanity.c +++ b/app/sanity.c @@ -87,8 +87,8 @@ sanity_check_glib (void) const gchar *mismatch; #define GLIB_REQUIRED_MAJOR 2 -#define GLIB_REQUIRED_MINOR 12 -#define GLIB_REQUIRED_MICRO 3 +#define GLIB_REQUIRED_MINOR 14 +#define GLIB_REQUIRED_MICRO 1 mismatch = glib_check_version (GLIB_REQUIRED_MAJOR, GLIB_REQUIRED_MINOR, diff --git a/configure.in b/configure.in index 50ae56c8f8..6c52a32cd2 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ m4_define([gimp_full_name], [GNU Image Manipulation Program]) # required versions of other packages m4_define([glib_required_version], [2.14.1]) -m4_define([gtk_required_version], [2.10.13]) +m4_define([gtk_required_version], [2.12.0]) m4_define([gdk_pixbuf_required_version], [gtk_required_version]) m4_define([pangoft2_required_version], [1.12.2]) m4_define([fontconfig_required_version], [2.2.0])