aboutsummaryrefslogtreecommitdiff
path: root/packages/openwrt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'packages/openwrt/Makefile')
-rw-r--r--packages/openwrt/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/openwrt/Makefile b/packages/openwrt/Makefile
index e24b5d5ed..4b9c77963 100644
--- a/packages/openwrt/Makefile
+++ b/packages/openwrt/Makefile
@@ -28,8 +28,8 @@ PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/uclibc++.mk
include $(INCLUDE_DIR)/package.mk
-ifeq ($(CONFIG_LIBNDPI_GCRYPT),)
-CONFIGURE_ARGS += --disable-gcrypt
+ifneq ($(CONFIG_LIBNDPI_GCRYPT),)
+CONFIGURE_ARGS += --with-local-libgcrypt
endif
define Package/libndpi
@@ -47,11 +47,12 @@ endef
define Package/libndpi/config
config LIBNDPI_GCRYPT
- bool "GCrypt support"
+ bool "Use external libgcrypt"
depends on PACKAGE_libndpi
default n
help
- This option enables QUIC client hello decryption.
+ This option enables QUIC client hello decryption through
+ an external libgcrypt instead of a lightweight builtin version.
Disabled by default.
endef