[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: how to install slnunicode library
- From: Petite Abeille <petite_abeille@...>
- Date: Fri, 1 Feb 2008 17:49:06 +0100
On Feb 1, 2008, at 5:44 PM, Jelle Huisman wrote:
This script gives me a unicode.so file, but the next question is:
where should I put that file? I copied the file to /usr/local/lib/
lua but the test file "unitest" (which is part of the slnunicode
source) fails with this message:
Check/adjust the content of package.cpath, e.g.:
print( package.cpath )
./?.so;/usr/local/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/
loadall.so;lib/?.so
And drop the unicode.so file there, e.g. the directory where you Lua
script is as './?.so' is part of package.cpath.
Cheers,
PA.