* cleanup patches
* fix polyseed patch
* Fix iOS builds
* fix polyseed dependencies
* fix polyseed patch for macOS
* update ledger patch
* update wownero patches and version
* update checksums
* wip"
* update gitmodules
* update boost build script
* update build_single.sh
* vix verbosey_copy
* fix __clear_cache bug on wownero
* update randomwow
* migrate build system
* fix cross compilation issues
* some more build issue
* update polyseed
* cleanup cmakelists
* fix toolchain.cmake.in
* add ssp
* another attempt at building windows on CI
* fix package name
* migrate mirror to my own hosting
* change download mirror priority (fallback first)
* link ssp in monero module as well by using CMAKE_{C,CXX}_FLAGS
* fix android builds
* update polyseed source
* 13 -> trixie
* fix package name conflicts, update runner to sid
* update boost to 1_84_0, disable patch that's no longer needed
* switch to ubuntu:24.04
* add POLYSEED_STATIC to toolchain.cmake.in in order to properly link
* drop patches
* fixes to darwin
* link missing wowner-seed library
* a litte bit more of experiments
* build locale only on windows
* update iconv
* update definitions
* update ci builds
* update my progress
* ios fix, update depends, ci
* multithread build system
* fix android, mingw and linux build issues
* remove dependency check
* update Dockerfile to include pigz
* show a message when pigz is missing
* fix devcontainer mingw setup (missing ENV)
* update android build runner
* sailfishos dropped (you better go behave yourself and run actual linux programs)
* fiz pigz issues
* install llvm-ranlib for android
* fix iOS build issues
* fix dummy ledger patch
* fix macos and darwin
* fix macos ci
* fix macos build command
* install autoconf
* add automake
* add libtool
* macos fixes, wownero fixes, idk what else, please help me
* fix wownero iOS build
* Cleanup patches
* add try-catch into monero code
* fix error handling
* update checksums
69 lines
2.7 KiB
Makefile
69 lines
2.7 KiB
Makefile
package=openssl
|
|
$(package)_version=3.0.13
|
|
$(package)_download_path=https://www.openssl.org/source
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=88525753f79d3bec27d2fa7c66aa0b92b3aa9498dafd93d7cfa4b3780cdae313
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_env=AR="$($(package)_ar)" ARFLAGS=$($(package)_arflags) RANLIB="$($(package)_ranlib)" CC="$($(package)_cc)"
|
|
$(package)_config_env_android=ANDROID_NDK_ROOT="$(host_prefix)/native" PATH="$(host_prefix)/native/bin" CC=clang AR=ar RANLIB=ranlib
|
|
$(package)_build_env_android=ANDROID_NDK_ROOT="$(host_prefix)/native"
|
|
$(package)_config_opts=--prefix=$(host_prefix) --openssldir=$(host_prefix)/etc/openssl --libdir=$(host_prefix)/lib
|
|
$(package)_config_opts+=no-capieng
|
|
$(package)_config_opts+=no-dso
|
|
$(package)_config_opts+=no-dtls1
|
|
$(package)_config_opts+=no-ec_nistp_64_gcc_128
|
|
$(package)_config_opts+=no-gost
|
|
$(package)_config_opts+=no-md2
|
|
$(package)_config_opts+=no-rc5
|
|
$(package)_config_opts+=no-rdrand
|
|
$(package)_config_opts+=no-rfc3779
|
|
$(package)_config_opts+=no-sctp
|
|
$(package)_config_opts+=no-shared
|
|
$(package)_config_opts+=no-ssl-trace
|
|
$(package)_config_opts+=no-ssl3
|
|
$(package)_config_opts+=no-tests
|
|
$(package)_config_opts+=no-unit-test
|
|
$(package)_config_opts+=no-weak-ssl-ciphers
|
|
$(package)_config_opts+=no-zlib
|
|
$(package)_config_opts+=no-zlib-dynamic
|
|
$(package)_config_opts+=$($(package)_cflags) $($(package)_cppflags)
|
|
$(package)_config_opts_linux=-fPIC -Wa,--noexecstack
|
|
$(package)_config_opts_freebsd=-fPIC -Wa,--noexecstack
|
|
$(package)_config_opts_x86_64_linux=linux-x86_64
|
|
$(package)_config_opts_i686_linux=linux-generic32
|
|
$(package)_config_opts_arm_linux=linux-generic32
|
|
$(package)_config_opts_aarch64_linux=linux-generic64
|
|
$(package)_config_opts_armv7a_android=--static android-arm
|
|
$(package)_config_opts_aarch64_android=--static android-arm64
|
|
$(package)_config_opts_aarch64_darwin=darwin64-arm64-cc
|
|
$(package)_config_opts_riscv64_linux=linux-generic64
|
|
$(package)_config_opts_mipsel_linux=linux-generic32
|
|
$(package)_config_opts_mips_linux=linux-generic32
|
|
$(package)_config_opts_powerpc_linux=linux-generic32
|
|
$(package)_config_opts_x86_64_darwin=darwin64-x86_64-cc
|
|
$(package)_config_opts_x86_64_mingw32=mingw64
|
|
$(package)_config_opts_i686_mingw32=mingw
|
|
$(package)_config_opts_x86_64_freebsd=BSD-x86_64
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
sed -i.old 's|crypto ssl apps util tools fuzz providers doc|crypto ssl util tools providers|' build.info
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
./Configure $($(package)_config_opts)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) -j$(NUM_CORES) build_libs
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) -j$(NUM_CORES) DESTDIR=$($(package)_staging_dir) install_sw
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf share bin etc
|
|
endef
|