summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-18 08:27:57 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-18 08:27:57 +0100
commit1442a2f27f5da58a4bc665c54c125e5d231b30c4 (patch)
tree34dc0e9be8f7558c86817312254544cf0ee1aa75
parentb466cb74e179952f47953cb40467ffaed5aac78f (diff)
downloadglibmm-1442a2f27f5da58a4bc665c54c125e5d231b30c4.tar.gz
2.47.922.47.92
-rw-r--r--NEWS21
-rw-r--r--configure.ac6
2 files changed, 24 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index a959548d..7639ae1c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+2.47.92:
+
+* Adapt to libsigc++-2.0 2.8:
+ - using only the non-deprecated sigc::mem_fun() API.
+ (Kjell Ahlstedt)
+ - using std::ref instead of deprecated sigc::ref.
+ (Murray Cumming)
+ - Correct bad uses of sigc::bind<1>.
+ (Murray Cumming)
+
+
+gmmproc:
+* defs generation: Mark deprecated signals and properties as such in the
+ generated .defs file.
+* gmmproc: Check if signals and properties are deprecated appropriately
+ (Kjell Ahlstedt)
+
+Build:
+* MSVC builds: Look for includes in include/gio-win32-2.0.
+ (Chun-wei Fan)
+
2.47.6:
Glib:
diff --git a/configure.ac b/configure.ac
index c5458f58..12af8318 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([glibmm], [2.47.6],
+AC_INIT([glibmm], [2.47.92],
[http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
@@ -62,9 +62,9 @@ AS_IF([test "x$enable_static" = xyes],
AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library])
])
-glibreq='2.0 >= 2.47.6'
+glibreq='2.0 >= 2.47.92'
-GLIBMM_MODULES="sigc++-2.0 >= 2.7.2 glib-$glibreq gobject-$glibreq gmodule-$glibreq"
+GLIBMM_MODULES="sigc++-2.0 >= 2.8.0 glib-$glibreq gobject-$glibreq gmodule-$glibreq"
GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq"
test "x$glibmm_host_windows" = xyes || GIOMM_MODULES="$GIOMM_MODULES gio-unix-$glibreq"