[Wireshark-users] Wireshark 0.99.6 symbol lookup error Fails to run.

2007-07-09 Thread Jemiolo, John
Just installed platform independent 0.99.6 from Sourceforge, on my SUSE
10.1  Linux box.  It appeared to config/build/instal ok, but I get the
following error when I try to run it.

 Wireshark: symbol lookup error: /usr/local/lib/libwireshark.so.0 :
undefined symbol: mpa_samples 


Anyone seen this? 



Thanks
JJ
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


[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.) might be built with it either.

Hmm, the version I had with my distro (Debian Etch) was 0.99.4 but still didn't 
have Lua built in.  So I downloaded the latest version from the website, 
0.99.6, and configured it with Lua support.  Here's the command I used:

[EMAIL PROTECTED]:~/src/wireshark-0.99.6$ ./configure 
--with-lua=/usr/include/lua5.1/

Then the final result was:

The Wireshark package has been configured with the following options.
Build wireshark : yes
   Build tshark : yes
 Build capinfos : yes
  Build editcap : yes
  Build dumpcap : yes
 Build mergecap : yes
Build text2pcap : yes
  Build idl2wrs : yes
  Build randpkt : yes
   Build dftest : yes

 Install setuid : no
Use plugins : yes
   Build lua plugin : yes
   Build rtp_player : no
Use GTK+ v2 library : yes
Use threads : no
 Build profile binaries : no
   Use pcap library : yes
   Use zlib library : yes
   Use pcre library : no
   Use kerberos library : no
   Use GNU ADNS library : no
 Use GNU crypto library : no
 Use SSL crypto library : no
   Use IPv6 name resolution : yes
   Use Net-SNMP library : no
 Use gnutls library : no

But when I started off the compile, and it got to the Lua module, it exited 
fatally with the error snippet:

In file included from ./wslua_tvb.c:31:
./wslua.h:40:17: error: lua.h: No such file or directory
./wslua.h:41:20: error: lualib.h: No such file or directory
./wslua.h:42:21: error: lauxlib.h: No such file or directory

What am I doing wrong and how do I fix this please?

Thanks very much for your time in advance!

Regards - Piers
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


[Wireshark-users] cant install wireshark on SPARC Solaris

2007-07-09 Thread Осоченко Андрей
Hi All!
i'm trying to './configure' wireshark 0.99.5 on SPARC Solaris 8 machine, but 
getting this error:
 
configure: error: neither %llx nor %Lx nor %qx worked on a 64-bit integer
configure: error: /bin/ksh './configure' failed for wiretap
 
Coul you suggest any workaround?
 
best regards,
Andrew
Чистый лист_фон.gif___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


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 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.

 Hmm, the version I had with my distro (Debian Etch) was 0.99.4 but still 
 didn't have Lua built in.  So I downloaded the latest version from the 
 website, 0.99.6, and configured it with Lua support.  Here's the command I 
 used:

 [EMAIL PROTECTED]:~/src/wireshark-0.99.6$ ./configure 
 --with-lua=/usr/include/lua5.1/

 Then the final result was:

 The Wireshark package has been configured with the following options.
 Build wireshark : yes
Build tshark : yes
  Build capinfos : yes
   Build editcap : yes
   Build dumpcap : yes
  Build mergecap : yes
 Build text2pcap : yes
   Build idl2wrs : yes
   Build randpkt : yes
Build dftest : yes

  Install setuid : no
 Use plugins : yes
Build lua plugin : yes
Build rtp_player : no
 Use GTK+ v2 library : yes
 Use threads : no
  Build profile binaries : no
Use pcap library : yes
Use zlib library : yes
Use pcre library : no
Use kerberos library : no
Use GNU ADNS library : no
  Use GNU crypto library : no
  Use SSL crypto library : no
Use IPv6 name resolution : yes
Use Net-SNMP library : no
  Use gnutls library : no

 But when I started off the compile, and it got to the Lua module, it exited 
 fatally with the error snippet:

 In file included from ./wslua_tvb.c:31:
 ./wslua.h:40:17: error: lua.h: No such file or directory
 ./wslua.h:41:20: error: lualib.h: No such file or directory
 ./wslua.h:42:21: error: lauxlib.h: No such file or directory

 What am I doing wrong and how do I fix this please?

 Thanks very much for your time in advance!

 Regards - Piers
 ___
 Wireshark-users mailing list
 Wireshark-users@wireshark.org
 http://www.wireshark.org/mailman/listinfo/wireshark-users



-- 
This information is top security. When you have read it, destroy yourself.
-- Marshall McLuhan
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


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 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.

 liblua5.1-dev is already installed:

 [EMAIL PROTECTED]:/usr/include/lua5.1$ ls
 lauxlib.h  luaconf.h  lua.h  lua.hpp  lualib.h
 [EMAIL PROTECTED]:/usr/include/lua5.1$

 and

 akane:/home/piers# dpkg -l | grep lua
 ii  liblua5.1-0  5.1.1-2 Simple, 
 extensible, embeddable programming l
 ii  liblua5.1-0-dev  5.1.1-2 Simple, 
 extensible, embeddable programming l
 ii  liblua50 5.0.3-2 Main 
 interpreter library for the Lua 5.0 pro
 ii  liblualib50  5.0.3-2 
 Extension library for the Lua 5.0 programmin
 ii  lua505.0.3-2 Small 
 embeddable language with simple proced
 akane:/home/piers#

 Thanks very much for your help again.

 Regards - Piers
 ___
 Wireshark-users mailing list
 Wireshark-users@wireshark.org
 http://www.wireshark.org/mailman/listinfo/wireshark-users



-- 
This information is top security. When you have read it, destroy yourself.
-- Marshall McLuhan
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


[Wireshark-users] Installing wireshark on Solaris 10

2007-07-09 Thread Ahmed A
Hello,

I am planning to install Wireshark on Solaris 10
(update 3).  Is there some binaries I can just
install, or do I need to download source code and
install.

I followed the link on wireshark.org and went to
blastwave.org.  However, the title on wireshark
package says Package information for package(s) in
the unstable tree, along with a whole list of
dependency package.  Is there a recommended site
where I get a stable tree for Solaris.

On a side note, after browsing the ethereal site, I
was not able to tell, but is Ethereal supported on
Solaris 10?

Thank you,
Aha.


 

It's here! Your new message!  
Get new email alerts with the free Yahoo! Toolbar.
http://tools.search.yahoo.com/toolbar/features/mail/
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] I can't capture any WiMAX messages with Wireshark

2007-07-09 Thread Guy Harris
Sergey Antoniuk wrote:

 I'm trying to capture WiMAX messages using Wireshark 0.99.6 on Win XP 
 and there is nothing. I tried to do the same with Ethereal and i succeed 
 to capture WiMAX messages.

Wireshark and Ethereal are the same application; releases up to 
0.99.0 were called Ethereal, and releases 0.99.1 and later are called 
Wireshark.  Were you trying to capture with Ethereal 0.99.0, or an 
earlier release?

Are you capturing these on a WiMAX network adapter?  On what OS are you 
trying to capture?
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] HA: cant install wireshark on SPARC Solaris

2007-07-09 Thread Guy Harris
It's failing to find GLib.  I'm surprised the configure script didn't 
stop when it couldn't find GLib; what was the complete output that the 
configure script printed?

Do you have a *developer* version of GTK+ and GLib installed?

If no, you have to install them.

If so, are they installed under /usr/local, or in some directory under 
/opt, or somewhere else?  And is it GTK+/GLib 2.x, or 1.2[.x]?
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


[Wireshark-users] HA: HA: cant install wireshark on SPARC Solaris

2007-07-09 Thread Осоченко Андрей
I'm not sure about *developer* version of glib
here is pkginfo
# pkginfo -l SMCglib
   PKGINST:  SMCglib
  NAME:  glib
  CATEGORY:  application
  ARCH:  sparc
   VERSION:  2.13.0
   BASEDIR:  /usr/local
VENDOR:  GTK Group
PSTAMP:  Steve Christensen
  INSTDATE:  Jul 09 2007 11:34
 EMAIL:  [EMAIL PROTECTED]
STATUS:  completely installed
 FILES: 1019 installed pathnames
 128 shared pathnames
 194 directories
  13 executables
   48926 blocks used (approx)

Could you give a link where to download the proper version ??
 
Andrew



От: [EMAIL PROTECTED] от имени Guy Harris
Отправлено: Пн, 09.07.2007 21:47
Кому: Community support list for Wireshark
Тема: Re: [Wireshark-users] HA: cant install wireshark on SPARC Solaris



It's failing to find GLib.  I'm surprised the configure script didn't
stop when it couldn't find GLib; what was the complete output that the
configure script printed?

Do you have a *developer* version of GTK+ and GLib installed?

If no, you have to install them.

If so, are they installed under /usr/local, or in some directory under
/opt, or somewhere else?  And is it GTK+/GLib 2.x, or 1.2[.x]?
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


winmail.dat___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] HA: HA: cant install wireshark on SPARC Solaris

2007-07-09 Thread Guy Harris
Осоченко Андрей wrote:
 I'm not sure about *developer* version of glib
 here is pkginfo
 # pkginfo -l SMCglib
PKGINST:  SMCglib
   NAME:  glib
   CATEGORY:  application
   ARCH:  sparc
VERSION:  2.13.0

So it's GLib 2.x.

BASEDIR:  /usr/local

OK, so it'd be installed under /usr/local.

Is there anything with glib in its name in the /usr/local/include 
directory?

 VENDOR:  GTK Group
 PSTAMP:  Steve Christensen
   INSTDATE:  Jul 09 2007 11:34
  EMAIL:  [EMAIL PROTECTED]

I assume you got this from sunfreeware.net, given the Steve 
Christensen and [EMAIL PROTECTED].

 Could you give a link where to download the proper version ??

sunfreeware.com only appears to have one package, so either

1) the GLib 2.13.0 package includes both user and developer 
components

or

2) you can't get developer components from them.

I don't know which is the case; if there's a directory, or multiple 
files, with glib in their names, in or under /usr/local/include, it 
includes the developer stuff.
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


[Wireshark-users] HA: HA: HA: cant install wireshark on SPARCSolaris

2007-07-09 Thread Осоченко Андрей
Guy,
the content of /usr/local/include is the following:
Could you determine from the output if it's developer version?
 
# pwd
/usr/local/include
# ls -la
total 424
drwxr-xr-x   5 bin  bin  512 Jul  9 12:26 .
drwxr-xr-x  13 root sys  512 Jul  5 07:13 ..
drwxr-xr-x   3 bin  bin  512 Jul  9 10:10 c++
-rw-r--r--   1 bin  bin 6953 Jun  7 01:26 gcrypt-module.h
-rw-r--r--   1 bin  bin60508 Jun  7 01:26 gcrypt.h
drwxr-xr-x   4 bin  bin  512 Jul  9 11:34 glib-2.0
drwxr-xr-x   6 bin  bin  512 Jun 28 09:24 gtk-2.0
-rw-r--r--   1 bin  bin 8308 Nov 20  2006 iconv.h
-rw-r--r--   1 bin  bin 1550 Nov 20  2006 libcharset.h
-rw-r--r--   1 bin  bin12843 Feb  9  2005 libintl.h
-rw-r--r--   1 bin  bin 1395 Nov 20  2006 localcharset.h
-rw-r--r--   1 bin  bin23599 Dec 16  2006 pcap-bpf.h
-rw-r--r--   1 bin  bin 3426 Dec 16  2006 pcap-namedb.h
-rw-r--r--   1 bin  bin10991 Dec 16  2006 pcap.h
-rw-r--r--   1 bin  bin 9544 Aug  1  2005 zconf.h
-rw-r--r--   1 bin  bin66188 Aug  1  2005 zlib.h
# cd glib-2.0/
# ls -la
total 28
drwxr-xr-x   4 bin  bin  512 Jul  9 11:34 .
drwxr-xr-x   5 bin  bin  512 Jul  9 12:26 ..
drwxr-xr-x   2 bin  bin 1536 Jul  9 11:34 glib
-rw-r--r--   1 bin  bin 1474 Mar 18 08:08 glib-object.h
-rw-r--r--   1 bin  bin 2554 Mar 18 08:08 glib.h
-rw-r--r--   1 bin  bin 3613 Mar 18 08:08 gmodule.h
drwxr-xr-x   2 bin  bin  512 Jul  9 11:34 gobject
 
 



От: [EMAIL PROTECTED] от имени Guy Harris
Отправлено: Пн, 09.07.2007 22:29
Кому: Community support list for Wireshark
Тема: Re: [Wireshark-users] HA: HA: cant install wireshark on SPARCSolaris



Осоченко Андрей wrote:
 I'm not sure about *developer* version of glib
 here is pkginfo
 # pkginfo -l SMCglib
PKGINST:  SMCglib
   NAME:  glib
   CATEGORY:  application
   ARCH:  sparc
VERSION:  2.13.0

So it's GLib 2.x.

BASEDIR:  /usr/local

OK, so it'd be installed under /usr/local.

Is there anything with glib in its name in the /usr/local/include
directory?

 VENDOR:  GTK Group
 PSTAMP:  Steve Christensen
   INSTDATE:  Jul 09 2007 11:34
  EMAIL:  [EMAIL PROTECTED]

I assume you got this from sunfreeware.net, given the Steve
Christensen and [EMAIL PROTECTED].

 Could you give a link where to download the proper version ??

sunfreeware.com only appears to have one package, so either

1) the GLib 2.13.0 package includes both user and developer 
components

or

2) you can't get developer components from them.

I don't know which is the case; if there's a directory, or multiple
files, with glib in their names, in or under /usr/local/include, it
includes the developer stuff.
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


winmail.dat___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Wireshark conference

2007-07-09 Thread Jeff Morriss
Gerald Combs wrote:
 This is entirely hypothetical, but if someone were to host a 3-day
 Wireshark conference, what sort of sessions would you be interested in?
 If enough developers attended, would there be interest in a hackathon?

Sounds fun.  Hey, just being away from work and family for a couple days 
might give us all the time to review all the pending patches and bugs! ;-)
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Building latest tshark on FreeBSD 4.11

2007-07-09 Thread Tom Melendez

On 7/9/07, Jeff Morriss [EMAIL PROTECTED] wrote:


Tom Melendez wrote:
 Hi Folks,

 I'd like to use wireshark (tshark actually) on a FreeBSD 4.11 box.  I'm
 getting the following error while compiling with gcc-2.95:

 dtd_grammar.c: In function `DtdParseTokenName':
 dtd_grammar.c:405: warning: comparison between signed and unsigned
 dtd_grammar.c: In function `yy_reduce':
 dtd_grammar.c:1100: virtual memory exhausted

 I'm also using glib-2.6.6 .  Any ideas on how I can build this
(hopefully
 without upgrading gcc, although if that is the bad news, then give it to
 me)?  My configure line is:

Googling for gcc virtual memory exhausted turns up this page at the
top of the list:

http://www.delorie.com/djgpp/v2faq/faq6_4.html

It says you might want to turn off optimization.

Else add swap space?

Thanks Jeff.  I tried two of the simply changes they suggested with no

luck but will continue with the other changes they suggested and let the
list know how I make out.

Thanks,

Tom
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users