aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packaging/nsis/Makefile.nmake4
-rw-r--r--packaging/nsis/ethereal.nsi13
2 files changed, 15 insertions, 2 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake
index c5f9c69409..8a3f739d6e 100644
--- a/packaging/nsis/Makefile.nmake
+++ b/packaging/nsis/Makefile.nmake
@@ -83,7 +83,9 @@ PLUGINS=../../plugins/acn/acn.dll \
../../plugins/rlm/rlm.dll \
../../plugins/rtnet/rtnet.dll \
../../plugins/rudp/rudp.dll \
- ../../plugins/v5ua/v5ua.dll
+ ../../plugins/stats_tree/stats_tree.dll \
+ ../../plugins/v5ua/v5ua.dll \
+ ../../plugins/xml/xml.dll
DELIVERABLES=$(EXE) $(DLL) $(DOC) $(DOC_dos) $(GPL) $(HELP) $(PLUGINS)
diff --git a/packaging/nsis/ethereal.nsi b/packaging/nsis/ethereal.nsi
index 868b7b4325..460b39fe0c 100644
--- a/packaging/nsis/ethereal.nsi
+++ b/packaging/nsis/ethereal.nsi
@@ -412,7 +412,7 @@ File "..\..\doc\capinfos.html"
SectionEnd
-Section "Plugins" SecPlugins
+Section "Dissector Plugins" SecPlugins
;-------------------------------------------
!ifdef GTK1_DIR & GTK2_DIR
SectionIn 1 2
@@ -439,6 +439,16 @@ File "..\..\plugins\rlm\rlm.dll"
File "..\..\plugins\rtnet\rtnet.dll"
File "..\..\plugins\rudp\rudp.dll"
File "..\..\plugins\v5ua\v5ua.dll"
+File "..\..\plugins\xml\xml.dll"
+SectionEnd
+
+Section "Tree Statistics Plugin (currently only for http)" SecStatsTree
+;-------------------------------------------
+!ifdef GTK1_DIR & GTK2_DIR
+SectionIn 1 2
+!endif
+SetOutPath $INSTDIR\plugins\${VERSION}
+File "..\..\plugins\stats_tree\stats_tree.dll"
SectionEnd
Section "Mate - Meta Analysis and Tracing Engine (Experimental)" SecMate
@@ -698,6 +708,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 ${SecStatsTree} "Plugin for some extended statistics."
!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."