diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-08-31 09:19:41 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-08-31 09:19:41 +0000 |
commit | 5a9fc6543f0756b913143a8c57954dafee19f879 (patch) | |
tree | 23056e18d52cb4aa86358be1a30c2b854c449b31 /doc/README.developer | |
parent | 477ab2a7ccaeaf5bf09c84f94a02e0f965669e6d (diff) | |
download | wireshark-5a9fc6543f0756b913143a8c57954dafee19f879.tar.gz wireshark-5a9fc6543f0756b913143a8c57954dafee19f879.tar.bz2 wireshark-5a9fc6543f0756b913143a8c57954dafee19f879.zip |
corrected paths, where the dissectors and the corresponding Makefile.common can be found, to epan/dissectors
svn path=/trunk/; revision=11858
Diffstat (limited to 'doc/README.developer')
-rw-r--r-- | doc/README.developer | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/README.developer b/doc/README.developer index eb5da52d76..2d7ec4740e 100644 --- a/doc/README.developer +++ b/doc/README.developer @@ -951,7 +951,7 @@ generated automatically; to arrange that a protocol's register routine be called at startup: the file containing a dissector's "register" routine must be - added to "DISSECTOR_SRC" in "epan/Makefile.common"; + added to "DISSECTOR_SRC" in "epan/dissectors/Makefile.common"; the "register" routine must have a name of the form "proto_register_XXX"; @@ -1896,14 +1896,14 @@ dissect_ipx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) To arrange that your dissector will be built as part of Ethereal, you must add the name of the source file for your dissector to the -'DISSECTOR_SRC' macro in the 'Makefile.common' file in the 'epan' +'DISSECTOR_SRC' macro in the 'Makefile.common' file in the 'epan/dissectors' directory. (Note that this is for modern versions of UNIX, so there is no 14-character limitation on file names, and for modern versions of Windows, so there is no 8.3-character limitation on file names.) If your dissector also has its own header file or files, you must add them to the 'DISSECTOR_INCLUDES' macro in the 'Makefile.common' file in -the top-level directory, so that it's included when release source +the 'epan/dissectors' directory, so that it's included when release source tarballs are built (otherwise, the source in the release tarballs won't compile). |