summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-08-27 22:06:47 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-08-27 22:06:47 +0000
commit15948507aee67b60a588e44fb13f95263d11764a (patch)
tree70323b1d5a232e49ec8d25d7720de08bd1489645
parentc9fde316d67641001a5bd9e832c914f4e85f216f (diff)
downloadwireshark-15948507aee67b60a588e44fb13f95263d11764a.tar.gz
Get smi_modules in the distrib
svn path=/trunk/; revision=22694
-rw-r--r--Makefile.am3
-rw-r--r--Makefile.nmake1
-rw-r--r--packaging/nsis/wireshark.nsi4
3 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 4c3097cb5b..ab4cc50766 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -100,7 +100,7 @@ idl2wrs: tools/idl2wrs.sh Makefile
pkgdata_DATA = AUTHORS-SHORT COPYING manuf services wireshark.html \
tshark.html wireshark-filter.html capinfos.html editcap.html \
idl2wrs.html mergecap.html text2pcap.html dumpcap.html \
- cfilters colorfilters dfilters
+ cfilters colorfilters dfilters smi_modules
#
# Install the Diameter DTD and XML files in the "diameter" subdirectory
@@ -669,6 +669,7 @@ EXTRA_DIST = \
$(radius_DATA) \
randpkt.c \
rdps.c \
+ smi_modules \
text2pcap-scanner.l \
text2pcap.c \
text2pcap.h \
diff --git a/Makefile.nmake b/Makefile.nmake
index f45d3db499..6a792477cf 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -882,6 +882,7 @@ install-common-files:
xcopy ".\cfilters" $(INSTALL_DIR) /d
xcopy ".\colorfilters" $(INSTALL_DIR) /d
xcopy ".\dfilters" $(INSTALL_DIR) /d
+ xcopy ".\smi_modules" $(INSTALL_DIR) /d
xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
xcopy doc\*.html $(INSTALL_DIR) /d
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index 307996b767..e6345adfb5 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -380,6 +380,9 @@ File "..\..\colorfilters"
;IfFileExists dfilters dont_overwrite_dfilters
File "..\..\dfilters"
;dont_overwrite_dfilters:
+;IfFileExists dfilters dont_overwrite_smi_modules
+File "..\..\smi_modules"
+;dont_overwrite_smi_modules:
;
@@ -1029,6 +1032,7 @@ Delete "$INSTDIR\dfilters"
Delete "$INSTDIR\init.lua"
Delete "$INSTDIR\console.lua"
Delete "$INSTDIR\dtd_gen.lua"
+Delete "$INSTDIR\smi_modules"
RMDir "$INSTDIR"
SectionEnd