mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
b0b8d96d93
This change fixes compilation on NetBSD with GCC 14.
28 lines
747 B
Makefile
28 lines
747 B
Makefile
package=native_capnp
|
|
$(package)_version=1.1.0
|
|
$(package)_download_path=https://capnproto.org/
|
|
$(package)_download_file=capnproto-c++-$($(package)_version).tar.gz
|
|
$(package)_file_name=capnproto-cxx-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=07167580e563f5e821e3b2af1c238c16ec7181612650c5901330fa9a0da50939
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts := -DBUILD_TESTING=OFF
|
|
$(package)_config_opts += -DWITH_OPENSSL=OFF
|
|
$(package)_config_opts += -DWITH_ZLIB=OFF
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_cmake) .
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf lib/pkgconfig
|
|
endef
|