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>
27 lines
424 B
Text
27 lines
424 B
Text
# ocserv avanced configuration
|
|
|
|
menu "Configuration"
|
|
depends on PACKAGE_ocserv
|
|
|
|
config OCSERV_PAM
|
|
bool "enable PAM"
|
|
default n
|
|
|
|
config OCSERV_SECCOMP
|
|
bool "enable seccomp"
|
|
depends on !arc
|
|
default n
|
|
|
|
config OCSERV_RADIUS
|
|
bool "enable radius authentication"
|
|
default n
|
|
|
|
config OCSERV_PROTOBUF
|
|
bool "use external libprotobuf"
|
|
default y
|
|
|
|
config OCSERV_HTTP_PARSER
|
|
bool "use external libhttp-parser"
|
|
default y
|
|
|
|
endmenu
|