Update of /cvsroot/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19970
Modified Files:
ChangeLog configure.in run-configure-unicode.sh
Log Message:
more namespace disabling
Index: run-configure-unicode.sh
===================================================================
RCS file: /cvsroot/mockpp/mockpp/run-configure-unicode.sh,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- run-configure-unicode.sh 19 Mar 2006 16:26:49 -0000 1.20
+++ run-configure-unicode.sh 5 Apr 2006 17:03:35 -0000 1.21
@@ -2,10 +2,14 @@
MYFLAGS="-O0 -g3 -Wall -Werror"
#-pedantic
+MYCC="g++";
+
if which "gcc-4.0" 2>/dev/null >/dev/null; then
MYCC="g++-4.0";
-else
- MYCC="g++";
+fi
+
+if which "gcc-4.1" 2>/dev/null >/dev/null; then
+ MYCC="g++-4.1";
fi
if which "ccache" 2>/dev/null >/dev/null; then
@@ -15,7 +19,7 @@
echo MYCC: $MYCC
#OPTS="--enable-doxygen --enable-docbook"
-#OPTS="$OPTS --enable-builtin-stl" # --disable-exceptions --disable-rtti
+OPTS="$OPTS --enable-builtin-stl" # --disable-rtti" # --disable-exceptions"
OPTS="$OPTS --enable-debug=full"
OPTS="$OPTS --disable-namespace"
#OPTS="$OPTS --disable-builtin-cxxtest --enable-cppunit"
Index: ChangeLog
===================================================================
RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- ChangeLog 22 Mar 2006 19:13:34 -0000 1.103
+++ ChangeLog 5 Apr 2006 17:03:35 -0000 1.104
@@ -4,12 +4,14 @@
--------------
2006-03-23 1.11.4
- - added script to retrieve data from configure
+ - added script to retrieve data from configure for use in other
+ libraries
- added compiler switches to disable namespaces
for built-in sources to support older compilers
at least partially
- inline TimeServer class methods to make it independent
from the library
+ - fixes for g++ 4.1
2006-03-05 1.11.3
Index: configure.in
===================================================================
RCS file: /cvsroot/mockpp/mockpp/configure.in,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -d -r1.116 -r1.117
--- configure.in 19 Mar 2006 16:26:49 -0000 1.116
+++ configure.in 5 Apr 2006 17:03:35 -0000 1.117
@@ -466,6 +466,8 @@
AC_MSG_RESULT(yes)
else
AC_DEFINE(MOCKPP_NO_STD_NS, 1, [Define if the std namespace is missing.])
+ AC_DEFINE(CXXTEST_NO_STD_NS, 1, [Define if the std namespace is missing.])
+ AC_DEFINE(MINISTL_NO_STD_NS, 1, [Define if the std namespace is missing.])
AC_MSG_RESULT(no)
fi
|