[REBOL] one more time

2000-07-06 Thread balayo

one more time

howdy again,

I'm stumped. Why do I get this with REBOL 2.3.0.4.2:

error in loading shared libraries: libtermcap.so.2: cannot open shared
object file: No such file or directory

and not with 2.2.0.4.2?

I ran "update", and I'm using the libc6 version...
does anyone have a clue?

Thanks in advance,

-tom




[REBOL] one more time Re:

2000-07-06 Thread kevin


 I'm stumped. Why do I get this with REBOL 2.3.0.4.2:
 
 error in loading shared libraries: libtermcap.so.2: cannot open shared
 object file: No such file or directory
 
 and not with 2.2.0.4.2?

Hi Tom,

What version of libtermcap does your Linux box have installed?
(Look in /lib)

If you don't have a file or symlink named libtermcap.so.2, you can 
*probably* make a symlink with that name to whatever version of 
libtermcap you have installed.

Cheers,
Kev


Kevin McKinnon, System/Network Administrator [EMAIL PROTECTED]
Sunshine Communications http://www.sunshinecable.com

PGP Public Key: http://www.dockmaster.net/pgp.html   PGP 6.0 www.pgp.com




[REBOL] one more time Re:

2000-07-06 Thread icimjs

Hi Tom,

to make things a little more interesting, under Redhat Linux 2.2.15 I am
having absolutely no problems.

Which Linux distribution are you using?

At 12:59 PM 7/6/00 +0100, you wrote:
one more time

howdy again,

I'm stumped. Why do I get this with REBOL 2.3.0.4.2:

error in loading shared libraries: libtermcap.so.2: cannot open shared
object file: No such file or directory

and not with 2.2.0.4.2?

I ran "update", and I'm using the libc6 version...
does anyone have a clue?

Thanks in advance,

-tom




;- Elan [ : - ) ]




[REBOL] one more time Re:

2000-07-06 Thread ingo

Hi Tom,

yes, I found that, too. rebol _once_again_ uses
libtermcap, instead of libncurses, it's the only
change between 2.2 and 2.3 regarding libraries.

Debian/Gnu Linux on the other hand regards 
libtermcap as outdated, and only supports a 
libc5 version of libtermcap.

SO, what to do now? libncurses is able to act like
libtermcap, so what I did on my system: I created
libtermcap.so.2 as a link to libncurses ... that
works.

libtermcap.so.2 - /lib/libncurses.so.3.4


regards,

Ingo


Once upon a time [EMAIL PROTECTED] spoketh thus:
 one more time
 
 howdy again,
 
 I'm stumped. Why do I get this with REBOL 2.3.0.4.2:
 
 error in loading shared libraries: libtermcap.so.2: cannot open shared
 object file: No such file or directory
 
 and not with 2.2.0.4.2?
 
 I ran "update", and I'm using the libc6 version...
 does anyone have a clue?
 
 Thanks in advance,
 
 -tom
 

--
do http://www.2b1.de/
_ ._
ingo@)|_ /|  _| _  We ARE all ONE   www._|_o _   _ ._ _  
www./_|_) |o(_|(/_  We ARE all FREE ingo@| |(_|o(_)| (_| 
 ._|  ._|




[REBOL] one more time Re:(2)

2000-07-06 Thread Petr . Krenzelok



[EMAIL PROTECTED] wrote:

  I'm stumped. Why do I get this with REBOL 2.3.0.4.2:
 
  error in loading shared libraries: libtermcap.so.2: cannot open shared
  object file: No such file or directory
 
  and not with 2.2.0.4.2?

 Hi Tom,

 What version of libtermcap does your Linux box have installed?
 (Look in /lib)

 If you don't have a file or symlink named libtermcap.so.2, you can
 *probably* make a symlink with that name to whatever version of
 libtermcap you have installed.

what about trying "ldd rebol" to see the dependencies? It helped me in
problems identification with libc versioning ...


Cheers,
-pekr-



 Cheers,
 Kev

 
 Kevin McKinnon, System/Network Administrator [EMAIL PROTECTED]
 Sunshine Communications http://www.sunshinecable.com

 PGP Public Key: http://www.dockmaster.net/pgp.html   PGP 6.0 www.pgp.com




[REBOL] one more time Re:(2)

2000-07-06 Thread balayo


 What version of libtermcap does your Linux box have installed?
 (Look in /lib)

 If you don't have a file or symlink named libtermcap.so.2, you can
 *probably* make a symlink with that name to whatever version of
 libtermcap you have installed.


Howdy guys,

That was it.  I use Debian, and Debian doesn't use libtermcap, but
libncurses.  I symlinked libncurses to what REBOL was looking for,
libtermcap.so.2.  It works...ta d.

Thanks!

--

-tom