mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
b928ae1ba8
Some crypto libraries (like CyaSSL, MatrixSSL and CommonCrypto) either don't have or expose this functionality at all, expose only part of it, or (like OpenSSL) have heavyweight API for it. Also, for the task as easy as BASE64 encoding and decoding it's much better to use small and simple specialized library.
26 lines
383 B
Makefile
26 lines
383 B
Makefile
if BUILD_DHT
|
|
DHT_DIR = dht
|
|
endif
|
|
if BUILD_B64
|
|
B64_DIR = libb64
|
|
endif
|
|
if BUILD_UTP
|
|
UTP_DIR = libutp
|
|
endif
|
|
if BUILD_MINIUPNP
|
|
MINIUPNP_DIR = miniupnp
|
|
endif
|
|
if BUILD_NATPMP
|
|
NATPMP_DIR = libnatpmp
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(DHT_DIR) \
|
|
$(B64_DIR) \
|
|
$(NATPMP_DIR) \
|
|
$(MINIUPNP_DIR) \
|
|
$(UTP_DIR)
|
|
|
|
EXTRA_DIST = \
|
|
macosx-libevent-config.h \
|
|
macosx-libevent-event-config.h
|