Hello,
I updated from 1.1.1d to the latest version 1.1.1g and had a build error on
macOS 10.8 for the 64-bit crypto library. I rolled back to 1.1.1e and
reproduced the build error.
32-bit is building fine, only 64-bit has the issue. I looked at the commits
for 1.1.1e and nothing jumped out at me.
The config parameters are the same between the 64-bit and 32-bit builds other
than specific parameters needed to specify the 64-bit build.
./Configure --config=../Patches/openssl/custom_config.conf $os_compiler
--prefix=$install_path/openssl_64 -DPURIFY -DOPENSSL_NO_COMP no-shared no-dso
no-sse2 no-idea no-mdc2 no-rc5 no-ssl3 no-zlib no-comp no-afalgeng no-pinshared
no-threads
Here is the bottom of the output from the build where the error occurs. It
seems like cryptlib.h is not being included for some reason?
cc -I. -Iinclude -fPIC -arch x86_64 -O3 -Wall -mmacosx-version-min=10.8
-DL_ENDIAN -DOPENSSL_PIC -DOPENSSLDIR="\"/Users/csipriuser/Development/
build/third-party/lib/openssl_64/ssl\""
-DENGINESDIR="\"/Users/csipriuser/Development/build/third-party/lib/openssl_64/lib/engines-1.1\""
-DNDEBUG -DPURIFY -DOPENSSL_NO_COMP -MMD -MF
crypto/async/arch/async_posix.d.tmp -MT crypto/async/arch/async_posix.o -c -o
crypto/async/arch/async_posix.o crypto/async/arch/async_posix.c
cc -I. -Iinclude -fPIC -arch x86_64 -O3 -Wall -mmacosx-version-min=10.8
-DL_ENDIAN -DOPENSSL_PIC
-DOPENSSLDIR="\"/Users/csipriuser/Development//build/third-party/lib/openssl_64/ssl\""
-DENGINESDIR="\"/Users/csipriuser/Development/build/third-party/lib/openssl_64/lib/engines-1.1\""
-DNDEBUG -DPURIFY -DOPENSSL_NO_COMP -MMD -MF crypto/async/arch/async_win.d.tmp
-MT crypto/async/arch/async_win.o -c -o crypto/async/arch/async_win.o
crypto/async/arch/async_win.c
cc -I. -Iinclude -fPIC -arch x86_64 -O3 -Wall -mmacosx-version-min=10.8
-DL_ENDIAN -DOPENSSL_PIC
-DOPENSSLDIR="\"/Users/csipriuser/Development//build/third-party/lib/openssl_64/ssl\""
-DENGINESDIR="\"/Users/csipriuser/Development
/build/third-party/lib/openssl_64/lib/engines-1.1\"" -DNDEBUG -DPURIFY
-DOPENSSL_NO_COMP -MMD -MF crypto/async/async.d.tmp -MT crypto/async/async.o -c
-o crypto/async/async.o crypto/async/async.c
crypto/async/async.c:37:10: warning: implicit declaration of function
'ossl_init_thread_start' is invalid in C99 [-Wimplicit-function-declaration]
if (!ossl_init_thread_start(OPENSSL_INIT_THREAD_ASYNC))
^
crypto/async/async.c:37:33: error: use of undeclared identifier
'OPENSSL_INIT_THREAD_ASYNC'
if (!ossl_init_thread_start(OPENSSL_INIT_THREAD_ASYNC))
^
crypto/async/async.c:329:33: error: use of undeclared identifier
'OPENSSL_INIT_THREAD_ASYNC'
if (!ossl_init_thread_start(OPENSSL_INIT_THREAD_ASYNC))
^
1 warning and 2 errors generated.
make[1]: *** [crypto/async/async.o] Error 1
make: *** [all] Error 2