Re: [Wireshark-users] Lua compile problems

2007-07-10 Thread Piers Kittel
> Message: 3 > Date: Mon, 9 Jul 2007 19:17:03 +0200 > From: "Luis EG Ontanon" <[EMAIL PROTECTED]> > Subject: Re: [Wireshark-users] Lua compile problems > can you try --with-lua=/usr/ That worked - thanks! Now to figure out how l

Re: [Wireshark-users] Lua compile problems

2007-07-09 Thread Luis EG Ontanon
can you try --with-lua=/usr/ On 7/9/07, Piers Kittel <[EMAIL PROTECTED]> wrote: > Hello Jaap and Luis, > > > if you use --with-lua=$DIR check that $DIR/include/lua.h is there and > > that $DIR/lib/liblua.a is there as well. > > > > hint$ find /usr/ -name '*lua.*' > > > You've forced the configure

Re: [Wireshark-users] Lua compile problems

2007-07-09 Thread Sebastien Tandel
>> Lua is an interpretive language with an interpreter that's somewhat >> compact and embeddable. Wireshark can be built with Lua support - the >> Windows version we distribute is, I think, and other binary versions >> (various Linux and BSD packages, etc.) might be built with it either. > >

Re: [Wireshark-users] Lua compile problems

2007-07-09 Thread Piers Kittel
Hello Jaap and Luis, > if you use --with-lua=$DIR check that $DIR/include/lua.h is there and > that $DIR/lib/liblua.a is there as well. > > hint$ find /usr/ -name '*lua.*' > You've forced the configure script into thinking it can build with Lua > support. It can't until you install a package t

Re: [Wireshark-users] Lua compile problems

2007-07-09 Thread Jaap Keuter
Hi, You've forced the configure script into thinking it can build with Lua support. It can't until you install a package that provides liblua5.1-dev . In short: you need the Lua development package in order to build applications with Lua interpreter. Thanx, Jaap Piers Kittel wrote: > Guy, >

Re: [Wireshark-users] Lua compile problems

2007-07-09 Thread Luis EG Ontanon
if you use --with-lua=$DIR check that $DIR/include/lua.h is there and that $DIR/lib/liblua.a is there as well. hint$ find /usr/ -name '*lua.*' L On 7/9/07, Piers Kittel <[EMAIL PROTECTED]> wrote: > Guy, > > Thanks so much for your quick reply! > > > Lua is an interpretive language with an inter

[Wireshark-users] Lua compile problems

2007-07-09 Thread Piers Kittel
Guy, Thanks so much for your quick reply! > Lua is an interpretive language with an interpreter that's somewhat > compact and embeddable. Wireshark can be built with Lua support - the > Windows version we distribute is, I think, and other binary versions > (various Linux and BSD packages, etc