2002-03-28  Karl Nelson

	* Removed --no-undefined linker option, which breaks build on
	Solaris/Forte.
	* method_slot: Added ConstMethodSlot to avoid "can't cast away
	constness" erros on Solaris/Forte.
	* This Changelog entry was written by murrayc, because Karl didn't.

2002-03-12  Daniel Elstner  <daniel.elstner@gmx.net>

	* autogen.sh: Change behaviour so that it works like the usual
	GNOME CVS autogen.sh, i.e. it does some sanity checks now and
	runs ./configure --enable-maintainer-mode automatically.
	* configure.in: No longer overwrite CFLAGS/CXXFLAGS/CPPFLAGS
	in maintainer mode.

1.1.8
-----
	
2002-02-25  Murray Cumming  <murrayc@usa.net>

	* Increased max number of Slot args from 5 to 6, because Gtk::Widget
	needs it.

1.1.7
-----
sigc-config is now sigc-config-1.2, to allow for parallel installation with libsigc++ 1.0
	
1.1.6
-----
Added missing Makefile.am entries for method_slot.h.
Added closure.h.m4 to macros/Makefile.am.

1.1.5
-----
binary incompatible.
changes to naming convention to improve clarity.
combined notify and disconnect as proved too confusing.
fixed several segmentation faults.
added method_slot adaptors.  
added closure (untested).
tested on Sun compiler.
tested on HPUX compiler.

1.1.4
-----

2001-10-17  Daniel Elstner  <daniel.elstner@gmx.net>

  * */Makefile.am:
    Made make dist and make distcheck work.  Excluded generated
    sources from distribution.

  * sigc++/macros/object_slot.h.m4:
    Added another pair of overloaded slot() functions, this time for
    references to non-const pointers (*&).  We have now 2*3*6 = 36
    overloaded slot() functions alone in object_slot.h. :(

2001-10-14  Daniel Elstner  <daniel.elstner@gmx.net>

  * signal.cc, signal.h.m4:  Implemented Signal_::create_slot.  I'm not sure
    wether the behaviour is correct, see comment there.  Moved SignalN<>::emit
    implementation to private static emit_ function, which is also used
    directly as proxy for Signal_::create_slot.  Thus code duplication in
    SignalN<>::proxy (removed, didn't work) was avoided.

  * object_slot.h.m4, object_slot_test.cc:  Reverted Murray Cumming's changes
    to ObjectSlot_ and SigC::slot templates.  For backward compatibility:
    overloaded SigC::slot to accept pointers, too.

  * examples/*.cc:  Include sigc++.h instead of signal_system.h,
    and other minor tweaks to make the examples work.  Corrected
    sigc++/README about this point, too.

  * To prevent header name clashes:  Overruled automake DEFAULT_INCLUDES
    to not include -I$(builddir) and -I$(srcdir).  Also changed every
    #include "foo.h" to #include "sigc++/foo.h".

1.1.3
-----
Optimized signal execution path (x3 speedup)
Fixed signal clear bug.
Added contributed hide adaptor.
Improved slot formulations.
Made headers more consistant.
Added LGPL license disclaimers to files.

1.1.2
-----
Improved formulation.
Dropped slot create functions.
Changed slot proxies to use references.
Asa adaptor.
