[Mockpp-commits] mockpp ChangeLog,1.81,1.82 Makefile.am,1.34,1.35 acinclude.m4,1.1,1.2 configure.in,
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-11-27 17:28:13
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7837 Modified Files: ChangeLog Makefile.am acinclude.m4 configure.in run-configure-unicode.sh Log Message: optionally disable exceptions Index: run-configure-unicode.sh =================================================================== RCS file: /cvsroot/mockpp/mockpp/run-configure-unicode.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- run-configure-unicode.sh 27 Nov 2005 15:34:36 -0000 1.7 +++ run-configure-unicode.sh 27 Nov 2005 17:27:56 -0000 1.8 @@ -8,6 +8,7 @@ fi echo mycc: $MYCC -OPTS="--enable-doxygen --enable-docbook --disable-rtti" +# --disable-rtti --disable-exceptions +OPTS="--enable-doxygen --enable-docbook" CFLAGS="$MYFLAGS" CXXFLAGS="$MYFLAGS" CXX=$MYCC CC=$MYCC ${0%/*}/configure --enable-unicode --enable-debug=full $OPTS --prefix=/tmp/mockpp-install Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- ChangeLog 27 Nov 2005 15:34:36 -0000 1.81 +++ ChangeLog 27 Nov 2005 17:27:56 -0000 1.82 @@ -8,6 +8,7 @@ - fix compilation error due to bad namespace resolution - provide ways for alternative STL - optionally disable runtime type information (rtti) + - optionally disable exceptions 2005-11-19 1.10.0: Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/Makefile.am,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- Makefile.am 27 Nov 2005 15:40:50 -0000 1.34 +++ Makefile.am 27 Nov 2005 17:27:56 -0000 1.35 @@ -1,4 +1,4 @@ -SUBDIRS = tool mockpp bcb5 bcb6 bcbX msvc6 msvc7 msvc71 +SUBDIRS = tool config mockpp bcb5 bcb6 bcbX msvc6 msvc7 msvc71 LIBTOOL_DEPS = @LIBTOOL_DEPS@ Index: acinclude.m4 =================================================================== RCS file: /cvsroot/mockpp/mockpp/acinclude.m4,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- acinclude.m4 27 Nov 2005 15:39:14 -0000 1.1 +++ acinclude.m4 27 Nov 2005 17:27:56 -0000 1.2 @@ -1 +1,2 @@ sinclude(config/ac_cxx_rtti.m4) +sinclude(config/ac_cxx_except.m4) Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.96 retrieving revision 1.97 diff -u -d -r1.96 -r1.97 --- configure.in 27 Nov 2005 15:34:36 -0000 1.96 +++ configure.in 27 Nov 2005 17:27:56 -0000 1.97 @@ -361,6 +361,8 @@ # ---------------------------------------------------------------------------- AC_CXX_RTTI + +EA_DISABLE_EXCEPTIONS EA_DISABLE_RTTI EA_ENABLE_DOCBOOK EA_CHECK_LIBDL @@ -432,6 +434,7 @@ bcbX/Makefile \ bcbX/cppunit-lib/Makefile \ \ + config/Makefile \ tool/Makefile \ \ msvc6/Makefile \ |