summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-07-26 08:25:18 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-07-26 08:25:18 +0000
commit05f142694f856fcf56221db6395428c054a1ce24 (patch)
tree27222b3ba170184cf80e6315e6f5135a7a6e2cac
parent215c9ddd9fbb3d2248a31acfb8e213a122be4cd1 (diff)
downloadpygobject-05f142694f856fcf56221db6395428c054a1ce24.tar.gz
pygobject-05f142694f856fcf56221db6395428c054a1ce24.tar.xz
pygobject-05f142694f856fcf56221db6395428c054a1ce24.zip
Bump required glib version to 2.16
2008-07-26 Johan Dahlin <johan@gnome.org> * README: * configure.ac: Bump required glib version to 2.16 svn path=/trunk/; revision=856
-rw-r--r--ChangeLog6
-rw-r--r--README14
-rw-r--r--configure.ac2
3 files changed, 14 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 25c7cf5..ce47388 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-07-26 Johan Dahlin <johan@gnome.org>
+ * README:
+ * configure.ac:
+ Bump required glib version to 2.16
+
+2008-07-26 Johan Dahlin <johan@gnome.org>
+
* glib/glibmodule.c (child_watch_dnotify),
(pyglib_child_watch_add):
* glib/pygiochannel.c (pyg_iowatch_data_free),
diff --git a/README b/README
index 7235e13..b788736 100644
--- a/README
+++ b/README
@@ -3,11 +3,11 @@ PyGObject
Original author: James Henstridge <james@daa.com.au>
Current maintainer: Johan Dahlin <johan@gnome.org>
-This archive contains bindings for the GObject, to be used in Python
-It is a fairly complete set of bindings, it's already rather useful,
-and is usable to write moderately complex programs. (see the
-examples directory for some examples of the simpler programs you could
-write).
+This archive contains bindings for the GLib, GObject and GIO,
+to be used in Python. It is a fairly complete set of bindings,
+it's already rather useful, and is usable to write moderately
+complex programs. (see the examples directory for some examples
+of the simpler programs you could write).
If you have any enhancements or bug reports, please file them in
bugzilla at:
@@ -38,7 +38,7 @@ Requirements
============
* C compiler (GCC and MSVC supported)
* Python 2.3.5 or higher
- * Glib 2.8.0 or higher
+ * Glib 2.16.0 or higher
* libffi (optional)
Copyright Information
@@ -73,7 +73,7 @@ for all the .py files.
Note. If you're installing to another prefix than the one where python
is installed you'll need to set the PYTHONPATH variable to the
-$prefix/lib/pythonX.Y/site-packages directory created by
+$prefix/lib/pythonX.Y/site-packages directory created by
the PyGObject installation.
Tests
diff --git a/configure.ac b/configure.ac
index 3884fa7..b5893d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ m4_define(pygobject_micro_version, 2)
m4_define(pygobject_version, pygobject_major_version.pygobject_minor_version.pygobject_micro_version)
dnl versions of packages we require ...
-m4_define(glib_required_version, 2.8.0)
+m4_define(glib_required_version, 2.16.0)
m4_define(gio_required_version, 2.16.0)
m4_define(giounix_required_version, 2.16.0)