diff options
| author | Martin Wilke <miwi@FreeBSD.org> | 2008-01-03 21:03:32 +0000 |
|---|---|---|
| committer | Martin Wilke <miwi@FreeBSD.org> | 2008-01-03 21:03:32 +0000 |
| commit | a5bd6498ec1300b7dc550825df75f98e548fcc58 (patch) | |
| tree | 75961557aa0cb4bf007c75f67d423ad19b405297 /math/asir2000/files | |
| parent | - Fix build with sparc64 (diff) | |
The math/asir2000 port includes the <sgtty.h> header file on FreeBSD,
even though it isn't needed (one might wonder which platform *does* need
it). We'd better not include it, because sgtty.h has been deprecated for
a very very long time.
PR: 119106
Submitted by: Ed Schouten <ed@fxq.nl>
Approved by: maintainer
Diffstat (limited to 'math/asir2000/files')
| -rw-r--r-- | math/asir2000/files/patch-ag | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/math/asir2000/files/patch-ag b/math/asir2000/files/patch-ag index 6ac60758df5f..32dbafe4d817 100644 --- a/math/asir2000/files/patch-ag +++ b/math/asir2000/files/patch-ag @@ -1,6 +1,6 @@ --- parse/glob.c.orig Thu Jan 4 00:48:08 2007 +++ parse/glob.c Wed Jul 18 12:25:46 2007 -@@ -51,6 +51,7 @@ +@@ -51,10 +51,11 @@ #include "al.h" #include "parse.h" #include "ox.h" @@ -8,6 +8,11 @@ #if defined(PARI) #include "genpari.h" #endif +-#if !defined(VISUAL) && !defined(_PA_RISC1_1) && !defined(linux) && !defined(SYSV) && !defined(__CYGWIN__) && !defined(__INTERIX) ++#if !defined(VISUAL) && !defined(_PA_RISC1_1) && !defined(linux) && !defined(SYSV) && !defined(__CYGWIN__) && !defined(__INTERIX) && !defined(__FreeBSD__) + #include <sgtty.h> + #endif + @@ -765,7 +766,7 @@ char *get_pariversion() { |
