mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge branch 'bug17347'
This commit is contained in:
commit
fa4a81518a
4
changes/bug17347
Normal file
4
changes/bug17347
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (compilation):
|
||||
- Fix compilation of sandbox.c with musl-libc.
|
||||
Fixes bug 17347; bugfix on 0.2.5.1-alpha.
|
||||
Patch from 'jamestk'.
|
@ -48,7 +48,7 @@
|
||||
#include <sys/epoll.h>
|
||||
#include <sys/prctl.h>
|
||||
#include <linux/futex.h>
|
||||
#include <bits/signum.h>
|
||||
#include <sys/file.h>
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <seccomp.h>
|
||||
|
@ -42,6 +42,9 @@ typedef struct sandbox_cfg_elem sandbox_cfg_t;
|
||||
#ifndef __USE_GNU
|
||||
#define __USE_GNU
|
||||
#endif
|
||||
#ifndef _GNU_SOURCE
|
||||
#define _GNU_SOURCE
|
||||
#endif
|
||||
#include <sys/ucontext.h>
|
||||
#include <seccomp.h>
|
||||
#include <netdb.h>
|
||||
|
Loading…
Reference in New Issue
Block a user