Update of /cvsroot/mockpp/mockpp/mockpp/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20682/mockpp/config
Modified Files:
gen-config-common.sh
Log Message:
release beta1
Index: gen-config-common.sh
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/config/gen-config-common.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gen-config-common.sh 28 Dec 2005 19:43:08 -0000 1.3
+++ gen-config-common.sh 29 Dec 2005 12:29:51 -0000 1.4
@@ -16,7 +16,7 @@
#undef MOCKPP_USE_CPPUNIT
/* Define to 1 if you have the <cppunit/Message.h> header file. */
-#undef HAVE_CPPUNIT_MESSAGE_H
+#undef HAVE_CPPUNIT_MESSAGE_H
/* Define if you have CxxTest installed. */
#define MOCKPP_USE_CXXTEST
@@ -42,16 +42,26 @@
/* Define to supress compiler warnings about unused variables. */
#define MOCKPP_UNUSED(x) x;
+/* Define to enable built-in mini-stl. */
+/* #undef MOCKPP_USE_MINI_STL */
+/* #undef CXXTEST_USE_MINI_STL */
+
+/* Define to disable runtime type information. */
+/* #undef MOCKPP_NO_RTTI */
+
+/* Define to disable exceptions. */
+/* #undef MOCKPP_NO_EXCEPTIONS */
+
__EOF
-echo "/* Define to enable built-in mini-stl. */" >>$1
-grep MOCKPP_USE_MINI_STL ../config.h >>$1
-grep CXXTEST_USE_MINI_STL ../config.h >>$1
-echo >>$1
+#echo "/* Define to enable built-in mini-stl. */" >>$1
+#grep MOCKPP_USE_MINI_STL ../config.h >>$1
+#grep CXXTEST_USE_MINI_STL ../config.h >>$1
+#echo >>$1
-echo "/* Define to disable runtime type information. */" >>$1
-grep MOCKPP_NO_RTTI ../config.h >>$1
-echo >>$1
+#echo "/* Define to disable runtime type information. */" >>$1
+#grep MOCKPP_NO_RTTI ../config.h >>$1
+#echo >>$1
-echo "/* Define to disable exceptions. */" >>$1
-grep MOCKPP_NO_EXCEPTIONS ../config.h >>$1
+#echo "/* Define to disable exceptions. */" >>$1
+#grep MOCKPP_NO_EXCEPTIONS ../config.h >>$1
|