[glibmm/glibmm-2-20-mm-common: 149/179] Merge commit '5d4a58d34f53dc027985095044ea5bf2a3199737' into glibmm-2-20-mm-common



commit 37c8df620c8ff406b51f5187f9b6875540c19511
Merge: 5f38c1b... 5d4a58d...
Author: Daniel Elstner <daniel kitta gmail com>
Date:   Sat Sep 5 10:35:01 2009 +0200

    Merge commit '5d4a58d34f53dc027985095044ea5bf2a3199737' into glibmm-2-20-mm-common

 ChangeLog              |   37 +++++++++++++++++++++++++++++++++++++
 configure.ac           |    7 +++++++
 gio/giommconfig.h.in   |    6 ++++++
 glib/glibmmconfig.h.in |    7 ++++++-
 tools/pm/Output.pm     |   11 ++++++++---
 5 files changed, 64 insertions(+), 4 deletions(-)
---
diff --cc ChangeLog
index 4b3b442,82a564f..84a5490
--- a/ChangeLog
+++ b/ChangeLog
@@@ -1,48 -1,71 +1,85 @@@
+ 2009-06-16  José Alburquerque  <jaalburqu svn gnome org>
+ 
+ 	* tools/extra_defs_gen/generate_extra_defs.cc:
+ 	* tools/extra_defs_gen/generate_extra_defs.h: Modify extra defs
+ 	generation utility to accept a custom defined function to determine if
+ 	a GType is a pointer.  This was discussed in bug #562810 and I went
+ 	back and forth about applying it.  I applied it, but later reverted
+ 	it.  Now I find that it is difficult to keep patching the generated
+ 	defs files in gstreamermm.  Since permission was granted, I'm
+ 	re-applying it once and for all.
+ 
+ 2009-05-23  Alexander Shaduri  <ashaduri gmail com>
+ 
+ 	Build static libraries correctly under Windows/MinGW. Bug #583657.
+ 
+ 	* configure.ac: Define GLIBMM_STATIC_LIB and GIOMM_STATIC_LIB when
+ 	--enable-static is specified.
+ 	* gio/giommconfig.h.in: Add GIOMM_STATIC_LIB and don't define GIOMM_DLL
+ 	when using MinGW unless GIOMM_STATIC_LIB is defined.
+ 	* glib/glibmmconfig.h.in: Add GLIBMM_STATIC_LIB and don't define
+ 	GLIBMM_DLL when using MinGW unless GLIBMM_STATIC_LIB is defined.
+ 
+ 2009-05-31  Armin Burgmeier  <armin openismus com>
+ 
+ 	* tools/pm/Output.pm: Made gmmproc work on Windows, so that it is
+ 	possible to build glibmm and friends directly from git.
+ 
+ 2009-05-26  José Alburquerque  <jaalburqu svn gnome org>
+ 
+ 	* glib/src/spawn.ccg:
+ 	* glib/src/spawn.hg: Corrected stray semicolons to fix the build with
+ 	exceptions disabled.
+ 
+ 2009-05-19  Siavash Safi  <siavash siavashs org>
+ 
+ 	* tools/enum.pl: Fix --module option to work
+ 
 -2009-05-18  Jonathon Jongsma  <jonathon quotidian org>
 +2009-07-17  David King  <davidk openismus com>
  
 -	Wrap new Gio::FileIOStream class
 +	* examples/properties/properties_example.cc: Only compile the
 +	properties example if properties are enabled.
  
 -	* gio/src/Makefile_list_of_hg.am_fragment:
 -	* gio/src/fileiostream.ccg: Copied from gio/src/fileinputstream.ccg.
 -	* gio/src/fileiostream.hg: Copied from gio/src/fileinputstream.hg.
 +2.20.1
  
 -2009-05-18  Jonathon Jongsma  <jonathon quotidian org>
 +2009-06-22  José Alburquerque  <jaalburqu svn gnome org>
  
 -	Wrap the new Gio::IOStream class
 +	* glib/src/date.ccg: Check for an invalid date in copy constructor and
 +	assignment operator.  Fixes bug #585027.
  
 -	* gio/src/Makefile_list_of_hg.am_fragment:
 -	* gio/src/iostream.ccg: Added.
 -	* gio/src/iostream.hg: Added.
 +2009-06-19  Murray Cumming  <murrayc murrayc com>
  
 -2009-05-18  Jonathon Jongsma  <jonathon quotidian org>
 +	Allow dynamic GType registration, using g_type_module_register_type().
 +	
 +	* glib/glibmm/class.[h|cc]: Added a  register_derived_type() overload that 
 +	takes an extra GTypeModule* parameter, and which calls 
 +	g_type_module_register_type() instead of g_type_register_static().
 +	* tools/m4/class_gobject.m4:
 +	* tools/m4/class_gtkobject.m4:
 +	* tools/m4/class_shared.m4: Added a _DYNAMIC_GTYPE_REGISTRATION macro to 
 +	be used in the class in the hg file, to add a *_Class::init(GTypeModule) 
 +	method, and a get_type(GTypeModule*) method that calls it.
  
 -	* gio/src/gio_docs_override.xml:add an override for
 -	get_activation_root() since the documentation contains /* comments
 -	*/ that mess up the documetation comments
 +2009-06-16 José Alburquerque <jaalburqu svn gnome org>
  
 -2009-05-16  Jonathon Jongsma  <jonathon quotidian org>
 +	* tools/extra_defs_gen/generate_extra_defs.cc:
 +	* tools/extra_defs_gen/generate_extra_defs.h: Modify extra defs
 +	generation utility to accept a custom defined function to determine if
 +	a GType is a pointer. This was discussed in bug #562810 and I went
 +	back and forth about applying it. I applied it, but later reverted it.
 +	Now I find that it is difficult to keep patching the generated defs
 +	files in gstreamermm. Since permission was granted, I'm re-applying it
 +	once and for all.
  
 -	* gio/src/cancellable.ccg:
 -	* gio/src/cancellable.hg: add connect() and disconnect() functions
 +2009-05-19  Siavash Safi  <siavash siavashs org>
  
 -2009-05-16  Jonathon Jongsma  <jonathon quotidian org>
 +	* tools/enum.pl: Fix --module option to work
  
 -	* gio/src/gio_docs.xml:
 -	* gio/src/gio_methods.defs: update some defs
 +2009-05-26  José Alburquerque  <jaalburqu svn gnome org>
 +
 +	* glib/src/spawn.ccg:
 +	* glib/src/spawn.hg: Corrected stray semicolons to fix the build with
 +	exceptions disabled.
  
  2009-05-14  Murray Cumming  <murrayc murrayc com>
  



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]