*** empty log message ***

master
Marc Wäckerlin 20 years ago
parent 680485948c
commit 455234cbd1
  1. 7
      ChangeLog
  2. 9
      NEWS
  3. 5
      configure.in

@ -1,3 +1,10 @@
* Wed Oct 13 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-1.2.1 (mrw)
- no newline at the end of stacktrace in autostacktracestderr.cpp
- test for bad exception specification in exec_test.cpp
- no more need for ldd in StackTrace, read from /proc/self/maps
- check whether shared libraries are evaluated in
stacktrace_test.cpp
- new feature in stdext: getline reads a whole line from a stream
* Mon Oct 11 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-1.2.0 (mrw)
- StackTrace now can load shared libraries!
- AutoPtr replaces mrw::auto_ptr

@ -1,5 +1,8 @@
StackTrace now can load not only the executable, but also shared
libraries. On Linux, if StackTrace is initialized without parameters,
then not only the executable is löoaded, but also /usr/bin/ldd is
executed on the executable and all shared libraries with their offset
are parsed from the output and loaded.
then not only the executable is loaded, but all shared libraries with
their offset are parsed from /proc/self/maps.
2004-10-13:
- no more need for /usr/bin/ldd
- new functions mrw::readline

@ -9,6 +9,9 @@
## @license LGPL, see file <a href="license.html">COPYING</a>
##
## $Log$
## Revision 1.14 2004/10/13 11:19:54 marc
## *** empty log message ***
##
## Revision 1.13 2004/10/11 16:50:50 marc
## Version 1.2.0
##
@ -50,7 +53,7 @@ AC_INIT([mrw/mrw.hpp.in])
PACKAGENAME=mrw-c++
m4_define(x_major, 1)
m4_define(x_minor, 2)
m4_define(x_least, 0)
m4_define(x_least, 1)
AM_INIT_AUTOMAKE(@PACKAGENAME@, @MAJOR@.@MINOR@.@LEAST@, [marc@waeckerlin.org])
# copy M4 to shell

Loading…
Cancel
Save