aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.plugins
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-05-31 19:12:15 +0000
committerGerald Combs <gerald@wireshark.org>2006-05-31 19:12:15 +0000
commiteb71f7fb96f883b748536eecde9f6f49eedbcfee (patch)
treee686fde4e5609ee0ed12778fccbded159b386785 /doc/README.plugins
parent2fd928645b5aa69feb967d00f8604b98ed0dc237 (diff)
Rename the main executable to "wireshark", along with more conversions:
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
Diffstat (limited to 'doc/README.plugins')
-rw-r--r--doc/README.plugins10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index 1d1f60cef5..4f0f3e2383 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -7,7 +7,7 @@ standard one. In fact all of the functions described in
README.developer can be used in the plugins exactly as the are used in
standard dissectors.
-(Note, however, that not all OSes on which Ethereal runs can support
+(Note, however, that not all OSes on which Wireshark runs can support
plugins.)
If you've chosen "xxx" as the name of your plugin (typically, that would
@@ -68,7 +68,7 @@ information for the plugin. An example follows:
/* Version number of package */
#define VERSION "0.0.8"
-3. Changes to existing Ethereal files
+3. Changes to existing Wireshark files
You will also need to change the plugins/Makefile.am toplevel
Makefile.am, the plugins/Makefile.nmake toplevel Makefile.nmake, the
@@ -175,7 +175,7 @@ AC_OUTPUT(
packaging/Makefile
packaging/nsis/Makefile
packaging/rpm/Makefile
- packaging/rpm/ethereal.spec
+ packaging/rpm/wireshark.spec
packaging/svr4/Makefile
packaging/svr4/checkinstall
packaging/svr4/pkginfo
@@ -194,13 +194,13 @@ Plugins make some aspects of development easier and some harder.
The good news is that if you are working on a single plugin
then you will find recompiling the plugin MUCH faster than
-recompiling a dissector and then linking it back into ethereal.
+recompiling a dissector and then linking it back into wireshark.
The bad news is that wireshark will not use the plugin unless the
plugin is installed in one of the places it expects to look.
One way to deal with this problem is to set up a working root for
-ethereal, say in $HOME/build/root and build ethereal to install
+wireshark, say in $HOME/build/root and build wireshark to install
there
./configure --prefix=${HOME}/build/root;make install