summaryrefslogtreecommitdiff
path: root/include/cppunit
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-06-17 21:32:16 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-06-17 21:32:16 +0000
commit7cafa0d515eab99e3d5f92d8fc8a6aa42f30f6fe (patch)
tree5151606aded92fc70033284457c25303519819a7 /include/cppunit
parent3453d13964327fc8655147d6370f6818cf54524e (diff)
downloadcppunit-7cafa0d515eab99e3d5f92d8fc8a6aa42f30f6fe.tar.gz
Add AC_PREREQ; remove include/cppunit/config.h
Diffstat (limited to 'include/cppunit')
-rw-r--r--include/cppunit/config.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/cppunit/config.h b/include/cppunit/config.h
deleted file mode 100644
index e515a51..0000000
--- a/include/cppunit/config.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef CPPUNIT_CONFIG_H
-#define CPPUNIT_CONFIG_H
-
-/* Default configuration for VC++ 6.0.
- * On Unix platform, this file is generated by the configure script.
- *
- * Since we don't have that in everyday VC++, we define this header with
- * reasonable default:
- * - RTTI enabled
- * - compatibility with old assert macro, now replaced with CPPUNIT_ASSERT.
- * - preprocessor can expand expression
- *
- * Define the symbol CPPUNIT_DONT_USE_TYPEINFO to disable RTTI.
- * Define the symbol CPPUNIT_DISABLE_NAKED_ASSERT to disable naked assert.
- */
-
-/* Define to 1 if the compiler supports Run-Time Type Identification */
-#ifdef CPPUNIT_DONT_USE_TYPEINFO
-#define CPPUNIT_USE_TYPEINFO 0
-#else
-#define CPPUNIT_USE_TYPEINFO 1
-#endif
-
-/* Define to 1 if you wish to have the old-style macros
- assert(), assertEqual(), assertDoublesEqual(), and assertLongsEqual() */
-#ifdef CPPUNIT_DISABLE_NAKED_ASSERT
-#define CPPUNIT_ENABLE_NAKED_ASSERT 0
-#else
-#define CPPUNIT_ENABLE_NAKED_ASSERT 1
-#endif
-
-/* Define to 1 if the preprocessor expands (#foo) to "foo" (quotes incl.) */
-#define CPPUNIT_HAVE_CPP_SOURCEANNOTATION 1
-
-#pragma warning( disable: 4786 )
-
-#endif