diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2016-02-08 20:59:52 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2016-02-08 20:59:52 (GMT) |
commit | a9ec54e435c166c109a92143980cdbfca796ca3f (patch) | |
tree | 0e1b76cc5adbb429fed6e68f7e637b909965c230 | |
parent | b45184e1a26273258d1c901b5e1d9ee274e96243 (diff) | |
parent | 8d4936fdbfa07d122fed78e96111912f3f297869 (diff) | |
download | mxe-a9ec54e435c166c109a92143980cdbfca796ca3f.zip mxe-a9ec54e435c166c109a92143980cdbfca796ca3f.tar.gz mxe-a9ec54e435c166c109a92143980cdbfca796ca3f.tar.bz2 |
Merge pull request #1211 from fiesh/coin-patch
add Coin bug fixes from Gentoo
-rw-r--r-- | src/coin-2-gcc-4.7.patch | 16 | ||||
-rw-r--r-- | src/coin-test.cpp | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/src/coin-2-gcc-4.7.patch b/src/coin-2-gcc-4.7.patch new file mode 100644 index 0000000..28a9d93 --- /dev/null +++ b/src/coin-2-gcc-4.7.patch @@ -0,0 +1,16 @@ +This file is part of MXE. +See index.html for further information. + +This patch was taken from Gentoo: +https://gitweb.gentoo.org/repo/gentoo.git/tree/media-libs/coin/files/coin-3.1.3-gcc-4.7.patch?id=17d7c853393ff83e3422e48e9ad2810f23889bbf + +--- coin3-3.1.3.orig/include/Inventor/SbBasic.h ++++ coin3-3.1.3/include/Inventor/SbBasic.h +@@ -24,6 +24,7 @@ + * + \**************************************************************************/ + ++#include <Inventor/C/errors/debugerror.h> + #include <Inventor/C/basic.h> + + /* ********************************************************************** */ diff --git a/src/coin-test.cpp b/src/coin-test.cpp index 0974407..be5eacf 100644 --- a/src/coin-test.cpp +++ b/src/coin-test.cpp @@ -3,7 +3,7 @@ * See index.html for further information. */ -#include <Inventor/C/errors/debugerror.h> +#include <Inventor/SbBasic.h> #include <Inventor/nodes/SoCone.h> #include <Inventor/nodes/SoDirectionalLight.h> #include <Inventor/nodes/SoMaterial.h> |