Displaying 20 results from an estimated 25 matches for "have_readline_history_h".
2001 Apr 07
1
samba on NetBSD - some patches
...t;find . -maxdepth 1 -name \"%s\" -print > %s",p,tmpname);
+ "ls -1 %s > %s",p,tmpname);
system(cmd);
f = sys_fopen(tmpname,"r");
@@ -1599,22 +1599,19 @@
return True;
}
-#if defined(HAVE_LIBREADLINE)
+#if defined(HAVE_READLINE)
# if defined(HAVE_READLINE_HISTORY_H) || defined(HAVE_HISTORY_H)
/****************************************************************************
history
****************************************************************************/
static void cmd_history(void)
{
- HIST_ENTRY **hlist;
register int i;
- hlist = history_list (); /...
2006 Mar 22
1
tftpd-hpa-0.42 bug when hitting ^C
Start tftp with no host name
Enter a host name
When looking at the tftp> prompt press ^C
$ tftp
(to) localhost
tftp>
*** glibc detected *** double free or corruption (fasttop): 0x08b8b9c0 ***
Aborted
I've attached a patch fixing this issue but I'm not convinced this is the right way to do it.
Radek
--
Radek Vok?l <rvokal at redhat.com>
-------------- next part
2002 Jul 10
0
history patch (was Re: portable snprintf implementation)
...ple of 'diff -c' patches to modify the history system such that
subsequent identical lines are only entered once.
*** src/unix/sys-std.c.orig Sat Jun 29 19:16:31 2002
--- src/unix/sys-std.c Wed Jul 10 16:23:59 2002
***************
*** 324,331 ****
return;
if (line[0]) {
# ifdef HAVE_READLINE_HISTORY_H
! if (strlen(line) && readline_addtohistory)
! add_history(line);
# endif
l = (((readline_len-2) > strlen(line))?
strlen(line): (readline_len-2));
--- 324,353 ----
return;
if (line[0]) {
# ifdef HAVE_READLINE_HISTORY_H
! if (strlen(line) && readline...
2000 Mar 13
1
Install R1.0.0 (PR#485)
Hello,
I tried to compile and install R. After I ran
make 2>&1 | tee log
., I got the following error:
making system.d from system.c
system.c:37: readline/readline.h: No such file or directory
make[3]: *** [system.d] Error 1
make[3]: Leaving directory
`/afs/lsa.umich.edu/group/admin/software/build/R/R-1.
0.0/src/unix'
make[2]: *** [R] Error 2
make[2]: Leaving directory
2003 Mar 29
1
compling errors for sun unix (PR#2702)
...1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ELF_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FLOATINGPOINT_H 1
| #define HAVE_GRP_H 1
| #define HAVE_IEEEFP_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_READLINE_HISTORY_H 1
| #define HAVE_READLINE_READLINE_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMES_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_UNISTD_H 1
|...
2014 Sep 26
1
configure: error: linking to Fortran libraries from C fails
...HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_LIBM 1
| #define HAVE_LIBDL 1
| #define HAVE_READLINE_HISTORY_H 1
| #define HAVE_READLINE_READLINE_H 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_HISTORY_TRUNCATE_FILE 1
| #define HAVE_RL_COMPLETION_MATCHES 1
| #define STDC_HEADERS 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ELF_H...
1999 Jun 14
1
readline/history size (PR#211)
...ine
option be added for doing this. The following is an *untested* patch:
--- src/unix/system.c~ Wed Mar 31 12:53:18 1999
+++ src/unix/system.c Mon Jun 14 15:05:50 1999
@@ -580,6 +580,35 @@
else
R_NSize = value;
}
+#ifdef HAVE_LIBREADLINE
+#ifdef HAVE_READLINE_HISTORY_H
+ else if((value = (*av)[1] == 'h') || !strcmp(*av, "--histsize")) {
+ if(value)
+ REprintf("WARNING: option `-h' is deprecated. "
+ "Use `--histsize' instead.\n");
+ if...
2000 Mar 16
2
R-1.0.0 on alpha/osf1 memory glitch (PR#490)
Digital Alpha (various), Digital UNIX V4.0[EF], R-1.0.0, gcc, f77
When using batch mode with the save option, an error message is issued.
However [I have just discovered that] it appears that the operation
does complete, i.e. the .RData file is saved successfully. The main
problem is that the return code is non-zero (and so it is impossible to
distinguish this "non-error" from some
1998 May 12
0
R-beta: R-0.61.3 with readline]
...rsuade autoconf to do the right thing. A
better plan should be this:
Start with a clean source tree
(1)
make acclean # just so there are no config.cache or similar files
# floating around
(2)
./configure
(3)
edit src/include/Platform.h to contain
#define HAVE_LIBREADLINE 1
#define HAVE_READLINE_HISTORY_H 1
(4)
edit src/unix/Makefile to contain
system.o: system.c ../include/Defn.h
$(CC) $(CFLAGS) -I/home/frey/b/janku/lib/sun4/ -c system.c
(5)
edit src/main/Makefile to contain
LIBS=-ldl -ltermcap -lm -L/home/frey/b/janku/lib/sun4/readline -lreadline
#(not quite sure whethe...
2002 Apr 30
1
followup -- deficiencies in readline capability
Why would R lack history capability?
Someone in a private electronic mail message suggested the possibility
that I was running R in a non-writable directory. This is not the
case, as the following logfile shows (where "$ " is my shell prompt):
$ ls -ld `pwd`
drwxrwxrwx 15 sys sys 2560 Apr 30 08:10 /tmp
$ R --vanilla
R : Copyright 2002, The R Development Core Team
1998 Jan 16
2
ESS-mode and X-emacs problem
...e -noreadline flag properly then my guess is that
the call to initialize the readline library (probably in
$RHOME/src/unix/system.c) is not being protected by an if statement
that checks for this flag.
Earlier I reported a problem in $RHOME/src/unix/system.c that some
ifdef's were checking for HAVE_READLINE_HISTORY_H but that variable
was not being defined by the autoconfigure script. I'm not sure if
that has been corrected yet.
When I was looking for those definitions I noticed the
autoconfiguration on the version I compiled for Debian Linux 2.0 does
not set HAVE_READLINE but that version on Debian Linux...
2005 Nov 09
0
Samba 3.0.20b / AIX 5.3 / VFS Modules
..._H
HAVE_FCNTL_H
HAVE_GLOB_H
HAVE_GRP_H
HAVE_INT16_FROM_RPC_RPC_H
HAVE_INT32_FROM_RPC_RPC_H
HAVE_INTTYPES_H
HAVE_LANGINFO_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_MNTENT_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_POLL_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPCSVC_YP_PROT_H
HAVE_RPC_NETTYPE_H
HAVE_RPC_RPC_H
HAVE_SECURITY_PAM_APPL_H
HAVE_SECURITY_PAM_MODULES_H
HAVE_STDARG_H
HAVE_STDINT_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_STROPTS_H
HAVE_SYSLO...
2007 Sep 24
2
Where is the tdbsam password database file?
...FO_H
HAVE_LASTLOG_H
HAVE_LBER_H
HAVE_LDAP_H
HAVE_LIMITS_H
HAVE_LINUX_INOTIFY_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_MNTENT_H
HAVE_NETDB_H
HAVE_NETINET_IN_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_NSS_H
HAVE_PWD_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPCSVC_YP_PROT_H
HAVE_RPC_RPC_H
HAVE_SECURITY_PAM_APPL_H
HAVE_SECURITY_PAM_EXT_H
HAVE_SECURITY_PAM_MODULES_H
HAVE_SECURITY__PAM_MACROS_H
HAVE_SETJMP_H
HAVE_SHADOW_H
HAVE_STDARG_H
HAVE_STDBOOL...
2005 Oct 19
1
samba with ADS. winbindd ignore for user authentication
...HAVE_GLOB_H
HAVE_GRP_H
HAVE_GSSAPI_H
HAVE_INTTYPES_H
HAVE_KRB5_H
HAVE_LANGINFO_H
HAVE_LBER_H
HAVE_LDAP_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_POLL_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPC_RPC_H
HAVE_SECURITY_PAM_APPL_H
HAVE_SECURITY_PAM_MODULES_H
HAVE_SECURITY__PAM_MACROS_H
HAVE_STDARG_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_SYSLOG_H
HAVE_TERMIOS_H...
2005 May 18
1
Samba Comple Problem on Solaris 2.8
..._H
HAVE_INTTYPES_H
HAVE_KRB5_H
HAVE_LANGINFO_H
HAVE_LASTLOG_H
HAVE_LBER_H
HAVE_LDAP_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_NSSWITCH_H
HAVE_NSS_COMMON_H
HAVE_POLL_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPC_NETTYPE_H
HAVE_SECURITY_PAM_APPL_H
HAVE_SECURITY_PAM_MODULES_H
HAVE_SHADOW_H
HAVE_STDARG_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_STROPTS_H
HAVE_SYSLOG_H
HAVE_TERMIOS_H
HAVE_TERMIO_H
HAVE_UN...
2007 Jun 05
1
Samba unable to connect to ldap
...VE_KRB5_H
HAVE_LANGINFO_H
HAVE_LASTLOG_H
HAVE_LBER_H
HAVE_LDAP_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_MNTENT_H
HAVE_NETDB_H
HAVE_NETINET_IN_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_NSS_H
HAVE_PWD_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPCSVC_YP_PROT_H
HAVE_RPC_RPC_H
HAVE_SETJMP_H
HAVE_SHADOW_H
HAVE_STDARG_H
HAVE_STDBOOL_H
HAVE_STDINT_H
HAVE_STDIO_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_SYSCALL_H
HAVE_SYS...
2004 Jul 10
2
Solaris username character limit issues.
Hello,
I've compiled Samba 3.0.4 with Heimdal 0.6.2 and all of the other
trimmings to join and ADS tree, which I have successfully done. Winbind
correctly pulls all of the username and group information from the ADS
tree and all is good.
However...
I seem to be running into a wall with the wonderful Solaris 8 character
username / groupname limit. Usernames with spaces or names longer than
2019 Oct 29
0
auth logging or auditing
...?? HAVE_MENU_H
?? HAVE_MNTENT_H
?? HAVE_NCURSES_H
?? HAVE_NETDB_H
?? HAVE_NETINET_IN_H
?? HAVE_NETINET_IN_SYSTM_H
?? HAVE_NETINET_IP_H
?? HAVE_NETINET_TCP_H
?? HAVE_NET_IF_H
?? HAVE_NSS_H
?? HAVE_PANEL_H
?? HAVE_POLL_H
?? HAVE_POPT_H
?? HAVE_PTHREAD_H
?? HAVE_PTY_H
?? HAVE_PWD_H
?? HAVE_PYTHON_H
?? HAVE_READLINE_HISTORY_H
?? HAVE_READLINE_READLINE_H
?? HAVE_RESOLV_H
?? HAVE_RPCSVC_NIS_H
?? HAVE_RPCSVC_RQUOTA_H
?? HAVE_RPCSVC_YPCLNT_H
?? HAVE_RPCSVC_YP_PROT_H
?? HAVE_RPC_RPC_H
?? HAVE_RPC_TYPES_H
?? HAVE_RPC_XDR_H
?? HAVE_SASL_SASL_H
?? HAVE_SCHED_H
?? HAVE_SETJMP_H
?? HAVE_SHADOW_H
?? HAVE_SIGNAL_H
?? HAVE_STDARG_H...
2005 Jun 28
1
Samba as ADS Fileserver
...PI_GSSAPI_H
HAVE_INTTYPES_H
HAVE_KRB5_H
HAVE_LANGINFO_H
HAVE_LASTLOG_H
HAVE_LBER_H
HAVE_LDAP_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_MNTENT_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_NSS_H
HAVE_POLL_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPCSVC_YP_PROT_H
HAVE_RPC_RPC_H
HAVE_SHADOW_H
HAVE_STDARG_H
HAVE_STDINT_H
HAVE_STDLIB_H
HAVE_STRINGS_H
HAVE_STRING_H
HAVE_STROPTS_H
HAVE_SYSCALL_H
HAVE_SYSLOG_H
HAVE_TERMIOS_H
HAVE_T...
2013 May 14
3
frequent tdb corruption
...E_LBER_H
HAVE_LDAP_H
HAVE_LIBINTL_H
HAVE_LIMITS_H
HAVE_LOCALE_H
HAVE_MEMORY_H
HAVE_NETDB_H
HAVE_NETINET_IN_H
HAVE_NETINET_IN_SYSTM_H
HAVE_NETINET_IP_H
HAVE_NETINET_TCP_H
HAVE_NET_IF_H
HAVE_NSSWITCH_H
HAVE_NSS_H
HAVE_POLL_H
HAVE_PTHREAD_H
HAVE_PWD_H
HAVE_READLINE_HISTORY_H
HAVE_READLINE_READLINE_H
HAVE_RPCSVC_NIS_H
HAVE_RPCSVC_YPCLNT_H
HAVE_RPCSVC_YP_PROT_H
HAVE_RPC_NETTYPE_H
HAVE_RPC_RPC_H
HAVE_SECURITY_PAM_APPL_H
HAVE_SECURITY_PAM_MODULES_H
HAVE_SETJMP_H
HAVE_STDARG_H
HAVE_STDBOOL_H
HAVE_STDINT_H
HAVE_STDIO_H
HAVE_STDLIB_H...