Конфигурация смолы не может найти допустимый OpenSSL include - PullRequest
0 голосов
/ 02 августа 2020

Я пытаюсь настроить Resin-4.0.42 на MacOS Catalina-10.15.5. Я установил openssl и могу проверить наличие каталога /usr/local/opt/openssl/include/openssl

Для настройки Resin я использую следующую команду:

./configure --with-openssl=/usr/local/opt/openssl/include/openssl

Однако я продолжаю получать ту же ошибку конфигурации, что и действительный OpenSSL не может быть найден, пробовали почти все решения stackoverflow по этому поводу. Вот журнал:

checking how to convert x86_64-apple-darwin19.5.0 file names to toolchain format... func_convert_file_noop
checking for /Library/Developer/CommandLineTools/usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin19.5.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking if /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/bin/java is Java 1.6... 
yes
checking if /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/bin/java is 64-bit... 
yes
checking if /bin/cp accepts -u... 
no
checking for JNI in /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/include/darwin ... found
Using JVMTI for class reloading
configure: error: Can't find valid OpenSSL include in /usr/local/opt/openssl/include

Любая помощь будет очень признательна.

...