search for: have_libreadlin

Displaying 20 results from an estimated 34 matches for "have_libreadlin".

Did you mean: have_libreadline
2001 Apr 07
1
samba on NetBSD - some patches
...cripts.sh $(INSTALLPERMS) $(BINDIR) $(SCRIPTS) $NetBSD: patch-ac,v 1.5 2000/09/03 09:17:00 kei Exp $ --- acconfig.h.orig Tue Jul 11 02:37:45 2000 +++ acconfig.h Sun Sep 3 06:23:07 2000 @@ -80,7 +80,9 @@ #undef SIZEOF_INO_T #undef SIZEOF_OFF_T #undef STAT_STATVFS64 +#undef HAVE_READLINE #undef HAVE_LIBREADLINE +#undef HAVE_LIBEDIT #undef HAVE_KERNEL_OPLOCKS #undef HAVE_IRIX_SPECIFIC_CAPABILITIES #undef HAVE_INT16_FROM_RPC_RPC_H $NetBSD: patch-ad,v 1.3 2001/04/07 10:00:42 hubertf Exp $ --- client/client.c.orig Wed May 10 16:28:49 2000 +++ client/client.c @@ -1165,7 +1165,7 @@ "find . -name...
2014 Dec 04
1
[PATCH] fish: fix build warning when readline-devel is missing
...@cn.fujitsu.com> --- fish/fish.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/fish/fish.c b/fish/fish.c index 0432774..20511f8 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -641,10 +641,12 @@ shell_script (void) #define FISH "><fs> " +#ifdef HAVE_LIBREADLINE static char *ps1 = NULL; /* GUESTFISH_PS1 */ static char *ps_output = NULL; /* GUESTFISH_OUTPUT */ -static char *ps_restore = NULL; /* GUESTFISH_RESTORE */ static char *ps_init = NULL; /* GUESTFISH_INIT */ +#endif /* HAVE_LIBREADLINE */ +static char *ps_restore = NULL; /* GUESTFISH_R...
2016 Feb 16
2
[PATCH] fish: reset the console on ^Z RHBZ#1213844
Patch registers SIGTSTP hook where it sends reset terminal color control sequence. Maros Zatko (1): fish: reset the console on ^Z RHBZ#1213844 fish/fish.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) -- 2.5.0
2015 Nov 22
1
Re: installation error
Never mind I was missing libreadline-dev I gues this check would be good to be added with an error to the configure script since it creates error in compilation Regards, Peter > On 22 Nov 2015, at 20:06, Keresztes Péter-Zoltán <zozo@z0z0.tk> wrote: > > Hello, > > I have got into a different issue while trying to compile the latest version of libguestfs: > > CC
1999 Dec 27
2
help needed with smbclient with broken pipe
...91 bytes to socket 3: ERRNO = broken pipe failed session setup Error writing 91 bytes to client. -1. Exiting This appears to be happening about a minute after I establish a session. Up until that time file transfers and directories seem to work well. The platform details: SAMBA 2.0.6 Built with HAVE_LIBREADLINE OpenVMS Alpha 7.2. Digital TCP/IP Services V5.0 The smbclient is connecting to a Windows NT Workstation 4.0 Service Pack 5 system running on a 90 Mhz pentium. The socket options in smb.conf are: socket options = SO_RCVBUF=8192 SO_SNDBUF=8192 SO_KEEPALIVE
2016 Feb 16
0
[PATCH] fish: reset the console on ^Z RHBZ#1213844
...handler. + */ +static void +set_stophandler (void) +{ + otstpfn = signal (SIGTSTP, user_control_z); +} + +/* + * Restore the TSTP handler. + */ +static void +restore_stophandler (void) +{ + signal (SIGTSTP, otstpfn); +} + +static void +user_control_z (int sig) +{ + sigset_t oset, set; + +#ifdef HAVE_LIBREADLINE + /* Cleanup readline, unhook from terminal */ + rl_free_line_state (); + rl_cleanup_after_signal (); +#endif + + /* Reset terminal color */ +#define RESETCOLOR "\033[0m" + printf (RESETCOLOR); + fflush (stdout); + + /* Unblock SIGTSTP. */ + sigemptyset (&set); + sigaddset (...
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)
..._H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define HAVE_LIBM 1 | #define HAVE_LIBNCURSES 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBREADLINE 1 | #define STDC_HEADERS 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_DIRENT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ARPA_INET_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #if HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #if HAVE_SYS_STAT_H | # include <sys...
2016 Mar 08
1
[PATCH] fish: reset the console on ^Z RHBZ#1213844
Patch registers SIGTSTP hook where it sends reset terminal color control sequence using write and fsync. Handler is installed only if signal is not being ignored. Patch uses rl_free_line_state and rl_cleanup_after_signal to unhook readline from terminal, then it calls original TSTP handler using approach in URL below and again hooks readline using rl_reset_after_signal. Handling is based on code
2005 Apr 19
0
R 2.0.1 install problem on Solaris 9
..._H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define HAVE_LIBM 1 | #define HAVE_LIBTERMCAP 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBREADLINE 1 | #define STDC_HEADERS 1 | #define TIME_WITH_SYS_TIME 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 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOATINGPOINT_H 1 | #define HAVE_GRP_H 1 | #define HAVE_IEEEFP_H 1 |...
1998 Mar 27
1
R-beta: Problems during compilation of R for Solaris 2.6
Hello, I am inexperienced in C program compilation and I receive the following error during the compilation of R (version 0.61.2) for Solaris 2.6. I have installed the gcc 2.8.0 version. >> gcc -o R.binary arithmetic.o array.o attrib.o bind.o builtin.o character.o >> coerce.o colors.o complex.o context.o cov.o cum.o dataframe.o debug.o >> deparse.o deriv.o
1999 Jul 01
1
SAMBA digest 2150
...;smbprint" that pipe files to the > application to send them for printing. Maybe "readline" gets into > the way and produces problems. > > Regards, > Simos Xenitellis > > Patch for samba-2.0.4b/source/client/client.c > > 1572a1573,1592 > > #if defined(HAVE_LIBREADLINE) > > # if defined(HAVE_READLINE_HISTORY_H) || defined(HAVE_HISTORY_H) > > > /*************************************************************************** > * > > history > > > **************************************************************************** > / >...
2014 Sep 26
1
configure: error: linking to Fortran libraries from C fails
...efine _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 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FPU_CONTROL_H 1 | #def...
2003 May 01
0
a little issue with ADS
....20-r2 #1 SMP Thu Apr 17 22:26:45 EDT 2003 i686 AMD Athlon(tm) XP 1700+ AuthenticAMD GNU/Linux SRCDIR: . BUILDDIR: . Build options: HAVE_KRB5 HAVE_GSSAPI HAVE_LDAP WITH_AUTOMOUNT WITH_SMBMOUNT WITH_PAM WITH_TDB_SAM WITH_SYSLOG WITH_QUOTAS HAVE_POSIX_ACLS HAVE_LIBREADLINE Paths: CONFIGFILE: /etc/samba/smb.conf SBINDIR: /usr/sbin BINDIR: /usr/bin LOCKDIR: /var/run/samba LOGFILEBASE: /var/log/samba Other Build Options: HAVE_VOLATILE HAVE_SHADOW_H HAVE_CRYPT HAVE_CUPS HAVE_DLOPEN HAVE_DLCLOSE HAVE_DLSYM HAVE_DLERROR HAVE_UNI...
1999 Jun 14
1
readline/history size (PR#211)
...request that a command-line 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' inst...
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]
...bly it isn't easy to persuade 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...
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
2005 Nov 09
0
Samba 3.0.20b / AIX 5.3 / VFS Modules
...UNCATE_EXTEND HAVE_FUNCTION_MACRO HAVE_GETCWD HAVE_GETDIRENTRIES HAVE_GETGRENT HAVE_GETGRNAM HAVE_GETMNTENT HAVE_GETNETGRENT HAVE_GETRLIMIT HAVE_GETTIMEOFDAY_TZ HAVE_GLOB HAVE_GRANTPT HAVE_ICONV HAVE_IFACE_AIX HAVE_INITGROUPS HAVE_INNETGR HAVE_INO64_T HAVE_LIBPAM HAVE_LIBREADLINE HAVE_LINK HAVE_LLSEEK HAVE_LONGLONG HAVE_LSEEK64 HAVE_LSTAT64 HAVE_MEMMOVE HAVE_MEMSET HAVE_MKNOD HAVE_MKTIME HAVE_MMAP HAVE_NANOSLEEP HAVE_NATIVE_ICONV HAVE_NL_LANGINFO HAVE_NO_ACLS HAVE_OFF64_T HAVE_OPEN64 HAVE_OPENDIR64 HAVE_PATHCONF HAVE_PIP...
2007 Sep 24
2
Where is the tdbsam password database file?
...RB5_VERIFY_CHECKSUM HAVE_KV5M_KEYTAB HAVE_LDAP HAVE_LDAP_ADD_RESULT_ENTRY HAVE_LDAP_INIT HAVE_LDAP_INITIALIZE HAVE_LDAP_SET_REBIND_PROC HAVE_LGETXATTR HAVE_LIBCOM_ERR HAVE_LIBGSSAPI_KRB5 HAVE_LIBK5CRYPTO HAVE_LIBKRB5 HAVE_LIBLBER HAVE_LIBLDAP HAVE_LIBPAM HAVE_LIBREADLINE HAVE_LIBRESOLV HAVE_LINK HAVE_LINUX_READAHEAD HAVE_LINUX_XFS_QUOTAS HAVE_LISTXATTR HAVE_LLISTXATTR HAVE_LLSEEK HAVE_LONGLONG HAVE_LONG_LONG HAVE_LREMOVEXATTR HAVE_LSEEK64 HAVE_LSETXATTR HAVE_LSTAT HAVE_LSTAT64 HAVE_MAGIC_IN_KRB5_ADDRESS HAVE_MAKEDEV...