summaryrefslogtreecommitdiff
path: root/TestScripts/configure.sh
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-08-07 19:11:47 -0400
committerJeffrey Walton <noloader@gmail.com>2020-08-07 19:11:47 -0400
commit2c6e4b17d7a75a9cc9fe9ffd353981591de2be54 (patch)
tree5e7b46fd94bea76704951f150664c5dd1c730d28 /TestScripts/configure.sh
parent7d0859d9dbfb394e4314e538567516e011db60cc (diff)
downloadcryptopp-git-2c6e4b17d7a75a9cc9fe9ffd353981591de2be54.tar.gz
Use define CRYPTOPP_CXX11_STATIC_INIT name
Diffstat (limited to 'TestScripts/configure.sh')
-rwxr-xr-xTestScripts/configure.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/TestScripts/configure.sh b/TestScripts/configure.sh
index 7abe553b..c977ccea 100755
--- a/TestScripts/configure.sh
+++ b/TestScripts/configure.sh
@@ -722,9 +722,9 @@ rm -f config_cxx.h.new
CXX_RESULT=$(${CXX} ${CXXFLAGS} TestPrograms/test_cxx11_staticinit.cxx -o ${TOUT} 2>&1 | wc -w)
if [[ "${CXX_RESULT}" -eq 0 ]]; then
- echo '#define CRYPTOPP_CXX11_DYNAMIC_INIT 1'
+ echo '#define CRYPTOPP_CXX11_STATIC_INIT 1'
else
- echo '// #define CRYPTOPP_CXX11_DYNAMIC_INIT 1'
+ echo '// #define CRYPTOPP_CXX11_STATIC_INIT 1'
fi
CXX_RESULT=$(${CXX} ${CXXFLAGS} TestPrograms/test_cxx11_deletefn.cxx -o ${TOUT} 2>&1 | wc -w)