Clean up leak-detective whitelist for newer Botan versions but add `botan_private_key_load` as `botan_privkey_load*` won't show up anymore without bfd-backtraces due to inlining if we don't call it directly. Ref: https://github.com/randombit/botan/discussions/4868
34 lines
919 B
Makefile
34 lines
919 B
Makefile
#!/usr/bin/make
|
|
|
|
PKG = botan
|
|
SRC = https://github.com/randombit/$(PKG).git
|
|
REV = 3.10.0
|
|
|
|
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
|
|
|
|
# the first two are necessary due to LD, the others to reduce the build time
|
|
# the last one enables MD5, which we need for TLS 1.0/1.1 (and possibly EAP-MD5)
|
|
CONFIG_OPTS = \
|
|
--without-os-features=threads \
|
|
--disable-modules=locking_allocator \
|
|
--disable-modules=pkcs11,tls,x509,xmss \
|
|
--disable-deprecated-features \
|
|
--enable-modules=md5
|
|
|
|
all: install
|
|
|
|
.$(PKG)-cloned:
|
|
[ -d $(PKG) ] || git clone $(SRC) $(PKG)
|
|
@touch $@
|
|
|
|
.$(PKG)-checkout-$(REV): .$(PKG)-cloned
|
|
cd $(PKG) && git fetch && git checkout $(REV)
|
|
@rm -f .$(PKG)-checkout-* && touch $@
|
|
|
|
.$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)
|
|
cd $(PKG) && python3 ./configure.py $(CONFIG_OPTS) && make -j $(NUM_CPUS)
|
|
@rm -f .$(PKG)-built-* && touch $@
|
|
|
|
install: .$(PKG)-built-$(REV)
|
|
cd $(PKG) && make install && ldconfig
|