diff options
author | schwarz <schwarz@pkgsrc.org> | 2005-03-01 21:24:07 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2005-03-01 21:24:07 +0000 |
commit | 303d5e4f135f0c1b0a7f87bfee7f83528a10138d (patch) | |
tree | 824ba68ed7bbf16b8f0b01bc8b2d276d5b39a121 /devel/cfitsio | |
parent | 6a7e1d352446976338b740760277b7ac8077b1e6 (diff) | |
download | pkgsrc-303d5e4f135f0c1b0a7f87bfee7f83528a10138d.tar.gz |
IRIX 5 also needs sys/types.h here. IRIX 6 does not need it, but it has
been tested not to cause any harm there.
Diffstat (limited to 'devel/cfitsio')
-rw-r--r-- | devel/cfitsio/distinfo | 3 | ||||
-rw-r--r-- | devel/cfitsio/patches/patch-ac | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/cfitsio/distinfo b/devel/cfitsio/distinfo index 49600dba41c..41b3888fc12 100644 --- a/devel/cfitsio/distinfo +++ b/devel/cfitsio/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 22:24:11 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/03/01 21:24:07 schwarz Exp $ SHA1 (cfitsio2500.tar.gz) = b9c294b3705fe40d9057877f2f11baa2f598430b RMD160 (cfitsio2500.tar.gz) = 4be86aa902d9a54644eeca2a6d8113a1003cc0c8 Size (cfitsio2500.tar.gz) = 2050459 bytes SHA1 (patch-aa) = 7ece0dc8537ddc98f9c46d2162145590ed7a00d3 SHA1 (patch-ab) = ecfee3ba35fdf09a47dbac9e2ab44ba8b90a226c +SHA1 (patch-ac) = 49d54c6dccfb365f0e6c61056383839a8b34560c diff --git a/devel/cfitsio/patches/patch-ac b/devel/cfitsio/patches/patch-ac new file mode 100644 index 00000000000..d228780848a --- /dev/null +++ b/devel/cfitsio/patches/patch-ac @@ -0,0 +1,11 @@ +--- fitsio.h.orig 2005-03-01 19:40:45.000000000 +0100 ++++ fitsio.h +@@ -38,7 +38,7 @@ + + #include <stdio.h> + +-#if defined(linux) || defined(__APPLE__) ++#if defined(linux) || defined(__APPLE__) || defined(__sgi) + # include <sys/types.h> /* apparently needed on debian linux systems */ + #endif /* to define off_t */ + |