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/patches | |
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/patches')
-rw-r--r-- | math/pspp/patches/patch-aj | 12 |
1 files changed, 12 insertions, 0 deletions
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 (); |