Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: help on rebview124704

From: nitsch-lists:netcologne at: 16-Jul-2004 4:12

On Donnerstag, 15. Juli 2004 20:28, Carlos Lorenz wrote:
> Hi list, > > Is rebview124704 (available for download) a recent version of REBOL/View or > not ? > > I am trying top run it but I have the following error: > > [kurumin--Duron750]:~$ ./rebview1247042 > > ./rebview1247042: error while loading shared libraries: libXaw.so.6: cannot > open shared object file: No such file or directory >
Yes, very current. But has a bug: it links to libXaw.so.6, and newer linuxes have only libXaw.so.7 . As workaround its possible to link ln -s /usr/X11R6/lib/libXaw.so.7 /usr/X11R6/lib/libXaw.so.6 But somehow my knoppix don't likes this, some config-script deletes this link. From its POV its right, its a wrong link. From my POV thats another thing. So i make this link in another folder, and start rebol with this script: #!/bin/sh REB_DIR=~/rebols #do the ln once: #ln -s /usr/X11R6/lib/libXaw.so.7 $REB_DIR/libXaw.so.6 export LD_LIBRARY_PATH=$REB_DIR $REB_DIR/rebview1247042 "$@" -Volker