aboutsummaryrefslogtreecommitdiffstats
path: root/image
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-12 19:59:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-12 19:59:41 +0000
commitc807ef40d1c8ccdeb3b0668a6b8e3143feda8a59 (patch)
treea9c35951bce334dbad1c8c393d6cd7cd87641971 /image
parent8b6a2060ec1e4047fe71d1e9053cf62d8c04f15c (diff)
Mergecap utility for merging capture files, from Scott Renfro.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3701 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'image')
-rw-r--r--image/Makefile.nmake7
-rw-r--r--image/mergecap.rc.in36
2 files changed, 42 insertions, 1 deletions
diff --git a/image/Makefile.nmake b/image/Makefile.nmake
index 62de6a25d4..cbce6b46e3 100644
--- a/image/Makefile.nmake
+++ b/image/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.2 2001/05/21 05:04:49 guy Exp $
+# $Id: Makefile.nmake,v 1.3 2001/07/12 19:59:41 guy Exp $
#
include ..\config.nmake
@@ -22,6 +22,11 @@ editcap.rc : editcap.rc.in
-e s/@RC_VERSION@/$(RC_VERSION)/ \
< editcap.rc.in > $@
+mergecap.rc : mergecap.rc.in
+ sed -e s/@VERSION@/$(VERSION)/ \
+ -e s/@RC_VERSION@/$(RC_VERSION)/ \
+ < mergecap.rc.in > $@
+
text2pcap.rc : text2pcap.rc.in
sed -e s/@VERSION@/$(VERSION)/ \
-e s/@RC_VERSION@/$(RC_VERSION)/ \
diff --git a/image/mergecap.rc.in b/image/mergecap.rc.in
new file mode 100644
index 0000000000..212d89c956
--- /dev/null
+++ b/image/mergecap.rc.in
@@ -0,0 +1,36 @@
+#include "winver.h"
+
+ETHEREAL_ICON ICON "ethereal.ico"
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION @RC_VERSION@,0
+ PRODUCTVERSION @RC_VERSION@,0
+ FILEFLAGSMASK 0x0L
+#ifdef _DEBUG
+ FILEFLAGS 0x3L
+#else
+ FILEFLAGS 0x2L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "The Ethereal developer community\0"
+ VALUE "FileDescription", "Mergecap\0"
+ VALUE "FileVersion", "@VERSION@\0"
+ VALUE "InternalName", "Mergecap @VERSION@\0"
+ VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@ethereal.com>, Gilbert Ramirez <gram@xiexie.org> and others\0"
+ VALUE "OriginalFilename", "Mergecap.exe\0"
+ VALUE "ProductName", "Mergecap\0"
+ VALUE "ProductVersion", "@VERSION@\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END