ee5a11b8d9
add user-crypto makefile update README for IPP crypto place user crypto in wolfcrypt and use autotools adjust distributed files move openssl compatibility consumption auto use IPP RSA -- IPP directory containing shared libraries local return value of wolfSSL_BN and formating of debug openssh testing make sure IPP not built when fips is ipp init to select correct optimizations -- static libraries on linux -- fast-rsa disabled by default try to only set library once only use static IPP if fast rsa is enabled make print out for user crypto more pretty
24 lines
467 B
Bash
Executable File
24 lines
467 B
Bash
Executable File
#!/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
|
|
|