Skip to content
Snippets Groups Projects
Unverified Commit 584df87b authored by Jannis Konrad's avatar Jannis Konrad Committed by GitHub
Browse files

Merge pull request #6 from Thus0/Thus0-patch-compile-on-windows-msys2

patch to compile tinydtls on Windows (MSYS2) : autoconf is found during compilation 
parents ba6ab0f6 49c387b6
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,9 @@ class prepare_tinydtls(build_ext):
sys.exit(1)
commands = [
["autoconf"],
["autoheader"],
["./configure", "--without-ecc"],
["sh", "-c", "autoconf"],
["sh", "-c", "autoheader"],
["sh", "-c", "./configure", "--without-ecc"],
]
if not os.path.exists(os.path.join(os.path.dirname(__file__), 'DTLSSocket','tinydtls','dtls.c')):
run_command(["git", "submodule", "update", "--init"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment