diff options
author | agc <agc> | 2002-06-28 08:00:27 +0000 |
---|---|---|
committer | agc <agc> | 2002-06-28 08:00:27 +0000 |
commit | 7b5a60d564f82ec65decabbd1057de29b5444924 (patch) | |
tree | 1f24a47a96619ef99aa829b1ed77228e122aee4d /math/pspp | |
parent | 328a53cf57520ddffc0952177253f508e65dad64 (diff) | |
download | pkgsrc-7b5a60d564f82ec65decabbd1057de29b5444924.tar.gz |
On 1.6 and above, <readline/history.h> needs <stdio.h> to be included
specifically - do so.
Diffstat (limited to 'math/pspp')
-rw-r--r-- | math/pspp/distinfo | 3 | ||||
-rw-r--r-- | math/pspp/patches/patch-aj | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/math/pspp/distinfo b/math/pspp/distinfo index 29b7a02b6b2..58df2ef8263 100644 --- a/math/pspp/distinfo +++ b/math/pspp/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2002/03/07 06:46:19 jmc Exp $ +$NetBSD: distinfo,v 1.4 2002/06/28 08:00:27 agc Exp $ SHA1 (pspp-0.3.0.tar.gz) = 1d07a7e7ef0677e5934331ed0b80b92c7bba7074 Size (pspp-0.3.0.tar.gz) = 1122999 bytes @@ -10,3 +10,4 @@ SHA1 (patch-ae) = 9f3f6cbe2817ab5282e70559e245cf7df0016ba3 SHA1 (patch-ag) = 3a565a2becf76af67e1cf6b443ed51e24b4fd0f0 SHA1 (patch-ah) = 8fd5821c09fcc5ea4f96a198186c99e0d958842d SHA1 (patch-ai) = f6886d4cd3779f71353dc0e013f3b37b86fe7474 +SHA1 (patch-aj) = e34a0638b8226efdf33cee4eccd40fc4dcaf6210 diff --git a/math/pspp/patches/patch-aj b/math/pspp/patches/patch-aj new file mode 100644 index 00000000000..3b173638674 --- /dev/null +++ b/math/pspp/patches/patch-aj @@ -0,0 +1,12 @@ +$NetBSD: patch-aj,v 1.1 2002/06/28 08:00:29 agc Exp $ + +--- src/glob.c 2002/06/28 07:57:05 1.1 ++++ src/glob.c 2002/06/28 07:57:47 +@@ -44,6 +44,7 @@ + + #if HAVE_LIBHISTORY + #if HAVE_READLINE_HISTORY_H ++#include <stdio.h> + #include <readline/history.h> + #else /* no readline/history.h */ + extern void using_history (); |