summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <dshaw@jabberwocky.com>2006-10-04 23:23:47 +0200
committerDavid Shaw <dshaw@jabberwocky.com>2006-10-04 23:23:47 +0200
commit23b7b9a77b1bc1ff565f5447c1bde7254252a500 (patch)
tree895e8e5e84df9e06abae388c81a985057d49d162
parentFix for make distcheck (diff)
downloadgnupg2-23b7b9a77b1bc1ff565f5447c1bde7254252a500.tar.xz
gnupg2-23b7b9a77b1bc1ff565f5447c1bde7254252a500.zip
* gpgrlhelp.c: readline requires stdio.h.
-rw-r--r--common/ChangeLog4
-rw-r--r--common/gpgrlhelp.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/common/ChangeLog b/common/ChangeLog
index edde6b8e2..12d42ae82 100644
--- a/common/ChangeLog
+++ b/common/ChangeLog
@@ -1,3 +1,7 @@
+2006-10-04 David Shaw <dshaw@jabberwocky.com>
+
+ * gpgrlhelp.c: readline requires stdio.h.
+
2006-10-04 Werner Koch <wk@g10code.com>
* membuf.c (init_membuf_secure): New.
diff --git a/common/gpgrlhelp.c b/common/gpgrlhelp.c
index 5fbc6731d..56a9ce28c 100644
--- a/common/gpgrlhelp.c
+++ b/common/gpgrlhelp.c
@@ -31,6 +31,7 @@
#ifdef HAVE_LIBREADLINE
#define GNUPG_LIBREADLINE_H_INCLUDED
+#include <stdio.h>
#include <readline/readline.h>
#include <readline/history.h>
#endif