summaryrefslogtreecommitdiff
path: root/cppunit/windows.patch
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-06-27 18:41:54 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-06-27 19:09:50 +0200
commitfa0fd16526f05e37e10af7a367c9950a974d7c90 (patch)
treed1861166ba6fd60e4b6f8cb44c3fc07aae6aa41b /cppunit/windows.patch
parent887fc099c118da335e8a507db9521437f5bd2e82 (diff)
update cppunit to 1.13.0
Change-Id: If3896361c31a84b77e4c446dac75aeb9268605a0
Diffstat (limited to 'cppunit/windows.patch')
-rw-r--r--cppunit/windows.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/cppunit/windows.patch b/cppunit/windows.patch
deleted file mode 100644
index 9c510bb6d604..000000000000
--- a/cppunit/windows.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- misc/cppunit-1.12.1/include/cppunit/plugin/TestPlugIn.h 2010-01-11 14:42:25.084658287 +0100
-+++ misc/build/cppunit-1.12.1/include/cppunit/plugin/TestPlugIn.h 2010-01-11 14:42:18.660706180 +0100
-@@ -133,9 +133,8 @@
- /*! \def CPPUNIT_PLUGIN_IMPLEMENT_MAIN()
- * \brief Implements the 'main' function for the plug-in.
- *
-- * This macros implements the main() function for dynamic library.
-- * For example, WIN32 requires a DllMain function, while some Unix
-- * requires a main() function. This macros takes care of the implementation.
-+ * This macro implements the main() function for dynamic library
-+ * on Unix for some weird reason.
- */
-
- // Win32
-@@ -149,21 +149,7 @@
-
- // Win32
- #if defined(CPPUNIT_HAVE_WIN32_DLL_LOADER)
--#if !defined(APIENTRY)
--#define WIN32_LEAN_AND_MEAN
--#define NOGDI
--#define NOUSER
--#define NOKERNEL
--#define NOSOUND
--#define NOMINMAX
--#define BLENDFUNCTION void // for mingw & gcc
--#include <windows.h>
--#endif
- #define CPPUNIT_PLUGIN_IMPLEMENT_MAIN() \
-- BOOL APIENTRY DllMain( HANDLE, DWORD, LPVOID ) \
-- { \
-- return TRUE; \
-- } \
- typedef char __CppUnitPlugInImplementMainDummyTypeDef
-
- // Unix
---- misc/cppunit-1.12.1/include/cppunit/TestAssert.h
-+++ misc/build/cppunit-1.12.1/include/cppunit/TestAssert.h
-@@ -76,7 +76,7 @@
- const int precision = 15;
- #endif // #ifdef DBL_DIG
- char buffer[128];
--#ifdef __STDC_SECURE_LIB__ // Use secure version with visual studio 2005 to avoid warning.
-+#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__) // Use secure version with visual studio 2005 to avoid warning.
- sprintf_s(buffer, sizeof(buffer), "%.*g", precision, x);
- #else
- sprintf(buffer, "%.*g", precision, x);
-