Depend on ATK 2.2.0, GTK+ 2.24.10, GdkPixbuf 2.24.1

And do some final NEWS adjustments for RC1
This commit is contained in:
Michael Natterer
2012-04-03 00:53:04 +02:00
parent 36c52537e4
commit 531709c8db
5 changed files with 12 additions and 32 deletions

10
INSTALL
View File

@ -36,16 +36,16 @@ header files installed.
Intltool can be downloaded from
http://ftp.gnome.org/pub/gnome/sources/intltool/
3. You need to have GEGL version 0.1.8 or newer and babl version
0.1.8 or newer. You can get them from http://gegl.org/ or clone
3. You need to have GEGL version 0.2.0 or newer and babl version
0.1.10 or newer. You can get them from http://gegl.org/ or clone
them from the GNOME git repository:
git://git.gnome.org/babl
git://git.gnome.org/gegl
4. You need to have installed GTK+ version 2.24.7 or newer.
GIMP also need a recent versions of GLib (>= 2.28.8), GDK-PixBuf
(>= 2.24.0), and Pango (>= 1.29.4). Sources for these can be grabbed
4. You need to have installed GTK+ version 2.24.10 or newer.
GIMP also need a recent versions of GLib (>= 2.30.2), GDK-Pixbuf
(>= 2.24.1), and Pango (>= 1.29.4). Sources for these can be grabbed
from ftp://ftp.gtk.org/.
5. We use cairo >= 1.10.2, which is hosted at

24
NEWS
View File

@ -11,11 +11,6 @@ Changes in GIMP 2.8.0
=====================
UI:
- foo
Core:
- Add our own GimpOperationBrightnessContrast because GEGL one is different
@ -23,27 +18,12 @@ Core:
Plug-ins:
- foo
Libgimp:
- foo
Data:
- foo
Developer documentation:
- foo
- Fix some GFig rendering issues
Source and build system:
- foo
- Depend on Babl 0.1.10, GEGL 0.2.0 and some other new library versions
General:

View File

@ -252,7 +252,7 @@ gui_sanity_check (void)
{
#define GTK_REQUIRED_MAJOR 2
#define GTK_REQUIRED_MINOR 24
#define GTK_REQUIRED_MICRO 7
#define GTK_REQUIRED_MICRO 10
const gchar *mismatch = gtk_check_version (GTK_REQUIRED_MAJOR,
GTK_REQUIRED_MINOR,

View File

@ -317,7 +317,7 @@ sanity_check_gdk_pixbuf (void)
{
#define GDK_PIXBUF_REQUIRED_MAJOR 2
#define GDK_PIXBUF_REQUIRED_MINOR 24
#define GDK_PIXBUF_REQUIRED_MICRO 0
#define GDK_PIXBUF_REQUIRED_MICRO 1
if (! sanity_check_version (gdk_pixbuf_major_version, GDK_PIXBUF_REQUIRED_MAJOR,
gdk_pixbuf_minor_version, GDK_PIXBUF_REQUIRED_MINOR,

View File

@ -43,9 +43,9 @@ m4_define([gimp_full_name], [GNU Image Manipulation Program])
m4_define([babl_required_version], [0.1.10])
m4_define([gegl_required_version], [0.2.0])
m4_define([glib_required_version], [2.30.2])
m4_define([atk_required_version], [2.0.1])
m4_define([gtk_required_version], [2.24.7])
m4_define([gdk_pixbuf_required_version], [2.24.0])
m4_define([atk_required_version], [2.2.0])
m4_define([gtk_required_version], [2.24.10])
m4_define([gdk_pixbuf_required_version], [2.24.1])
m4_define([cairo_required_version], [1.10.2])
m4_define([cairo_pdf_required_version], [1.10.2])
m4_define([pangocairo_required_version], [1.29.4])