Commit 01e07a8d by Victor M. Alvarez

Enable remote desktop in Appveyor.

parent 715f0469
...@@ -163,3 +163,6 @@ artifacts: ...@@ -163,3 +163,6 @@ artifacts:
#on_success: #on_success:
# - TODO: upload the content of dist/*.whl to a public wheelhouse # - TODO: upload the content of dist/*.whl to a public wheelhouse
# #
on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
...@@ -226,13 +226,6 @@ class BuildExtCommand(build_ext): ...@@ -226,13 +226,6 @@ class BuildExtCommand(build_ext):
if self.dynamic_linking: if self.dynamic_linking:
module.libraries.append('yara') module.libraries.append('yara')
else: else:
print self.define
module.define_macros.append(('HASH_MODULE', '1'))
module.define_macros.append(('HAVE_LIBCRYPTO', '1'))
module.libraries.append('crypto')
if not self.define or not ('HASH_MODULE', '1') in self.define: if not self.define or not ('HASH_MODULE', '1') in self.define:
if (has_function('MD5_Init', libraries=['crypto']) and if (has_function('MD5_Init', libraries=['crypto']) and
has_function('SHA256_Init', libraries=['crypto'])): has_function('SHA256_Init', libraries=['crypto'])):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment