I'm looking to create the package configuration for Suricata 6.
In my Config.in
config SURICATA_ENABLE_LUA
depends on PACKAGE_suricata6
depends on !SURICATA_ENABLE_LUAJIT
bool "Enable LUA Support"
default n
config SURICATA_ENABLE_LUAJIT
depends on PACKAGE_suricata6
depends on !SURICATA_ENABLE_LUA
bool "Enable LuaJIT Support"
default n
The goal is to ensure that both LUA and LUAJIT aren't enabled at the same time - one or the other or neither, but not both.
How can I do this?