2011-11-15 04:03:23 +08:00
|
|
|
import os,re
|
2011-11-12 04:08:24 +08:00
|
|
|
|
|
|
|
node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src',
|
|
|
|
'node_version.h')
|
|
|
|
|
|
|
|
f = open(node_version_h)
|
|
|
|
|
|
|
|
for line in f:
|
2011-09-15 05:51:49 +08:00
|
|
|
if re.match('#define NODE_MAJOR_VERSION', line):
|
|
|
|
major = line.split()[2]
|
|
|
|
if re.match('#define NODE_MINOR_VERSION', line):
|
|
|
|
minor = line.split()[2]
|
|
|
|
if re.match('#define NODE_PATCH_VERSION', line):
|
|
|
|
patch = line.split()[2]
|
2011-11-12 04:08:24 +08:00
|
|
|
|
2011-11-15 04:03:23 +08:00
|
|
|
print '%(major)s.%(minor)s.%(patch)s'% locals()
|