I'm following the foo dissector example but would like to know how to compile it.

The foo dissector example is shown in this link: http://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html

You'll notice it mentions that the interlink directory contains good examples of support files I can use and that I need to modify Makefile.am & makefile.common etc. I've modified those to reflect the foo module.

However, now I'd like to know how to build it. I tried running automake but it complains there there is no configure.in. Sorry I'm not too familar with the gnu build environment yet.

Also, is it possible to build this module standalone? or do I need all the other wireshark sources available? I have of course installed wireshark-dev under ubuntu.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Answering my own question.

Looks like I have to follow the instructions contained in the Wireshark source. i.e. doc/README.plugins

Provides all the information required to build plugins for Wireshark.

link|improve this answer
3  
Note that the wireshark build is a terrible example of how to use the autotools (or, perhaps it is an excellent example of how to completely butcher the autotools). As a practical tip, you might want to completely avoid their bootstrap and just run autoreconf. (That will construct configure.in and run automake for you.) – William Pursell Feb 7 '11 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.