diff options
author | nikita <nikita@n0.is> | 2020-05-01 10:55:51 +0200 |
---|---|---|
committer | nikita <nikita@n0.is> | 2020-05-01 10:55:51 +0200 |
commit | 91e407579c48f62df4c75c49f63937009f563099 (patch) | |
tree | 692d17da41a0c0a119ac96afd6abec958db1b598 /src/vpn/gnunet-helper-vpn.c | |
parent | d3ec11c5a2dc7521efbd308e273dccc26c0e4bb4 (diff) |
vpn, exit: Add patch from termux for Android in a slightly different way.
Arguable 1st one could just be || and second one be kept as-is.
https://github.com/termux/termux-packages/blob/master/packages/gnunet/no-in6_ifreq-redef.patch
Diffstat (limited to 'src/vpn/gnunet-helper-vpn.c')
-rw-r--r-- | src/vpn/gnunet-helper-vpn.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vpn/gnunet-helper-vpn.c b/src/vpn/gnunet-helper-vpn.c index 4e35fa2c3..c693d24ea 100644 --- a/src/vpn/gnunet-helper-vpn.c +++ b/src/vpn/gnunet-helper-vpn.c @@ -59,6 +59,7 @@ */ #define MAX_SIZE 65536 +#if ! defined(__ANDROID__) #ifndef _LINUX_IN6_H /** * This is in linux/include/net/ipv6.h, but not always exported... @@ -70,6 +71,7 @@ struct in6_ifreq unsigned int ifr6_ifindex; }; #endif +#endif /** |