blob: 1e13ebce38e28414b05d6ade48156663822764d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Description: Fix compilation of C++ MEX files with GCC 4.8
The header mex.h was including mexproto.h within an extern "C" block. In turn,
mexproto.h includes cstdlib.
.
Apparently, including cstdlib within an extern "C" block was working with GCC
4.7, but this is no longer the case with GCC 4.8.
.
The fix consists in including mexproto.h outside of the extern "C" block.
Author: Sébastien Villemot <sebastien@debian.org>
Bug: https://savannah.gnu.org/bugs/index.php?38746
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705485
Last-Update: 2013-05-29
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/mex.h
+++ b/src/mex.h
@@ -64,6 +64,8 @@
#define mxMAXNAME 64
+#include "mexproto.h"
+
#if defined (__cplusplus)
extern "C" {
#endif
@@ -74,8 +76,6 @@
void mexFunction (int nlhs, mxArray* plhs[], int nrhs, const mxArray *prhs[]);
#endif
-#include "mexproto.h"
-
/* V4 floating point routines renamed in V5. */
#define mexIsNaN mxIsNaN
#define mexIsFinite mxIsFinite
|