diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-07 08:34:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:49 -0500 |
commit | b04fac4ed3cea2bdc0d0888713c20e0cc1c9d5b1 (patch) | |
tree | 83ff9439590b0d3833bf6935a3067562ac484179 /source4/client | |
parent | ead21647a248b250876ce7d2133bd4a1fe2b2d57 (diff) | |
download | samba-b04fac4ed3cea2bdc0d0888713c20e0cc1c9d5b1.tar.gz samba-b04fac4ed3cea2bdc0d0888713c20e0cc1c9d5b1.tar.bz2 samba-b04fac4ed3cea2bdc0d0888713c20e0cc1c9d5b1.zip |
r18208: Mac OS X also doesn't have history_list()
must be a pretty old readline lib!
(This used to be commit ba901e6820c02bc696c0bd3e9e0788801fd0795b)
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index e748edd347..e9fe32967b 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2388,7 +2388,7 @@ history ****************************************************************************/ static int cmd_history(struct smbclient_context *ctx, const char **args) { -#if defined(HAVE_LIBREADLINE) +#if defined(HAVE_LIBREADLINE) && defined(HAVE_DECL_RL_EVENT_HOOK) HIST_ENTRY **hlist; int i; |