You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/octave/files/octave-3.6.4-gcc-4.8.patch

35 lines
1.0 KiB

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