From e2379c4956099294994e090b9bede94bbbbdcab1 Mon Sep 17 00:00:00 2001 From: auth12 Date: Thu, 16 Jul 2020 13:37:51 +0100 Subject: Added windows support on client. --- client/wolfssl/wolfcrypt/user-crypto/autogen.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/wolfssl/wolfcrypt/user-crypto/autogen.sh (limited to 'client/wolfssl/wolfcrypt/user-crypto/autogen.sh') diff --git a/client/wolfssl/wolfcrypt/user-crypto/autogen.sh b/client/wolfssl/wolfcrypt/user-crypto/autogen.sh new file mode 100644 index 0000000..89e475c --- /dev/null +++ b/client/wolfssl/wolfcrypt/user-crypto/autogen.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# +# Create configure and makefile stuff... +# + +# Git hooks should come before autoreconf. +if test -d .git; then + if ! test -d .git/hooks; then + mkdir .git/hooks + fi + ln -s -f ../../pre-commit.sh .git/hooks/pre-commit + ln -s -f ../../pre-push.sh .git/hooks/pre-push +fi + +# If this is a source checkout then call autoreconf with error as well +if test -d .git; then + WARNINGS="all,error" +else + WARNINGS="all" +fi + +autoreconf --install --force --verbose + -- cgit v1.2.3