summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2012-09-23 22:33:21 -0400
committerMatthias Clasen <mclasen@redhat.com>2012-09-23 22:34:05 -0400
commitb470097b8baedeb2d021adb1141007edc805e90b (patch)
tree9d64ab171c12d84f001d78de038c9985c52c2e88
parent096b0883fc121ac51e6d95c63faacb78b22e5745 (diff)
2.34.02.34.0
-rw-r--r--INSTALL.in5
-rw-r--r--README.in10
-rw-r--r--configure.ac4
3 files changed, 14 insertions, 5 deletions
diff --git a/INSTALL.in b/INSTALL.in
index d8134ff98..27a7c1a1f 100644
--- a/INSTALL.in
+++ b/INSTALL.in
@@ -1,8 +1,8 @@
Simple install procedure
========================
- % gzip -cd glib-@GLIB_VERSION@.tar.gz | tar xvf - # unpack the sources
- % cd glib-@GLIB_VERSION@ # change to the toplevel directory
+ % tar xf glib-@GLIB_VERSION@.tar.gz # unpack the sources
+ % cd glib-@GLIB_VERSION@ # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB
@@ -60,7 +60,6 @@ available from:
http://www.gnu.org/software/gettext/
-
Support for extended attributes and SELinux in GIO requires
libattr and libselinux.
diff --git a/README.in b/README.in
index 07b318565..73f1eec43 100644
--- a/README.in
+++ b/README.in
@@ -67,6 +67,16 @@ and attach the patch to that bug report.
Patches should be in unified diff form. (The -up option to GNU diff.)
+Notes about GLib 2.34
+=====================
+
+* GIO now looks for thumbnails in XDG_CACHE_HOME, following a
+ recent alignment of the thumbnail spec with the basedir spec.
+
+* The default values for GThreadPools max_unused_threads and
+ max_idle_time settings have been changed to 2 and 15*1000,
+ respectively.
+
Notes about GLib 2.32
=====================
diff --git a/configure.ac b/configure.ac
index 1ac41ccb6..054485f94 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,8 +30,8 @@ m4_define(glib_configure_ac)
# <mclasen> on the unstable (ie master), interface age = 0
m4_define([glib_major_version], [2])
-m4_define([glib_minor_version], [33])
-m4_define([glib_micro_version], [15])
+m4_define([glib_minor_version], [34])
+m4_define([glib_micro_version], [0])
m4_define([glib_interface_age], [0])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])