always embed zlib and openssl for C#

pull/5963/head
Jan Tattermusch 9 years ago
parent bceec94ea4
commit af307d7339
  1. 7
      tools/run_tests/run_tests.py

@ -512,7 +512,7 @@ class CSharpLanguage(object):
def make_targets(self):
# For Windows, this target doesn't really build anything,
# everything is build by buildall script later.
# everything is built by buildall script later.
if self.platform == 'windows':
return []
else:
@ -521,9 +521,10 @@ class CSharpLanguage(object):
def make_options(self):
if self.platform == 'mac':
# On Mac, official distribution of mono is 32bit.
return ['CFLAGS=-arch i386', 'LDFLAGS=-arch i386']
return ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true',
'CFLAGS=-arch i386', 'LDFLAGS=-arch i386']
else:
return []
return ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true']
def build_steps(self):
if self.platform == 'windows':

Loading…
Cancel
Save