search for: lncurses

Displaying 20 results from an estimated 200 matches for "lncurses".

Did you mean: ncurses
2014 Jul 24
3
/usr/bin/ld: cannot find -lncurses
Hi all, I am having this error when i tried to compile a program /usr/bin/ld: cannot find -lncurses collect2: ld returned 1 exit status /usr/bin/ld: cannot find -lncurses collect2: ld returned 1 exit status Kindly help me out. Regard.
2014 Nov 05
2
[PATCH] Use -ltinfo instead of -lncurses.
...anged, 15 insertions(+), 15 deletions(-) diff --git a/builder/Makefile.am b/builder/Makefile.am index f747fc3..7b66afb 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -172,7 +172,7 @@ OCAMLCLIBS = \ -L../src/.libs -lutils \ -L../gnulib/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 li...
2011 Nov 22
7
[PATCH] use ncurses-config to find all curses related libs
...e-packaging/2011-11/msg00055.html Signed-off-by: Olaf Hering <olaf@aepfle.de> diff -r 0b1ac7b3ee4d config/StdGNU.mk --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -67,7 +67,7 @@ XEN_CONFIG_DIR = $(CONFIG_DIR)/xen XEN_SCRIPT_DIR = $(XEN_CONFIG_DIR)/scripts SOCKET_LIBS = -CURSES_LIBS = -lncurses +CURSES_LIBS = $(shell if ! ncurses5-config --libs 2>/dev/null ; then ncurses-config --libs ; fi) PTHREAD_LIBS = -lpthread UTIL_LIBS = -lutil DLOPEN_LIBS = -ldl
2014 Nov 06
1
Re: [PATCH] Use -ltinfo instead of -lncurses.
...mcap, and I'll assume any system ancient/strange enough to only provide termcap and not ncurses would not be able to run libguestfs. In Fedora, the readline-devel package requires ncurses-devel, so if our test for readline succeeds, we can assume ncurses-devel is installed and '-lreadline -lncurses' will just work. On Debian/Ubuntu, they've ditched the nonsense of allowing alternate backend implementations, and they link readline to ncurses properly (so on Debian, '-lreadline' on its own works, whereas on Fedora we still need '-lreadline -lncurses' for no useful reaso...
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...iff --git a/customize/Makefile.am b/customize/Makefile.am index 56c5ad5..c945685 100644 --- a/customize/Makefile.am +++ b/customize/Makefile.am @@ -124,7 +124,7 @@ OCAMLCFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) $(OCAMLPACKAGES) OCAMLOPTFLAGS = $(OCAMLCFLAGS) OCAMLCLIBS = \ - $(LIBXML2_LIBS) -lncurses -lcrypt \ + $(LIBXML2_LIBS) $(LIBINTL) -lncurses -lcrypt \ -L../src/.libs -lutils \ -L../gnulib/lib/.libs -lgnu diff --git a/df/Makefile.am b/df/Makefile.am index 29e0bf5..e56ac79 100644 --- a/df/Makefile.am +++ b/df/Makefile.am @@ -71,6 +71,7 @@ virt_df_LDADD = \ $(top_builddir)/src/libgue...
2014 Nov 06
0
Re: [PATCH] Use -ltinfo instead of -lncurses.
On Wednesday 05 November 2014 21:37:14 Richard W.M. Jones wrote: > In tools except guestfish, we don't use ncurses, or even curses, just > 2 termcap functions and a global variable. These are provided by > libtinfo, so just link to that. Sounds good. > In guestfish we use readline which needs ncurses. Leave that alone. Given that three AC_CHECK_LIB checking for ncurses are now
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...omize/Makefile.am > index 56c5ad5..c945685 100644 > --- a/customize/Makefile.am > +++ b/customize/Makefile.am > @@ -124,7 +124,7 @@ OCAMLCFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) $(OCAMLPACKAGES) > OCAMLOPTFLAGS = $(OCAMLCFLAGS) > > OCAMLCLIBS = \ > - $(LIBXML2_LIBS) -lncurses -lcrypt \ > + $(LIBXML2_LIBS) $(LIBINTL) -lncurses -lcrypt \ > -L../src/.libs -lutils \ > -L../gnulib/lib/.libs -lgnu > > diff --git a/df/Makefile.am b/df/Makefile.am > index 29e0bf5..e56ac79 100644 > --- a/df/Makefile.am > +++ b/df/Makefile.am > @@ -71,6 +71,7 @@ v...
2003 Jan 29
2
acs_map
I'm having trouble compiling wine on a newish box. The problem is a missing symbol 'acs_map' cropping up in dlls/ttydrv/graphics.o. The symbol is not directly in the relevant source file so it seems to be from a macro or typedef but extensive grepping has not identified the source. I suspect the problem is a package missing in the distro (dRock 1.6.0) but have not been able to
2003 Apr 10
4
Error compiling in RedHat 9
...checking host system type... i686-pc-linux-gnu checking for a BSD compatible install... install checking for ranlib... ranlib checking for ar... /usr/bin/ar checking for tgetent in -ltermcap... no checking for tgetent in -ltinfo... no checking for tgetent in -lcurses... no checking for tgetent in -lncurses... no configure: error: termcap support not found make: *** [editline/config.h] Error 1 ------End------ Any idea whats wrong?? or is somthing missing?? Later.. -- ______________________________________________ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by...
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi, continuing what started a couple of weeks ago [1], the attached patch series continues the work in making it easier to build and run libguestfs (in fixed appliance mode) on OSes different than Linux. The provided changes should cause no functional changes on Linux. [1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html Thanks, -- Pino Pino Toscano (9): build: check
2003 Mar 29
1
compling errors for sun unix (PR#2702)
...-g -O2 -I/usr/local/include -L/usr/local/lib conftest.c -lm >&5 configure:11098: warning: conflicting types for built-in function `sin' configure:11093: $? = 0 configure:11096: test -s conftest configure:11099: $? = 0 configure:11111: result: yes configure:11123: checking for main in -lncurses configure:11148: gcc -o conftest -g -O2 -I/usr/local/include -L/usr/local/lib conftest.c -lncurses -lm >&5 configure:11151: $? = 0 configure:11154: test -s conftest configure:11157: $? = 0 configure:11169: result: yes configure:11299: checking for dlopen in -ldl configure:11330: gcc -o con...
2014 Feb 28
2
Re: enable build for ocaml bytecode
I believe this patch has now been superseded by Hilko's commit here: https://github.com/libguestfs/libguestfs/commit/f75142c577255b30f2a8e1d27baa5fd185594197 Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
2003 Mar 03
1
How to compile all code with the -fPIC flag? (PR#2601)
...owing message: make[1]: Entering directory `/home/nganm/R-1.6.2/src/modules/lapack' gcc -shared -L/usr/local/lib -o lapack.so Lapack.lo double.lo cmplx.lo -lbla s -L/usr/local/lib -L/usr/lib/gcc-lib/ia64-redhat-linux/2.96 -L/usr/lib/gcc-lib/ ia64-redhat-linux/2.96/../../.. -lreadline -ldl -lncurses -lg2c -lm -lpcre -lbz2 -lz -lreadline -ldl -lncurses -lm /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gpr...
2003 Feb 03
2
itanium
...mpilers versions and flags that they used? thanks bye rob gcc -shared -L/usr/local/lib -o lapack.so Lapack.lo double.lo cmplx.lo cmplxblas.lo -L/usr/local/lib -L/usr/lib/gcc-lib/ia64-redhat-linux/2.96 -L/usr/lib/gcc-lib/ia64-redhat-linux/2.96/../../.. -lreadline -ldl -lncurses -lg2c -lm -lpcre -lbz2 -lz -lreadline -ldl -lncurses -lm /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen /usr/bin/ld: open.o: @gpre...
2003 Jul 17
7
Speex support
What is the state of speex support in asterisk? I saw the codec seems to be there. Can speex be used on IAX2 links? Is there much work still to be done? many thanks, --J.
2003 Apr 14
7
Trouble installing
I am trying to run the make command to install Asterisk, but I get the following error: make ... ... checking for tgetent in -ltermcap ... no checking for tgetent in -ltinfo ... no checking for tgetent in -lcurses ... no checking for tgetent in -lncurses ... no configure: error: termcap support not found I am running Mandrake 9.1 on a Pentium II 200MHz. Could this be a hardware issue? I have Mandrake 9.1 running on my laptop and I was able to install the program with no difficulty. Any help will be greatly appreciated. ___________________...
2005 Mar 10
4
Compiling Asterisk On SUSE 9.2
...ce - zaptel, libpri, asterisk) on two different machines running SUSE 9.2. The problem comes during some preliminary checks: checking for ar... /usr/bin/ar checking for tgetent in -ltermcap... no checking for tgetent in -ltinfo... no checking for tgetent in -lcurses... no checking for tgetent in -lncurses... no configure: error: termcap support not found make: *** [editline/libedit.a] Error 1 Now I got the termcap rpm and afaik it's installed (now). Is there anything obvious I should try? Thanks in advance, Aldo
2004 Nov 23
2
-lssl
...Asterisk from cvs source. Compiled and installed zaptel ok Running make asterisk returns the following error message /usr/bin/ld cannot find -lssl collect2: ld returned 1 exit status The last part of the compile messages on screen are- editline/libedit.a db1.ast/libdb1.a stdtime/libtime.a -ldl -lncurses -lm -lresolv -lssl There is obviously something I have not installed, but what ? Have searched archives and thro package descriptions and come up with nothing Any help appreciated -- Clive Email : clive.carter@sbcs.co.uk Alt : clivecarter@orange.net Tel : 0845 0043366 Alt : 01952 40...
2003 Jan 21
1
problems when compiling package 'norm'
...-fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -fno-fast-math -fno-strength-reduce -c norm.f -o norm.o gcc -shared -L/usr/local/lib -o norm.so norm.o -L/usr/local/lib -L/usr/lib/gcc-lib/i586-mandrake-linux-gnu/2.96 -L/usr/lib/gcc-lib/i586-mandrake-linux-gnu/2.96/../../.. -lreadline -ldl -lncurses -lg2c -lm -L/usr/lib/R/bin -lR /usr/bin/ld: cannot find -lreadline collect2: ld returned 1 exit status make: *** [norm.so] Error 1 ERROR: compilation failed for package 'norm' My libreadline's are under /lib. I've tried with: R CMD INSTALL --with=/lib norm_1.0-9.tar.gz but same...
2005 Mar 29
3
-lssl problem on debian
...law.o alaw.o callerid.o fskmodem.o image.o app.o cdr.o tdd.o acl.o rtp.o manager.o asterisk.o ast_expr.o dsp.o chanvars.o indications.o autoservice.o db.o privacy.o astmm.o enum.o srv.o dns.o aescrypt.o aestab.o aeskey.o utils.o editline/libedit.a db1-ast/libdb1.a stdtime/libtime.a -ldl -lpthread -lncurses -lm -lresolv -lssl /usr/bin/ld: cannot find -lssl collect2: ld returned 1 exit status make: *** [asterisk] Error 1 I have installed openssl. I added /usr/lib/ssl into my /etc/ld.so.conf. Looked for other pkgs such as dev pkgs for openssl but couldn't find any. Can anyone help me to find out...