Browse Source

ocserv: don't build with libseccomp on ARC

libseccomp can't be built on ARC, so we must disable the option here as
well.  A different fix was first proposed by @zxlhhyccc in #15377.

Fixes: #15313

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
lilik-openwrt-22.03
Eneas U de Queiroz 3 years ago
parent
commit
ee1a3654dc
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      net/ocserv/Config.in
  2. +1
    -1
      net/ocserv/Makefile

+ 1
- 0
net/ocserv/Config.in View File

@ -9,6 +9,7 @@ config OCSERV_PAM
config OCSERV_SECCOMP
bool "enable seccomp"
depends on !arc
default n
config OCSERV_RADIUS


+ 1
- 1
net/ocserv/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=ocserv
PKG_VERSION:=1.1.2
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_USE_MIPS16:=0
PKG_BUILD_DIR :=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)


Loading…
Cancel
Save