[FIX] xmlrpcs depends on openssl

lp bug: https://launchpad.net/bugs/589739 fixed

bzr revid: jvo@tinyerp.com-20100607063950-i36hh3yiztpu319q
This commit is contained in:
Jay (Open ERP) 2010-06-07 12:09:50 +05:30
parent 41576028d3
commit 68512a9a76
1 changed files with 4 additions and 1 deletions

View File

@ -272,8 +272,11 @@ class configmanager(object):
self.options[arg] = getattr(opt, arg)
keys = ['language', 'translate_out', 'translate_in', 'debug_mode',
'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'xmlrpcs', 'syslog',
'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'syslog',
'list_db', 'server_actions_allow_code']
if self.has_ssl:
keys.append('xmlrpcs')
for arg in keys:
if getattr(opt, arg) is not None: