diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-04-29 23:12:49 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2015-04-29 23:16:09 +0200 |
commit | 95aef0298be6de35f827ca42c110a51abc4965bc (patch) | |
tree | cae2580dc569e64499e522213344d49f910f0d4a /net/tor | |
parent | 39a4601aac5f59a4df9b26ed4d93090cbe3a0648 (diff) |
tor: disable seccomp support
seccomp is only supported on x86, amd64 and arm in tor.
This deactivated it currently completely which should close #935,
#1097, #1147 and #1161.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'net/tor')
-rw-r--r-- | net/tor/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tor/Makefile b/net/tor/Makefile index 990642a88..d042ffbcc 100644 --- a/net/tor/Makefile +++ b/net/tor/Makefile @@ -82,7 +82,8 @@ CONFIGURE_ARGS += \ --with-libminiupnpc-dir="$(STAGING_DIR)/usr" \ --enable-nat-pmp \ --with-libnatpmp-dir="$(STAGING_DIR)/usr" \ - --disable-asciidoc + --disable-asciidoc \ + --disable-seccomp ifneq ($(CONFIG_SSP_SUPPORT),y) CONFIGURE_ARGS += \ |