From 6d5edea427f0245e8f8b97001a56d2ff01012b31 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Mon, 24 Jul 2006 16:47:51 +0000 Subject: 2.6.6: 2006-04-25 Murray Cumming * configure.in: * glib/glibmmconfig.h.in: * scripts/reduced.m4: Added a --enable-api-default-signal-handlers option. This defines GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED, which is used to #ifdef default signal handlers. This saves on library code size (less code and API symbols) and application code size and loading time (less virtual methods, which must be imported and resolved at load time) and per-object memory size (smaller object sizes because of less virtual methods.) * tools/m4/class_interface.m4: * tools/m4/class_shared.m4: Put default signal handler code in #ifdefs. --- ChangeLog | 2 ++ NEWS | 6 ++++++ configure.in | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 85c30ff0..3933d09a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +2.6.6: + 2006-04-25 Murray Cumming * configure.in: diff --git a/NEWS b/NEWS index 6fb9ece7..8085824b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +2.6.6: + +* Build: Build: Added the --enable-api-default-signal-handlers option, for use in + embedded environments that have reduced resources. See configure --help + for the other subsets. + 2.6.5: * Convert functions: Do not try to throw null exceptions when using diff --git a/configure.in b/configure.in index 692a58bc..fead61a5 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ AC_PREREQ(2.50) ######################################################################### GLIBMM_MAJOR_VERSION=2 GLIBMM_MINOR_VERSION=6 -GLIBMM_MICRO_VERSION=5 +GLIBMM_MICRO_VERSION=6 GLIBMM_VERSION=$GLIBMM_MAJOR_VERSION.$GLIBMM_MINOR_VERSION.$GLIBMM_MICRO_VERSION GLIBMM_RELEASE=$GLIBMM_MAJOR_VERSION.$GLIBMM_MINOR_VERSION AC_DEFINE_UNQUOTED(GLIBMM_MAJOR_VERSION, $GLIBMM_MAJOR_VERSION) -- cgit v1.2.1