new headers missing in installation

master
Marc Wäckerlin 20 years ago
parent e507fff563
commit 450992667f
  1. 25
      ChangeLog
  2. 4
      NEWS
  3. 5
      configure.in
  4. 11
      makefile.am

@ -1,18 +1,21 @@
* Tue Sep 29 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-1.0.0 (mrw)
* Tue Oct 7 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-1.1.0 (mrw)
- Bug in 1.0.0: The new header files are not installed!
-> Use 1.1.0 instead of 1.0.0
* Tue Sep 29 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-1.0.0 (mrw)
- no more diamond inheritance for exception classes
- new feature: standard extentions for most used container and string
- shift operator to insert and extract elements
- addition for strings and integers
- functions to<>(string) and string(int)
* Fri Sep 10 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.94.0 (mrw)
* Fri Sep 10 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.94.0 (mrw)
- either major, minor or least was a keyword... now tests pass
* Tue Sep 9 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.94.0 (mrw)
* Tue Sep 9 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.94.0 (mrw)
- library version is now how I want it (equal to package)
* Tue Aug 31 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.93 (mrw)
* Tue Aug 31 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.93 (mrw)
- test failed on Solaris (without stack trace)
-> no -lbfd for --disable-stacktrace!
-> no include of stacktrace.hpp in args.hpp!
* Wed Aug 25 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
* Wed Aug 25 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
- new file: version.cpp
- new file header for all sources
- work around warning in mrw::auto<T>
@ -23,25 +26,25 @@
- more warnings
- small corrections in Auto<>::Free and a new test for it
- possibility to compile without stack trace
* Wed May 28 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
* Wed May 28 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
- no more mrw:: exceptions in header files, all moved to .cpp
- make distclean now clean everything that was generated
- smartpointer_test.cpp was missing in CVS
- new makefile targets tag and release
* Wed May 19 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
* Wed May 19 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
- no more auto.cpp
* Tue May 18 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
* Tue May 18 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.92 (mrw)
- correct bfd detection on solaris
- templated auto classes
- forgotten to install in 0.91: header arg.hpp and smartpointer.hpp
* Tue Apr 27 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.91 (mrw)
* Tue Apr 27 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.91 (mrw)
- mrw/arg.hpp: Command line argument evaluation
- mrw/smartpointer.hpp: Smart pointer implementation
- configure: Correction for Solaris
* Fri Apr 24 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.90 (mrw)
* Fri Apr 24 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.90 (mrw)
- initial rpm with two spec files
- test cases for libmrwexcstderr and libmrwexclog4cxx
* Thu Apr 23 2004 Marc Wäckerlin <marc@waeckerlin.org> - mrw-c++-0.11 (mrw)
* Thu Apr 23 2004 Marc Waeckerlin <marc@waeckerlin.org> - mrw-c++-0.11 (mrw)
- better support for solaris, but not yet tested
- more and better documentation and a pdf file
- new submodule "Automated Unexpected Handler with Stack Trace"

@ -1,3 +1,7 @@
In release 1.0.0, some headers are missing in the rpm packages and in
the installation with make install. Don't use that release, use 1.1.0
instead.
Please note that the inheritance changed for the exception classes:
There is no more a diamond like multiple inheritance nos, but
exceptions such as mrw::out_of_range no more inherit from their

@ -9,6 +9,9 @@
## @license LGPL, see file <a href="license.html">COPYING</a>
##
## $Log$
## Revision 1.12 2004/10/07 16:01:03 marc
## new headers missing in installation
##
## Revision 1.11 2004/10/07 13:41:16 marc
## devel in the same spec file
##
@ -43,7 +46,7 @@
AC_INIT([mrw/mrw.hpp.in])
PACKAGENAME=mrw-c++
m4_define(x_major, 1)
m4_define(x_minor, 0)
m4_define(x_minor, 1)
m4_define(x_least, 0)
AM_INIT_AUTOMAKE(@PACKAGENAME@, @MAJOR@.@MINOR@.@LEAST@, [marc@waeckerlin.org])

@ -9,6 +9,9 @@
## @license LGPL, see file <a href="license.html">COPYING</a>
##
## $Log$
## Revision 1.10 2004/10/07 16:01:03 marc
## new headers missing in installation
##
## Revision 1.9 2004/10/07 13:41:16 marc
## devel in the same spec file
##
@ -38,8 +41,12 @@ SUBDIRS = mrw
EXTRA_DIST = bootstrap.sh
nobase_include_HEADERS = mrw/auto.hpp mrw/unistd.hpp \
mrw/stacktrace.hpp mrw/exception.hpp \
mrw/exec.hpp mrw/arg.hpp mrw/smartpointer.hpp
mrw/stacktrace.hpp mrw/exception.hpp \
mrw/exec.hpp mrw/arg.hpp mrw/smartpointer.hpp \
mrw/string.hpp \
mrw/list.hpp mrw/vector.hpp mrw/deque.hpp \
mrw/set.hpp mrw/map.hpp \
mrw/multiset.hpp mrw/multimap.hpp \
infosdir = ${pkgdatadir}
infos_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog \
@PACKAGENAME@.spec

Loading…
Cancel
Save