Hi,

wangji ha scritto:
>> You also have to run make in wxWidgets/contrib/src/stc.
...
> 
> alas! no. All dir now do compile,but make in the contrib/src/stc only builds 
> a 
> shared_library_gtkstc.This can be put aside right now.
after doing "make" in contrib/src/stc you'll probably also want to do a 
"make install" (with root privileges).


> I got only wx.so (with wxluacan wxluafreeze ) but no wxlua;
Please note that when you run wxLua's configure it will do a check for 
wxSTC:

checking if wxSTC contrib is available...

in case the result is "no", you'll get a message like:

configure:
     The wxWidgets wrappers for Scintilla text control could not be found
     (at least not for the 'gtk2-ansi-debug-static-2.9' wxWidgets build).
     Please be sure that you compiled and installed it since they are
     not built together with wxWidgets by default.
     E.g. from wxWidgets build directory type:

         cd contrib/src/stc && make && sudo make install
         cd contrib/samples/stc && make

     If you still get this error message, look at config.log for more 
details
     or report this problem to [EMAIL PROTECTED]
     NOTE: build is proceeding without Scintilla wrappers, but you will miss
           the wxLuaApp and wxLuaEdit applications!

if there is something unclear in the msg, please tell me. I think it's 
nearly crystal-clear :D


> A last -I hope- question for my education : why when launching wxluacan --help
> it requires glibc_2.4 ? I thought ,that building the whole stuff ,there is no 
> more this requirement (or at least it should require glibc_2.4 right at the 
> beginning of the build process !)
_every_ application on your linux system will depend on the GNU libc. 
It's a "special" lib exactly for that reason.

This is not really wxLua-related. There's no way AFAIK to statically 
link in the GNU libc.

if it helps, you can list the dynamic dependencies of an ELF file doing:

objdump -x MyFile | grep NEEDED

(which gives the real deps unlike "ldd" which also shows the 
dependencies of your real dependencies).

Francesco



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to