INSTALL configure.in relaxed required version for gtk+ to 2.8.17 and pango

2006-07-07  Sven Neumann  <sven@gimp.org>

	* INSTALL
	* configure.in
	* app/gui/gui.c: relaxed required version for gtk+ to 2.8.17 and
	pango to 1.12.2 so that it compiles on Ubuntu (Dapper Drake).
This commit is contained in:
Sven Neumann 2006-07-07 17:54:23 +00:00 committed by Sven Neumann
parent a27ae4b718
commit 03392a62fd
4 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2006-07-07 Sven Neumann <sven@gimp.org>
* INSTALL
* configure.in
* app/gui/gui.c: relaxed required version for gtk+ to 2.8.17 and
pango to 1.12.2 so that it compiles on Ubuntu (Dapper Drake).
2006-07-07 Sven Neumann <sven@gimp.org>
Use Ctrl-P as the default keyboard shortcut for Print (bug #302870):
@ -824,7 +831,7 @@ in <Layers>, <Channels>, <Vectors> and
since anything else breaks compilation of otherwise working code.
Fixes bug #344203.
2006-06-16 Sven Neumann <neumann@jpk.com>
2006-06-16 Sven Neumann <sven@gimp.org>
* themes/Default/images/Makefile.am
* themes/Default/images/stock-colormap-*.png
@ -841,7 +848,7 @@ in <Layers>, <Channels>, <Vectors> and
* app/actions/dialogs-actions.c
* app/dialogs/dialogs.c: use the new stock-id.
2006-06-16 Sven Neumann <neumann@jpk.com>
2006-06-16 Sven Neumann <sven@gimp.org>
* app/pdb/gimppluginprocedure.c (gimp_plug_in_procedure_get_label):
* plug-ins/script-fu/script-fu-interface.c (script_fu_interface):

View File

@ -28,9 +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.8.18 or newer. GIMP
2. You need to have installed GTK+ version 2.8.17 or newer. GIMP
needs an even more recent version of GLib (>= 2.10.2). It also
wants Pango (>= 1.12.3). Sources for these can be grabbed from
wants 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

View File

@ -256,7 +256,7 @@ gui_sanity_check (void)
#define GTK_REQUIRED_MAJOR 2
#define GTK_REQUIRED_MINOR 8
#define GTK_REQUIRED_MICRO 18
#define GTK_REQUIRED_MICRO 17
mismatch = gtk_check_version (GTK_REQUIRED_MAJOR,
GTK_REQUIRED_MINOR,

View File

@ -41,9 +41,9 @@ m4_define([gimp_full_name], [GNU Image Manipulation Program])
# required versions of other packages
m4_define([glib_required_version], [2.10.2])
m4_define([gtk_required_version], [2.8.18])
m4_define([gtk_required_version], [2.8.17])
m4_define([gdk_pixbuf_required_version], [gtk_required_version])
m4_define([pangoft2_required_version], [1.12.3])
m4_define([pangoft2_required_version], [1.12.2])
m4_define([fontconfig_required_version], [2.2.0])
m4_define([gtkdoc_required_version], [1.0])
m4_define([gtkhtml2_required_version], [2.0.0])