Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2012-04-24 20:14:23 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-04-24 20:14:23 +0400
commit4e6590067d5c398479d0d041b3afacc26d24061d (patch)
tree6b3bc29116a7212d4ab56367016f8b6e799b705f /extern/bullet2/patches
parent749d284b498fb1cde7996d712497ce478c978f3a (diff)
revert 45924, not a very clean solution, especially for external libraries and looks like -fpermissive is used in linux too
Diffstat (limited to 'extern/bullet2/patches')
-rw-r--r--extern/bullet2/patches/MinGW64-nopermissive.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/extern/bullet2/patches/MinGW64-nopermissive.patch b/extern/bullet2/patches/MinGW64-nopermissive.patch
deleted file mode 100644
index 915f232f6d7..00000000000
--- a/extern/bullet2/patches/MinGW64-nopermissive.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: LinearMath/btSerializer.h
-===================================================================
---- LinearMath/btSerializer.h (revision 45919)
-+++ LinearMath/btSerializer.h (working copy)
-@@ -25,8 +25,15 @@
- #endif
- #include <string.h>
-
-+#if defined(_WIN64)
-+# ifdef __MINGW64__
-+# include <basetsd.h>
-+# endif
-+typedef __int64 int_ptr;
-+#else
-+typedef long int_ptr;
-+#endif
-
--
- ///only the 32bit versions for now
- extern unsigned char sBulletDNAstr[];
- extern int sBulletDNAlen;
-@@ -247,7 +254,7 @@
- cp++;
- }
- {
-- nr= (long)cp;
-+ nr= (int_ptr)cp;
- // long mask=3;
- nr= ((nr+3)&~3)-nr;
- while (nr--)
-@@ -282,7 +289,7 @@
- }
-
- {
-- nr= (long)cp;
-+ nr= (int_ptr)cp;
- // long mask=3;
- nr= ((nr+3)&~3)-nr;
- while (nr--)