[FIX] win32: also package vs2008 runtime under win32 so that service start correctly

bzr revid: xal@openerp.com-20120426092946-h3lfhojl608xf62z
This commit is contained in:
Xavier ALT 2012-04-26 11:29:46 +02:00
parent bcc52b0629
commit 74a49e9d98
1 changed files with 9 additions and 1 deletions

View File

@ -19,9 +19,16 @@
#
##############################################################################
import os
import glob
from distutils.core import setup
import py2exe
def datas():
r = []
if os.name == 'nt':
r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*')))
return r
setup(service=["OpenERPServerService"],
options={"py2exe":{"excludes":["Tkconstants","Tkinter","tcl",
@ -29,7 +36,8 @@ setup(service=["OpenERPServerService"],
"ImageTk", "PIL.ImageTk",
"FixTk"],
"skip_archive": 1,
"optimize": 2,}}
"optimize": 2,}},
data_files=datas(),
)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: