diff options
author | Lars Roland <Lars.Roland@gmx.net> | 2005-01-21 19:16:05 +0000 |
---|---|---|
committer | Lars Roland <Lars.Roland@gmx.net> | 2005-01-21 19:16:05 +0000 |
commit | c4ac7edd32aa59ca3fa9a7823a7cff47f4767a29 (patch) | |
tree | 901cf915cba7bf6b2bdfac5e6d85ff843eba98b8 /packaging | |
parent | f7a9907702213b38a4393cb2ab3416072ed18262 (diff) | |
download | wireshark-c4ac7edd32aa59ca3fa9a7823a7cff47f4767a29.tar.gz wireshark-c4ac7edd32aa59ca3fa9a7823a7cff47f4767a29.tar.bz2 wireshark-c4ac7edd32aa59ca3fa9a7823a7cff47f4767a29.zip |
Add mate.dll to the installer.
However it won't be installed by default.
svn path=/trunk/; revision=13155
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/nsis/Makefile.nmake | 1 | ||||
-rw-r--r-- | packaging/nsis/ethereal.nsi | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake index 1642254baf..5567eb10d9 100644 --- a/packaging/nsis/Makefile.nmake +++ b/packaging/nsis/Makefile.nmake @@ -73,6 +73,7 @@ PLUGINS=../../plugins/acn/acn.dll \ ../../plugins/gryphon/gryphon.dll \ ../../plugins/irda/irda.dll \ ../../plugins/lwres/lwres.dll \ + ../../plugins/mate/mate.dll \ ../../plugins/megaco/megaco.dll \ ../../plugins/mgcp/mgcp.dll \ ../../plugins/opsi/opsi.dll \ diff --git a/packaging/nsis/ethereal.nsi b/packaging/nsis/ethereal.nsi index 45d1b4f3dc..6c9030f503 100644 --- a/packaging/nsis/ethereal.nsi +++ b/packaging/nsis/ethereal.nsi @@ -438,6 +438,12 @@ File "..\..\plugins\rudp\rudp.dll" File "..\..\plugins\v5ua\v5ua.dll" SectionEnd +Section "Mate - Meta Analysis and Tracing Engine (Experimental)" SecMate +;------------------------------------------- +SetOutPath $INSTDIR\plugins\${VERSION} +File "..\..\plugins\mate\mate.dll" +SectionEnd + Section "SNMP MIBs" SecMIBs ;------------------------------------------- !ifdef GTK1_DIR & GTK2_DIR @@ -684,6 +690,7 @@ SectionEnd !insertmacro MUI_DESCRIPTION_TEXT ${SecMergecap} "Mergecap is a program that combines multiple saved capture files into a single output file." !insertmacro MUI_DESCRIPTION_TEXT ${SecCapinfos} "Capinfos is a program that provides information on capture files." !insertmacro MUI_DESCRIPTION_TEXT ${SecPlugins} "Plugins with some extended dissections." + !insertmacro MUI_DESCRIPTION_TEXT ${SecMate} "Plugin - Meta Analysis and Tracing Engine (Experimental)." !insertmacro MUI_DESCRIPTION_TEXT ${SecMIBs} "SNMP MIBs for better SNMP dissection." !insertmacro MUI_DESCRIPTION_TEXT ${SecShortcuts} "Start menu shortcuts." !insertmacro MUI_DESCRIPTION_TEXT ${SecDesktopIcon} "Ethereal desktop icon." |