diff options
author | steve <steve@FreeBSD.org> | 1999-05-24 10:24:00 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-05-24 10:24:00 +0800 |
commit | d1d53f5407837d56eca862774bbf00d6411e808b (patch) | |
tree | 46b782f0a8820977ef83928ac203f881c69faa03 | |
parent | ba3d417365a1dc9725d9da45ccf2b2c1866a110e (diff) | |
download | freebsd-ports-gnome-d1d53f5407837d56eca862774bbf00d6411e808b.tar.gz freebsd-ports-gnome-d1d53f5407837d56eca862774bbf00d6411e808b.tar.zst freebsd-ports-gnome-d1d53f5407837d56eca862774bbf00d6411e808b.zip |
Make this at least build on the Alpha and mark it broken since it fails
a few tests.
-rw-r--r-- | math/PDL/Makefile | 6 | ||||
-rw-r--r-- | math/PDL/files/patch-gg | 12 |
2 files changed, 17 insertions, 1 deletions
diff --git a/math/PDL/Makefile b/math/PDL/Makefile index 9001ffaab336..c265d997a371 100644 --- a/math/PDL/Makefile +++ b/math/PDL/Makefile @@ -3,7 +3,7 @@ # Date created: 08 February 1999 # Whom: Anton Berezin <tobez@plab.ku.dk> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1999/04/03 02:13:53 steve Exp $ # DISTNAME= PDL-2.0 @@ -23,6 +23,10 @@ SCRIPTS_ENV= PERL=${PERL} .include <bsd.port.pre.mk> +.if ${MACHINE_ARCH} == "alpha" +BROKEN= test script t/flexraw.t fails all 26 tests +.endif + MAN1= PDL::Philosophy.1 PDL::Internals.1 PDL::PP.1 PDL::Tips.1 \ PDL::Dataflow.1 PDL::Indexing.1 PDL::FAQ.1 PDL::Delta.1 \ PDL::Objects.1 PDL::Impatient.1 pdl.1 pod2usage.1 podselect.1 \ diff --git a/math/PDL/files/patch-gg b/math/PDL/files/patch-gg new file mode 100644 index 000000000000..a718b011ed6c --- /dev/null +++ b/math/PDL/files/patch-gg @@ -0,0 +1,12 @@ +--- Basic/Math/mconf.h.orig Sun May 23 10:53:29 1999 ++++ Basic/Math/mconf.h Sun May 23 10:55:49 1999 +@@ -75,7 +75,9 @@ + #endif + #if defined __alpha + #include <float.h> ++#ifndef __FreeBSD__ + #include <nan.h> ++#endif + #endif + #ifndef NANARG + #define NANARG |