summaryrefslogtreecommitdiff
path: root/plugins/mate/moduleinfo.nmake
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-12-18 16:23:46 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-12-18 16:23:46 +0000
commita11382570671e61324e58c3679db258c9674dec2 (patch)
tree215dd7b025afdbe77701b1aba8932b77dbc8514d /plugins/mate/moduleinfo.nmake
parent4d19717eddd6f815a099a97b81e6963c892113cc (diff)
downloadwireshark-a11382570671e61324e58c3679db258c9674dec2.tar.gz
Update plugin to the current plugin design.
Add Windows version info resource. svn path=/trunk/; revision=20144
Diffstat (limited to 'plugins/mate/moduleinfo.nmake')
-rw-r--r--plugins/mate/moduleinfo.nmake28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/mate/moduleinfo.nmake b/plugins/mate/moduleinfo.nmake
new file mode 100644
index 0000000000..ece713672e
--- /dev/null
+++ b/plugins/mate/moduleinfo.nmake
@@ -0,0 +1,28 @@
+#
+# $Id: moduleinfo.nmake 20036 2006-12-04 23:12:04Z jake $
+#
+
+# The name
+PACKAGE=mate
+
+# The version
+MODULE_VERSION_MAJOR=1
+MODULE_VERSION_MINOR=0
+MODULE_VERSION_MICRO=0
+MODULE_VERSION_EXTRA=1
+
+#
+# The RC_VERSION should be comma-separated, not dot-separated,
+# as per Graham Bloice's message in
+#
+# http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
+#
+# "The RC_VERSION variable in config.nmake should be comma separated.
+# This allows the resources to be built correctly and the version
+# number to be correctly displayed in the explorer properties dialog
+# for the executables, and XP's tooltip, rather than 0.0.0.0."
+#
+
+MODULE_VERSION=$(MODULE_VERSION_MAJOR).$(MODULE_VERSION_MINOR).$(MODULE_VERSION_MICRO).$(MODULE_VERSION_EXTRA)
+RC_MODULE_VERSION=$(MODULE_VERSION_MAJOR),$(MODULE_VERSION_MINOR),$(MODULE_VERSION_MICRO),$(MODULE_VERSION_EXTRA)
+