diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-24 02:24:00 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-24 02:24:00 +0000 |
commit | 2ed596d2e6f4fe0a21870148a186e3d2918a0371 (patch) | |
tree | 32f386c8ab19a367594d6b7e6185612dd251da9f /math/PDL | |
parent | Update to version 0.1.1. (diff) |
Make this at least build on the Alpha and mark it broken since it fails
a few tests.
Diffstat (limited to 'math/PDL')
-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 |