Re: lib termcap problems...

1999-06-06 Thread Holger Mense
On Sat, 5 Jun 1999, vmlinuz wrote:

 Hellow..
 
 I have trying to compiling Pine 4.10 on slink and I get this error:
 
 ld: cannot open -ltermcap: No such file or directory
 
 debian:/# ls -l /lib/libtermcap.so.2
 lrwxrwxrwx   1 root root   19 Jun  5 11:10 /lib/libtermcap.so.2
 - libtermcap.so.2.0.8
 
 Anyone can help me ?
Check if the file libtermcap.so.2.0.8 exists. If not, edit the makefile
of pine and exchange -ltermcap with -lncurses. Ncurses provides a
termcap emulation.

hth,

 CU, Holger

-- 
Holger Mense


Re: lib termcap problems...

1999-06-06 Thread Adilson dos Santos Dantas
On 5 Jun 99, at 11:35, vmlinuz wrote:

 Hellow..

 I have trying to compiling Pine 4.10 on slink and I get this error:

 ld: cannot open -ltermcap: No such file or directory

 debian:/# ls -l /lib/libtermcap.so.2
 lrwxrwxrwx   1 root root   19 Jun  5 11:10 /lib/libtermcap.so.2
 - libtermcap.so.2.0.8

 Anyone can help me ?

 Thanks!


I had the same problem when I compiled Pine 4.10. Just edit
pico/Makefile.lnx and pine/Makefile.lnx and change ltermcap to
lncurses and you can compile Pine without any problem.

 []´s

 Adilson



|-|
|Adilson dos Santos Dantas - Rio de Janeiro - Brasil  |
|e-mail: [EMAIL PROTECTED]   [EMAIL PROTECTED]|
|[EMAIL PROTECTED]   [EMAIL PROTECTED]  |
|URL: http://www.lci.ufrj.br/~adilsond  ICQ UIN# : 4542346|
| http://www.geocities.com/SiliconValley/7479 |
|-|

Serocki's Stricture:
Marriage is always a bachelor's last option.



lib termcap problems...

1999-06-05 Thread vmlinuz
Hellow..

I have trying to compiling Pine 4.10 on slink and I get this error:

ld: cannot open -ltermcap: No such file or directory

debian:/# ls -l /lib/libtermcap.so.2
lrwxrwxrwx   1 root root   19 Jun  5 11:10 /lib/libtermcap.so.2
- libtermcap.so.2.0.8

Anyone can help me ?

Thanks!


Re: lib termcap problems...

1999-06-05 Thread Chris Flipse
On Sat, Jun 05, 1999 at 11:35:19AM -0300, vmlinuz wrote:
  
  ld: cannot open -ltermcap: No such file or directory
  
  debian:/# ls -l /lib/libtermcap.so.2
  lrwxrwxrwx   1 root root   19 Jun  5 11:10 /lib/libtermcap.so.2
  - libtermcap.so.2.0.8

Have you checked that the file that this links to
(/lib/libtermcap.so.2.0.8) exists?

Sometimes a package sets up symlinks in it's configation scripts,
instead of including those links as a part of the package.  When the
package is removed, the links are left beghind.  

This is, as I understand it, a bug in the package.  It is certainly an
undersireable behavior.

 - flip

- [EMAIL PROTECTED]/[EMAIL PROTECTED] --
Learn from your parents mistakes -- use birth control.


Re: lib termcap problems...

1999-06-05 Thread Kris

At 11:35 05/06/1999 -0300, vmlinuz wrote:

 I have trying to compiling Pine 4.10 on slink and I get this error:
 
 ld: cannot open -ltermcap: No such file or directory
 
 Anyone can help me ?

Yep. In 'pine4.10/pine/makefile.lnx' change the line...

STDLIBS= -ltermcap

... to read...

STDLIBS= -lncurses

Do the same in /pico/makefile.lnx if you want pico (slightly different 
sytax, but just replace termcap with ncurses in the STDLIBS line)


Compile with the './build slx' option. (or at least that's what I used)

HTH, etc.