aboutsummaryrefslogtreecommitdiffstats
path: root/image/editcap.rc.in
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-04-05 04:39:29 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-04-05 04:39:29 +0000
commita8d864bca78bfaeb4a27649c16408064ed7f1068 (patch)
tree17afe72068b50bb87e11e03c3a1e8bd543db4630 /image/editcap.rc.in
parentc4979d817a4e6960a6a137857b467a10622d9fe0 (diff)
Use sed in the Win32 build to place the version in various files.
We us $(VERSION), defined in the top-level config.nmake, to replace @VERSION@ in various files. $(RC_VERSION) and $(WTAP_VERSION) are similarly used. svn path=/trunk/; revision=3258
Diffstat (limited to 'image/editcap.rc.in')
-rw-r--r--image/editcap.rc.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/image/editcap.rc.in b/image/editcap.rc.in
new file mode 100644
index 0000000000..3a28f9c7b0
--- /dev/null
+++ b/image/editcap.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", "Editcap\0"
+ VALUE "FileVersion", "@VERSION@\0"
+ VALUE "InternalName", "Editcap @VERSION@\0"
+ VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@ethereal.com>, Gilbert Ramirez <gram@xiexie.org> and others\0"
+ VALUE "OriginalFilename", "Editcap.exe\0"
+ VALUE "ProductName", "Editcap\0"
+ VALUE "ProductVersion", "@VERSION@\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END