~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to plugins/mgcp/moduleinfo.nmake

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# $Id: moduleinfo.nmake 20165 2006-12-19 22:26:27Z jake $
 
3
#
 
4
 
 
5
# The name
 
6
PACKAGE=mgcp
 
7
 
 
8
# The version
 
9
MODULE_VERSION_MAJOR=0
 
10
MODULE_VERSION_MINOR=0
 
11
MODULE_VERSION_MICRO=10
 
12
MODULE_VERSION_EXTRA=0
 
13
 
 
14
#
 
15
# The RC_VERSION should be comma-separated, not dot-separated, 
 
16
# as per Graham Bloice's message in
 
17
#
 
18
#       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
 
19
#
 
20
# "The RC_VERSION variable in config.nmake should be comma separated. 
 
21
# This allows the resources to be built correctly and the version
 
22
# number to be correctly displayed in the explorer properties dialog
 
23
# for the executables, and XP's tooltip, rather than 0.0.0.0."
 
24
#
 
25
 
 
26
MODULE_VERSION=$(MODULE_VERSION_MAJOR).$(MODULE_VERSION_MINOR).$(MODULE_VERSION_MICRO).$(MODULE_VERSION_EXTRA)
 
27
RC_MODULE_VERSION=$(MODULE_VERSION_MAJOR),$(MODULE_VERSION_MINOR),$(MODULE_VERSION_MICRO),$(MODULE_VERSION_EXTRA)
 
28