[Mockpp-commits] mockpp ChangeLog,1.85,1.86 TODO,1.51,1.52 release-check,1.3,1.4
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-12-28 19:41:06
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15011 Modified Files: ChangeLog TODO release-check Log Message: prepare release Index: TODO =================================================================== RCS file: /cvsroot/mockpp/mockpp/TODO,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- TODO 28 Dec 2005 09:23:29 -0000 1.51 +++ TODO 28 Dec 2005 19:40:58 -0000 1.52 @@ -7,6 +7,8 @@ ThreadedTest +Boost.Test + DOC: ---- Index: release-check =================================================================== RCS file: /cvsroot/mockpp/mockpp/release-check,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- release-check 18 Dec 2005 16:56:22 -0000 1.3 +++ release-check 28 Dec 2005 19:40:58 -0000 1.4 @@ -9,7 +9,7 @@ rm -rf /tmp/$1 tar xzf $2/$1.tar.gz cd $1 -./configure --prefix=$BUILD/_inst1 --enable-unicode --enable-builtin-stl --enable-builtin-cxxtest || exit 1 +./configure --prefix=$BUILD/_inst1 --enable-unicode --enable-builtin-stl || exit 1 make install || exit 1 make check || exit 1 make dist || exit 1 @@ -17,7 +17,7 @@ make distclean cd $BUILD -../$1/configure --prefix=$BUILD/_inst2 --enable-doxygen --enable-docbook || exit 1 +../$1/configure --prefix=$BUILD/_inst2 --enable-doxygen --enable-docbook --disable-builtin-cxxtest --enable-cppunit || exit 1 make install || exit 1 make check || exit 1 make dist || exit 1 Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.85 retrieving revision 1.86 diff -u -d -r1.85 -r1.86 --- ChangeLog 10 Dec 2005 20:07:20 -0000 1.85 +++ ChangeLog 28 Dec 2005 19:40:58 -0000 1.86 @@ -9,12 +9,14 @@ - provide ways for alternative STL - optionally disable runtime type information (rtti) - optionally disable exceptions - - project files MSVC2005 Express (free as in beer) + - project files MSVC2005 Express (this one is free as in beer) - fixed compilation problem with msvc - - removed msvc6/7/bcb6/bcbX project trees (not working/supported) + - removed msvc6/msvc7/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 + - CxxTest (built-in version) is default test framework now, + CppUnit remains an option 2005-11-19 1.10.0: |