diff --git a/makefile.am b/makefile.am
index 3ce3356..1922a0b 100644
--- a/makefile.am
+++ b/makefile.am
@@ -9,6 +9,9 @@
## @license LGPL, see file COPYING
##
## $Log$
+## Revision 1.13 2004/10/11 18:33:53 marc
+## add stdext.hpp
+##
## Revision 1.12 2004/10/07 17:25:40 marc
## make rpm also installs the new rpm (to check whether this is possible)
##
@@ -46,13 +49,11 @@ 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/string.hpp \
- mrw/list.hpp mrw/vector.hpp mrw/deque.hpp \
- mrw/set.hpp mrw/map.hpp \
- mrw/multiset.hpp mrw/multimap.hpp
+nobase_include_HEADERS = mrw/arg.hpp mrw/list.hpp mrw/simpletrace.hpp mrw/unistd.hpp \
+ mrw/auto.hpp mrw/map.hpp mrw/smartpointer.hpp mrw/vector.hpp \
+ mrw/deque.hpp mrw/multimap.hpp mrw/stacktrace.hpp \
+ mrw/exception.hpp mrw/multiset.hpp mrw/stdext.hpp \
+ mrw/exec.hpp mrw/set.hpp mrw/string.hpp
infosdir = ${pkgdatadir}
infos_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog \
@PACKAGENAME@.spec
diff --git a/mrw/makefile.am b/mrw/makefile.am
index 4eba2de..107138d 100644
--- a/mrw/makefile.am
+++ b/mrw/makefile.am
@@ -9,6 +9,9 @@
## @license LGPL, see file COPYING
##
## $Log$
+## Revision 1.11 2004/10/11 18:33:02 marc
+## add stdext.hpp
+##
## Revision 1.10 2004/10/07 16:16:34 marc
## forgotten to save before last checkin...
##
@@ -61,15 +64,14 @@ if HAVE_LOG4CXX
endif
endif
-libmrw_la_SOURCES = mrw.hpp \
- auto.hpp unistd.hpp \
- stacktrace.hpp exception.hpp exception.cpp \
- exec.hpp exec.cpp arg.hpp arg.cpp smartpointer.hpp \
- string.hpp \
- list.hpp vector.hpp deque.hpp \
- set.hpp map.hpp \
- multiset.hpp multimap.hpp \
- version.cpp
+libmrw_la_SOURCES = mrw.hpp version.cpp \
+ arg.cpp arg.hpp auto.hpp deque.hpp \
+ exception.cpp exception.hpp \
+ exec.cpp exec.hpp list.hpp \
+ map.hpp multimap.hpp multiset.hpp \
+ set.hpp simpletrace.hpp \
+ smartpointer.hpp stdext.hpp \
+ string.hpp unistd.hpp vector.hpp
if HAVE_STACKTRACE
libmrw_la_SOURCES += stacktrace.hpp stacktrace.cpp
endif