[svn] GnuPG - r3914 - trunk/m4
svn author dshaw
cvs at cvs.gnupg.org
Fri Oct 21 17:03:19 CEST 2005
Author: dshaw
Date: 2005-10-21 17:03:18 +0200 (Fri, 21 Oct 2005)
New Revision: 3914
Modified:
trunk/m4/ChangeLog
trunk/m4/readline.m4
Log:
* readline.m4: Check for rl_completion_func_t and rl_completion_matches.
Modified: trunk/m4/ChangeLog
===================================================================
--- trunk/m4/ChangeLog 2005-10-18 17:41:20 UTC (rev 3913)
+++ trunk/m4/ChangeLog 2005-10-21 15:03:18 UTC (rev 3914)
@@ -1,3 +1,8 @@
+2005-10-21 David Shaw <dshaw at jabberwocky.com>
+
+ * readline.m4: Check for rl_completion_func_t and
+ rl_completion_matches.
+
2005-08-05 David Shaw <dshaw at jabberwocky.com>
* ldap.m4: If a PATH is given to --with-ldap, bias directory
Modified: trunk/m4/readline.m4
===================================================================
--- trunk/m4/readline.m4 2005-10-18 17:41:20 UTC (rev 3913)
+++ trunk/m4/readline.m4 2005-10-21 15:03:18 UTC (rev 3914)
@@ -1,5 +1,5 @@
dnl Check for readline and dependencies
-dnl Copyright (C) 2004 Free Software Foundation, Inc.
+dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc.
dnl
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
@@ -35,10 +35,12 @@
#include <readline/readline.h>
#include <readline/history.h>
],[
+rl_completion_func_t *completer;
add_history("foobar");
rl_catch_signals=0;
rl_inhibit_completion=0;
rl_attempted_completion_function=NULL;
+rl_completion_matches(NULL,NULL);
]),_found_readline=yes,_found_readline=no)
AC_MSG_RESULT([$_found_readline])
More information about the Gnupg-commits
mailing list