diff options
author | marcus <marcus@FreeBSD.org> | 2004-12-11 02:38:50 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-12-11 02:38:50 +0000 |
commit | 39c53f0a061e5bf6bc3fd0d4551cf2c8f94f00a7 (patch) | |
tree | ab7d3e26d254770b0467ae324ca2a1f9526bbafd /math | |
parent | 056a8bcc8ef622f1dbef678eb083b70d2c64deb2 (diff) | |
download | FreeBSD-ports-39c53f0a061e5bf6bc3fd0d4551cf2c8f94f00a7.zip FreeBSD-ports-39c53f0a061e5bf6bc3fd0d4551cf2c8f94f00a7.tar.gz |
Include sys/types.h when including ieeefp.h to fix the build on ia64.
Reported by: pointyhat via kris
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric2/files/patch-src_numbers.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/math/gnumeric2/files/patch-src_numbers.h b/math/gnumeric2/files/patch-src_numbers.h new file mode 100644 index 0000000..6448e88 --- /dev/null +++ b/math/gnumeric2/files/patch-src_numbers.h @@ -0,0 +1,10 @@ +--- src/numbers.h.orig Fri Dec 10 21:36:23 2004 ++++ src/numbers.h Fri Dec 10 21:37:02 2004 +@@ -3,6 +3,7 @@ + + #include <math.h> + #ifdef HAVE_IEEEFP_H ++#include <sys/types.h> + #include <ieeefp.h> + #endif + #ifdef HAVE_IEEE754_H |