Update of /cvsroot/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7221
Modified Files:
ChangeLog Makefile.am configure.in gen_files_N.sh
Log Message:
restructuring and cleanup
Index: ChangeLog
===================================================================
RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -d -r1.84 -r1.85
--- ChangeLog 8 Dec 2005 17:33:59 -0000 1.84
+++ ChangeLog 10 Dec 2005 20:07:20 -0000 1.85
@@ -11,6 +11,10 @@
- optionally disable exceptions
- project files MSVC2005 Express (free as in beer)
- fixed compilation problem with msvc
+ - removed msvc6/7/bcb6/bcbX project trees (not working/supported)
+ - compatibility break: moved all visitable files to mockpp/visiting
+ - compatibility break: moved all chainableable files to mockpp/chaining
+ - compatibility break: moved all framework related files to mockpp/framework
2005-11-19 1.10.0:
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/Makefile.am,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- Makefile.am 8 Dec 2005 17:33:59 -0000 1.37
+++ Makefile.am 10 Dec 2005 20:07:20 -0000 1.38
@@ -1,4 +1,4 @@
-SUBDIRS = tool config 3party mockpp bcb5 bcb6 bcbX msvc6 msvc7 msvc71 msvc2005
+SUBDIRS = tool config 3party mockpp bcb5 msvc71 msvc2005
LIBTOOL_DEPS = @LIBTOOL_DEPS@
Index: gen_files_N.sh
===================================================================
RCS file: /cvsroot/mockpp/mockpp/gen_files_N.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gen_files_N.sh 30 Oct 2005 13:53:00 -0000 1.3
+++ gen_files_N.sh 10 Dec 2005 20:07:20 -0000 1.4
@@ -15,10 +15,10 @@
( cd mockpp/chaining ; ./gen_invocation_N.pl $p )
( cd mockpp/chaining ; ./gen_chainablemethod_N.pl $p )
( cd mockpp/chaining ; ./gen_countchainable_N.pl $p )
-( cd mockpp ; ./gen_responsevector_N.pl $p )
-( cd mockpp ; ./gen_visitablemethod_N.pl $p )
+( cd mockpp/visiting ; ./gen_responsevector_N.pl $p )
+( cd mockpp/visiting ; ./gen_visitablemethod_N.pl $p )
+( cd mockpp/visiting ; ./gen_countvisitable_N.pl $p )
( cd mockpp/builder ; ./gen_argumentsmatchbuilder_N.pl $p )
( cd mockpp/constraint ; ./gen_constraintset_N.pl $p )
( cd mockpp ; ./gen_countparams_N.pl $p )
-( cd mockpp ; ./gen_countvisitable_N.pl $p )
Index: configure.in
===================================================================
RCS file: /cvsroot/mockpp/mockpp/configure.in,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- configure.in 10 Dec 2005 15:18:52 -0000 1.103
+++ configure.in 10 Dec 2005 20:07:20 -0000 1.104
@@ -442,10 +442,6 @@
Makefile \
\
bcb5/Makefile \
- bcb6/Makefile \
- \
- bcbX/Makefile \
- bcbX/cppunit-lib/Makefile \
\
3party/Makefile \
3party/ministl/Makefile \
@@ -458,15 +454,6 @@
config/Makefile \
tool/Makefile \
\
- msvc6/Makefile \
- msvc6/lib/Makefile \
- msvc6/mockpp/Makefile \
- msvc6/mockpp/examples/Makefile \
- msvc6/mockpp/examples/tutorial/Makefile \
- msvc6/mockpp/tests/Makefile \
- \
- msvc7/Makefile \
- \
msvc71/Makefile \
msvc71/lib/Makefile \
msvc71/mockpp/Makefile \
@@ -489,6 +476,7 @@
mockpp/docs/en/images/callouts/Makefile \
\
mockpp/po/Makefile \
+ mockpp/config/Makefile \
mockpp/tests/Makefile \
mockpp/examples/Makefile \
mockpp/examples/tutorial/Makefile \
@@ -496,7 +484,9 @@
mockpp/Makefile \
mockpp/util/Makefile \
mockpp/compat/Makefile \
+ mockpp/visiting/Makefile \
\
+ mockpp/framework/Makefile \
mockpp/production/Makefile \
\
mockpp/chaining/Makefile \
|