File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1313
1414 - name : Ensure dependencies are installed
1515 run : |
16+ sudo apt-get update
1617 sudo apt-get install -y libssl-dev libpcre2-dev zlib1g-dev lua-luv-dev libluajit-5.1-dev luajit
1718
1819 - name : Configure
9596 - name : Setup QEMU
9697 if : matrix.arch == 'aarch64'
9798 run : |
99+ sudo apt-get update
98100 sudo apt-get install -y qemu-user-static
99101
100102 - name : Build
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ if (MINGW)
1818 add_compile_options (-Wno-error=incompatible-pointer-types)
1919endif ()
2020
21+ if (CMAKE_C_COMPILER_ID MATCHES "Clang|GNU" )
22+ add_compile_options (-Wno-incompatible-pointer-types)
23+ endif ()
24+
2125if (UNIX )
2226 add_compile_options (-Wall)
2327endif ()
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ else (WithSharedOpenSSL)
1313 OUTPUT_STRIP_TRAILING_WHITESPACE
1414 )
1515
16- set (OPENSSL_CONFIG_OPTIONS no -tests no -shared no -pinshared no -makedepend --prefix =${CMAKE_BINARY_DIR} )
16+ set (OPENSSL_CONFIG_OPTIONS no -tests no -module no - shared no -pinshared no -makedepend --prefix =${CMAKE_BINARY_DIR} )
1717 if (OPENSSL_CONFIG_DIR)
1818 message ("Using existing OpenSSL configuration directory: ${OPENSSL_CONFIG_DIR} " )
1919 set (OPENSSL_CONFIG_OPTIONS ${OPENSSL_CONFIG_OPTIONS} --openssldir=${OPENSSL_CONFIG_DIR} )
You can’t perform that action at this time.
0 commit comments