diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-19 19:16:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-19 19:16:12 +0000 |
commit | 1e8ca8af4d4034807bb749090f669cd636b7d440 (patch) | |
tree | a25e961af152ea525eac6dabcd04db8b6de7f05d /packaging | |
parent | 887799e01a4a87fee62ef25fd548ba9050cac902 (diff) | |
download | wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.tar.gz wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.tar.bz2 wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.zip |
From Motonori Shindo: don't put the PDB files into the release, as
they're not built and the executables already contain debugging
information, and update the README.win32 file appropriately and add
Text2Pcap and Mergecap to it.
svn path=/trunk/; revision=4425
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/nsis/Makefile.nmake | 6 | ||||
-rw-r--r-- | packaging/nsis/ethereal.nsi.in | 13 |
2 files changed, 3 insertions, 16 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake index 1dcfc50528..01d61838b0 100644 --- a/packaging/nsis/Makefile.nmake +++ b/packaging/nsis/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.8 2001/12/12 01:29:07 guy Exp $ +# $Id: Makefile.nmake,v 1.9 2001/12/19 19:16:12 guy Exp $ # # # NSIS is a free packager/installer/uninstaller program for Win32. @@ -12,8 +12,6 @@ include ../../config.nmake EXE=../../ethereal.exe ../../tethereal.exe ../../editcap.exe \ ../../text2pcap.exe ../../mergecap.exe -PDB=../../ethereal.pdb ../../tethereal.pdb ../../editcap.pdb \ - ../../text2pcap.pdb ../../mergecap.pdb DLL=../../wiretap/wiretap-$(WTAP_VERSION).dll DOC=../../doc/ethereal.html \ ../../doc/tethereal.html \ @@ -27,7 +25,7 @@ GPL=GPL.txt PLUGINS=../../plugins/mgcp/mgcp.dll \ ../../plugins/gryphon/gryphon.dll -DELIVERABLES=$(EXE) $(DLL) $(DOC) $(GPL) $(PLUGINS) $(PDB) +DELIVERABLES=$(EXE) $(DLL) $(DOC) $(GPL) $(PLUGINS) ethereal-setup.exe : ethereal.nsi $(DELIVERABLES) diff --git a/packaging/nsis/ethereal.nsi.in b/packaging/nsis/ethereal.nsi.in index 491ab1c13c..8f8a28fb41 100644 --- a/packaging/nsis/ethereal.nsi.in +++ b/packaging/nsis/ethereal.nsi.in @@ -1,7 +1,7 @@ ; ; ethereal.nsi ; -; $Id: ethereal.nsi.in,v 1.10 2001/12/12 07:52:23 guy Exp $ +; $Id: ethereal.nsi.in,v 1.11 2001/12/19 19:16:12 guy Exp $ ; ============================================================================ ; Header configuration @@ -122,16 +122,6 @@ File "..\..\plugins\giop\cosnaming.dll" File "..\..\plugins\giop\coseventcomm.dll" SectionEnd -Section "Debug PDB Files" -;------------------------------------------- -SetOutPath $INSTDIR -File "..\..\ethereal.pdb" -File "..\..\tethereal.pdb" -File "..\..\editcap.pdb" -File "..\..\mergecap.pdb" -File "..\..\text2pcap.pdb" -SectionEnd - SectionDivider ;------------------------------------------- @@ -162,7 +152,6 @@ Delete "$INSTDIR\mobileipv4.xml" Delete "$INSTDIR\nasreq.xml" Delete "$INSTDIR\sunping.xml" Delete "$INSTDIR\*.exe" -Delete "$INSTDIR\*.pdb" Delete "$INSTDIR\*.html" Delete "$INSTDIR\*.dll" Delete "$INSTDIR\plugins\@VERSION@\coseventcomm.dll" |