|
|
@ -9,6 +9,9 @@ |
|
|
|
## @license LGPL, see file <a href="license.html">COPYING</a> |
|
|
|
## @license LGPL, see file <a href="license.html">COPYING</a> |
|
|
|
## |
|
|
|
## |
|
|
|
## $Log$ |
|
|
|
## $Log$ |
|
|
|
|
|
|
|
## Revision 1.15 2004/12/14 20:20:06 marc |
|
|
|
|
|
|
|
## added regexp |
|
|
|
|
|
|
|
## |
|
|
|
## Revision 1.14 2004/12/08 13:48:20 marc |
|
|
|
## Revision 1.14 2004/12/08 13:48:20 marc |
|
|
|
## forget TRACE |
|
|
|
## forget TRACE |
|
|
|
## |
|
|
|
## |
|
|
@ -82,7 +85,7 @@ endif |
|
|
|
# map.hpp multimap.hpp multiset.hpp \ |
|
|
|
# map.hpp multimap.hpp multiset.hpp \ |
|
|
|
# set.hpp simpletrace.hpp \ |
|
|
|
# set.hpp simpletrace.hpp \ |
|
|
|
# smartpointer.hpp stdext.cpp stdext.hpp \ |
|
|
|
# smartpointer.hpp stdext.cpp stdext.hpp \ |
|
|
|
# string.hpp unistd.hpp vector.hpp |
|
|
|
# string.hpp unistd.hpp vector.hpp regexp.hpp regexp.cpp |
|
|
|
#else |
|
|
|
#else |
|
|
|
libmrw_la_SOURCES = \ |
|
|
|
libmrw_la_SOURCES = \ |
|
|
|
mrw.hpp version.cpp \ |
|
|
|
mrw.hpp version.cpp \ |
|
|
@ -92,7 +95,7 @@ endif |
|
|
|
map.hpp multimap.hpp multiset.hpp \ |
|
|
|
map.hpp multimap.hpp multiset.hpp \ |
|
|
|
set.hpp simpletrace.hpp \ |
|
|
|
set.hpp simpletrace.hpp \ |
|
|
|
smartpointer.hpp stdext.cpp stdext.hpp \ |
|
|
|
smartpointer.hpp stdext.cpp stdext.hpp \ |
|
|
|
string.hpp unistd.hpp vector.hpp |
|
|
|
string.hpp unistd.hpp vector.hpp regexp.hpp regexp.cpp |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
if HAVE_STACKTRACE |
|
|
|
if HAVE_STACKTRACE |
|
|
|
#if TRACER |
|
|
|
#if TRACER |
|
|
@ -122,7 +125,7 @@ if HAVE_LOG4CXX |
|
|
|
endif |
|
|
|
endif |
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS = auto_test smartpointer_test exec_test stdext_test |
|
|
|
check_PROGRAMS = auto_test smartpointer_test exec_test stdext_test regexp_test |
|
|
|
if HAVE_STACKTRACE |
|
|
|
if HAVE_STACKTRACE |
|
|
|
check_PROGRAMS += stacktrace_test mrwexcstderr_test |
|
|
|
check_PROGRAMS += stacktrace_test mrwexcstderr_test |
|
|
|
if HAVE_LOG4CXX |
|
|
|
if HAVE_LOG4CXX |
|
|
@ -153,6 +156,12 @@ stdext_test_LDADD = -lmrw -lcppunit |
|
|
|
if HAVE_STACKTRACE |
|
|
|
if HAVE_STACKTRACE |
|
|
|
stdext_test_LDADD += -lmrwexcstderr |
|
|
|
stdext_test_LDADD += -lmrwexcstderr |
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
regexp_test_SOURCES = regexp_test.cpp version.cpp |
|
|
|
|
|
|
|
regexp_test_CPPFLAGS = -I.. -g3 |
|
|
|
|
|
|
|
regexp_test_LDADD = -lmrw -lcppunit |
|
|
|
|
|
|
|
if HAVE_STACKTRACE |
|
|
|
|
|
|
|
regexp_test_LDADD += -lmrwexcstderr |
|
|
|
|
|
|
|
endif |
|
|
|
if HAVE_STACKTRACE |
|
|
|
if HAVE_STACKTRACE |
|
|
|
stacktrace_test_SOURCES = stacktrace_test.cpp version.cpp |
|
|
|
stacktrace_test_SOURCES = stacktrace_test.cpp version.cpp |
|
|
|
stacktrace_test_CPPFLAGS = -I.. -g3 |
|
|
|
stacktrace_test_CPPFLAGS = -I.. -g3 |
|
|
|