search for: tput

Displaying 20 results from an estimated 68 matches for "tput".

Did you mean: put
2004 Mar 31
6
Can't compile asterisk.
...nd ??editline/libedit.a(editline.o_a): In function `term_move_to_line': /usr/src/asterisk/editline/term.c:554: undefined reference to `tgoto' /usr/src/asterisk/editline/term.c:554: relocation truncated to fit: R_PPC_REL24 tgoto /usr/src/asterisk/editline/term.c:554: undefined reference to `tputs' /usr/src/asterisk/editline/term.c:554: relocation truncated to fit: R_PPC_REL24 tputs /usr/src/asterisk/editline/term.c:567: undefined reference to `tgoto' /usr/src/asterisk/editline/term.c:567: relocation truncated to fit: R_PPC_REL24 tgoto /usr/src/asterisk/editline/term.c:567: undefi...
2004 Jun 17
6
Compiling problem on Debian
...e/libtime.a qeditline/libedit.a(editline.o_a)(.text+0x7e6a): In function `term_move_to_line': /home/robin/asterisk-0.9.0/editline/term.c:554: undefined reference to `tgoto' editline/libedit.a(editline.o_a)(.text+0x7e7e):/home/robin/asterisk-0.9.0/editline/term.c:554: undefined reference to `tputs' editline/libedit.a(editline.o_a)(.text+0x7ef7):/home/robin/asterisk-0.9.0/editline/term.c:567: undefined reference to `tgoto' editline/libedit.a(editline.o_a)(.text+0x7f0b):/home/robin/asterisk-0.9.0/editline/term.c:567: undefined reference to `tputs' editline/libedit.a(editline.o_a)(...
2003 Nov 16
3
asterisk installation error
...e_stop': /usr/src/asterisk/autoservice.c:146: undefined reference to `pthread_kill' editline/libedit.a(editline.o_a): In function `term_move_to_line': /usr/src/asterisk/editline/term.c:554: undefined reference to `tgoto' /usr/src/asterisk/editline/term.c:554: undefined reference to `tputs' /usr/src/asterisk/editline/term.c:567: undefined reference to `tgoto' /usr/src/asterisk/editline/term.c:567: undefined reference to `tputs' /usr/src/asterisk/editline/term.c:572: undefined reference to `tputs' editline/libedit.a(editline.o_a): In function `term_move_to_char':...
2009 Sep 08
1
makefile for sweave
...MPS = Report problem RNW_CMPS = prop1 prop2 ExeExps OTHER = Report.bib # The name of the report to produce all: Report.pdf code: $(RNW_CMPS:=.R) clean: rm -f *.log *.dvi *~ # On what does the report depends? Report.pdf: $(TEX_CMPS:=.tex) $(RNW_CMPS:=.tex) ${OTHER} makefile TEXINPUTS=${TPUTS} pdflatex $< TEXINPUTS=${TPUTS} pdflatex $< rm *.log # mv *.aux $(dir $<) # How to build the tex files from the Rnw (Sweave) files %.tex: %.Rnw echo "library(utils); options(width=60); Sweave('$<')" | ${R_PRG} --no-save --vanilla mv $(notdir $*....
2025 Jan 10
1
[PATCH] ssh-add: support parser-friendly operation
...Please don't. If you want to ever get people to load their privkeys into the agent *with a limited lifetime*, having a trivial, *universal* way to check whether they have expired by now is an asset. > workplace$ egrep ' ssh(|add)=' .bashrc > alias sshadd='( echo -n "`tput dim`" ; ssh-add -c -t 1800 ; echo -n "`tput sgr0`" )' > alias ssh='ssh-add -l >/dev/null || sshadd ; ssh' > jumphost$ grep -A 9 '^ssh' .bashrc > ssh() { > if [ -z "$SSH_AUTH_SOCK" ]; then > # No forwarded agent...
2011 Apr 19
4
/etc/bashrc help!
...then # you are root, set red colour prompt echo "###############################################" echo "### You are now working as ROOT. ###" echo "### Pay attention to what you type. ###" echo "###############################################" PS1="\\[$(tput setaf 1)\\]\\u@\\h:\\w #\\[$(tput sgr0)\\]" else # normal echo echo " ###########################################################" echo "Welcome $(whoami), here's something to start your day with:" echo echo `sh /etc/lines.sh /etc/quotes.txt` echo " ###############...
2025 Jan 13
2
[PATCH] ssh-add: support parser-friendly operation
...le to load their privkeys into > > the agent *with a limited lifetime*, having a trivial, *universal* way > > to check whether they have expired by now is an asset. > > > > > workplace$ egrep ' ssh(|add)=' .bashrc > > > alias sshadd='( echo -n "`tput dim`" ; ssh-add -c -t 1800 ; echo -n "`tput > > > sgr0`" )' > > > alias ssh='ssh-add -l >/dev/null || sshadd ; ssh' > > With my patch v2, that would need to be: > > > alias ssh='ssh-add -l | grep -q . || sshadd ; ssh' > &g...
2025 Jan 09
2
[PATCH] ssh-add: support parser-friendly operation
On 2025-01-09 15:27, Corey Hickey wrote: > From: Corey Hickey <chickey at tagged.com> > > When ssh-add is used in a script like: > > if ! KEY_LISTING=$(ssh-add -l 2>&1) ; then > echo "SSH agent error" >&2 > exit 2 > fi > > ...the operation fails when there is an agent but there are no keys in > the agent.
2014 Nov 05
2
[PATCH] Use -ltinfo instead of -lncurses.
...ib/lib/.libs -lgnu \ -pthread -lpthread \ - -lncurses -lcrypt + -ltinfo -lcrypt if HAVE_OCAMLOPT virt-builder: $(OBJECTS) diff --git a/configure.ac b/configure.ac index 3165e96..8916ebd 100644 --- a/configure.ac +++ b/configure.ac @@ -355,14 +355,14 @@ struct sockaddr_un myaddr; dnl tgetent, tputs and UP [sic] are all required. They come from libtinfo dnl which is pulled in as a dependency of libncurses. old_LIBS="$LIBS" -AC_CHECK_LIB([ncurses], [tgetent], [], [ - AC_MSG_ERROR(['ncurses' library not found, or it doesn't contain 'tgetent']) +AC_CHECK_LIB([...
2014 Nov 11
1
[PATCH] use pkg-config to look up ncurses
...PT virt-builder: $(OBJECTS) diff --git a/configure.ac b/configure.ac index a571de5..1c38084 100644 --- a/configure.ac +++ b/configure.ac @@ -352,19 +352,13 @@ struct sockaddr_un myaddr; AC_DEFINE_UNQUOTED([UNIX_PATH_MAX], $unix_path_max, [Custom value for UNIX_PATH_MAX]) ]) -dnl tgetent, tputs and UP [sic] are all required. They come from libtinfo -dnl which is pulled in as a dependency of libncurses. -old_LIBS="$LIBS" -AC_CHECK_LIB([tinfo], [tgetent], [], [ - AC_MSG_ERROR(['libtinfo' library (usually part of ncurses) not found, or it doesn't contain 'tgete...
2010 Apr 15
2
problem compiling samba-3.5.2 on RHEL 5.5
this is my output when I try to compile samba-3.5.2 using the spec file provided in the samba packages: Linking bin/smbclient /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../libreadline.so: undefined reference to `PC' /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../libreadline.so: undefined reference to `tgetflag...
2006 Oct 14
2
Sweave, R and complex latex projects
Hello all, I've been able to use R very successfully to run simple statistics and generate the plots I require. I've been evaluating Sweave, and have hit upon a small problem that I don't seem to be able to workaround. Sweave runs very well for single file latex documents, but I have a complex thesis made up of several parts and chapters. These are arranged with a master latex file
2004 Jun 14
4
Readline on R-1.9.1a
...e.so: undefined reference to `tgetnum' /usr/local/lib/libreadline.so: undefined reference to `tgoto' /usr/local/lib/libreadline.so: undefined reference to `tgetflag' /usr/local/lib/libreadline.so: undefined reference to `BC' /usr/local/lib/libreadline.so: undefined reference to `tputs' /usr/local/lib/libreadline.so: undefined reference to `PC' /usr/local/lib/libreadline.so: undefined reference to `tgetent' /usr/local/lib/libreadline.so: undefined reference to `UP' /usr/local/lib/libreadline.so: undefined reference to `tgetstr' collect2: ld returned 1 ex...
2016 Mar 08
1
[PATCH v3] configure: handle older version of ncurses
.../guestfs_libraries.m4 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/m4/guestfs_libraries.m4 b/m4/guestfs_libraries.m4 index c5a4a01..e751db1 100644 --- a/m4/guestfs_libraries.m4 +++ b/m4/guestfs_libraries.m4 @@ -113,7 +113,14 @@ struct sockaddr_un myaddr; dnl tgetent, tputs and UP [sic] are all required. They come from the lower dnl tinfo library, but might be part of ncurses directly. PKG_CHECK_MODULES([LIBTINFO], [tinfo], [], [ - PKG_CHECK_MODULES([LIBTINFO], [ncurses]) + PKG_CHECK_MODULES([LIBTINFO], [ncurses], [], [ + AC_CHECK_PROGS([NCURSES_CONFI...
2009 Mar 12
1
Xterm-color
Hi List Has anyone got any clue of why on a centos 4.3 when I am logging in to the machine I am geting the following error tput: unknown terminal "xterm-color" do I am not using xterm-color I can not start top of any other except vi. Does anyone have any clue? Kind regards Per Qvindesland
2011 Jan 13
3
/etc/bashrc causing probs..
...-eq 0 ];then # you are rootecho "###############################################"echo "### You are now working as ROOT. ###"echo "### Pay attention to what you type. ###"echo "###############################################" PS1="\\[$(tput setaf 1)\\]\\u@\\h:\\w #\\[$(tput sgr0)\\]"else # nothing to doechoecho " ###########################################################"echo "Welcome $(whoami), here's something to start your day with:"echoecho `sh /etc/lines.sh /etc/quotes.txt`echo " #############...
2007 Jul 06
1
Hook for running a function before evaluation
...addTaskCallback() and friends. However, there are situations were we would like to have a function run BEFORE, not after every top-level tasks. I think specifically to reset options(width = ) to accommodate to the current width of the console, using something like: options(width = system("tput cols")) I am sure there are many other situations where this could be useful. Combining tasks run before and after evaluation, one could design a system to (remotely) indicate when a given R kernel is starting/evaluating/ending evaluation of some code (with Rpad in mind, for instance). H...
2018 Jan 03
0
Regression tests
...er.pass.cpp (42355 of 43597) >> ******************** TEST 'libc++abi :: catch_multi_level_pointer.pass.cpp' >> FAILED ******************** >> Command: ['/usr/lib64/ccache/c++', '-o', '/dsk/l1/misc/vusontuan/llvm/b >> uild/projects/libcxxabi/test/Output/catch_multi_level_pointer.pass.cpp.o', >> '-x', 'c++', '/dsk/l1/misc/vusontuan/llvm/projects/libcxxabi/test/catch_multi_level_pointer.pass.cpp', >> '-c', '-v', '-D_LIBCPP_DISABLE_AVAILABILITY', '-DLIBCXXABI_NO_TIMER', >>...
2002 Jul 01
3
patch: readline support for sftp
...HECK_HEADERS(readline/readline.h readline/history.h, + AC_DEFINE(HAS_READLINE, 1, [If defined sftp uses readline library for user input.]), + [AC_MSG_RESULT(no) + AC_MSG_ERROR([** Cannot locate readline include files]) + ]) + + SFTPLIB="-lreadline" + AC_CHECK_LIB(ncurses, tputs, SFTPLIB="-lncurses $SFTPLIB" , + [AC_CHECK_LIB(curses, tputs, SFTPLIB="-lcurses $SFTPLIB" , + [AC_CHECK_LIB(termcap, tputs, SFTPLIB="-ltermcap $SFTPLIB") + ]) + ]) + + PRESERVE_LIBS="$LIBS" + LIBS="$LIBS $SFTPLIB" + AC_MSG_CHEC...
2017 Dec 26
2
Regression tests
Hello, I have just built LLVM with CMake by following these instructions https://llvm.org/docs/GettingStarted.html#getting-started-quickly-a-summary and I am trying to run the regression tests using "make check-all" but there are some unexpected failures in libcxx and libcxxabi. Here's the test log: Expected Passes : 40745 Expected Failures : 258 Unsupported Tests : 1594