Unverified Commit 7f46bfac by Yuang Li Committed by GitHub

unset GIT_RAND_GETENTROPY to avoid linux GLIBC issues (#3)

parent 22f38253
......@@ -70,7 +70,11 @@ check_function_exists(qsort_s GIT_QSORT_S)
# random / entropy data
check_function_exists(getentropy GIT_RAND_GETENTROPY)
# The flag has been unset to prevent issues
# related to Linux GLIBC version dependency
# check_function_exists(getentropy GIT_RAND_GETENTROPY)
unset(GIT_RAND_GETENTROPY)
check_function_exists(getloadavg GIT_RAND_GETLOADAVG)
# determine architecture of the machine
......
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