From 77c97dd292f31801d2a9bf1cfc18555abd7d4bd2 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 20 Aug 2010 04:04:44 +0000 Subject: various patches either incorporated or made obsolete by 0.43 svn path=/trunk/; revision=13865 --- packages/patches/fix_extra_for_mingw-0.42.5.patch | 74 ----------------------- 1 file changed, 74 deletions(-) delete mode 100644 packages/patches/fix_extra_for_mingw-0.42.5.patch (limited to 'packages/patches/fix_extra_for_mingw-0.42.5.patch') diff --git a/packages/patches/fix_extra_for_mingw-0.42.5.patch b/packages/patches/fix_extra_for_mingw-0.42.5.patch deleted file mode 100644 index 7267220b..00000000 --- a/packages/patches/fix_extra_for_mingw-0.42.5.patch +++ /dev/null @@ -1,74 +0,0 @@ ---- branches/pd-extended/0.42/pd/extra/bonk~/bonk~.c 2009/06/08 15:04:10 11713 -+++ branches/pd-extended/0.42/pd/extra/bonk~/bonk~.c 2009/06/08 17:43:16 11714 -@@ -53,7 +53,7 @@ - #include - #include - --#ifdef NT -+#ifdef _MSC_VER - #pragma warning (disable: 4305 4244) - #endif - -@@ -82,7 +82,12 @@ - #endif - - #ifndef _MSC_VER --#include -+# ifdef __MINGW32__ -+/* alloca is in malloc.h in MinGW */ -+# include -+# else -+# include -+# endif - #endif - - /* ------------------------ bonk~ ----------------------------- */ ---- branches/pd-extended/0.42/pd/extra/fiddle~/fiddle~.c 2009/06/08 15:04:10 11713 -+++ branches/pd-extended/0.42/pd/extra/fiddle~/fiddle~.c 2009/06/08 17:43:16 11714 -@@ -28,7 +28,7 @@ - * - */ - --#ifdef NT -+#ifdef _MSC_VER /* this is only needed with Microsoft's compiler */ - #define flog log - #define fexp exp - #define fsqrt sqrt ---- branches/pd-extended/0.42/pd/extra/pique/pique.c 2009/06/08 15:04:10 11713 -+++ branches/pd-extended/0.42/pd/extra/pique/pique.c 2009/06/08 17:43:16 11714 -@@ -7,7 +7,7 @@ - #include "m_pd.h" - #include - #include --#ifdef NT -+#ifdef _MSC_VER /* this is only needed with Microsoft's compiler */ - #pragma warning( disable : 4244 ) - #pragma warning( disable : 4305 ) - #endif ---- branches/pd-extended/0.42/pd/extra/sigmund~/sigmund~.c 2009/06/08 15:04:10 11713 -+++ branches/pd-extended/0.42/pd/extra/sigmund~/sigmund~.c 2009/06/08 17:43:16 11714 -@@ -13,7 +13,7 @@ - and usable in other contexts. The one external requirement is a real - single-precision FFT, invoked as in the Mayer one: */ - --#ifdef NT -+#ifdef _MSC_VER /* this is only needed with Microsoft's compiler */ - __declspec(dllimport) extern - #endif - void mayer_realfft(int npoints, float *buf); -@@ -26,13 +26,13 @@ - #include - #include - #include --#ifdef NT -+#ifdef _WIN32 - #include - #else - #include - #endif - #include --#ifdef NT -+#ifdef _MSC_VER /* this is only needed with Microsoft's compiler */ - #pragma warning( disable : 4244 ) - #pragma warning( disable : 4305 ) - #endif -- cgit v1.2.1