diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2023-01-09 22:02:44 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2023-01-10 12:21:05 +0200 |
commit | 508c4548dc7c73d6e824bd5a9b1dcb8fb7132ab3 (patch) | |
tree | 1d85251a17e0d0d1285cf22a88c6f8f3c53af7d2 /net/ocserv/Makefile | |
parent | ce46bf8a4307ae2e0ec6d3f517cad05666eb7a22 (diff) |
ocserv: disable libmaxminddb detection
Disable libmaxminddb detection to fix a build error
due to missing dependency.
(the libmaxminddb library is now detected, but is unncessary.)
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'net/ocserv/Makefile')
-rw-r--r-- | net/ocserv/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ocserv/Makefile b/net/ocserv/Makefile index f8ba40d51..b969a8e43 100644 --- a/net/ocserv/Makefile +++ b/net/ocserv/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ocserv PKG_VERSION:=1.1.6 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_USE_MIPS16:=0 PKG_BUILD_DIR :=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) @@ -63,6 +63,7 @@ CONFIGURE_ARGS+= \ --with-libreadline-prefix="$(STAGING_DIR)/" \ --without-libnl \ --without-gssapi \ + --without-maxmind \ --with-libcrypt-prefix="$(STAGING_DIR)/" \ --with-libev-prefix="$(STAGING_DIR)/" \ --without-lz4 \ |