libs/libsodium: add LIBSODIUM_MINIMAL

This commit is contained in:
Moritz Warning 2014-09-13 23:22:48 +02:00
parent 090d73e56c
commit 5948b0a632

View file

@ -43,7 +43,17 @@ define Package/libsodium/description
And despite the emphasis on higher security, primitives are faster across-the-board than most implementations of the NIST standards. And despite the emphasis on higher security, primitives are faster across-the-board than most implementations of the NIST standards.
endef endef
CONFIGURE_ARGS += --disable-ssp define Package/libsodium/config
menu "Configuration"
config LIBSODIUM_MINIMAL
bool "Create a smaller library"
default n
endmenu
endef
CONFIGURE_ARGS+= \
--disable-ssp \
$(if $(CONFIG_LIBSODIUM_MINIMAL),--enable-minimal=yes,--enable-minimal=no)
define Build/InstallDev define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/sodium $(INSTALL_DIR) $(1)/usr/include/sodium