From 0efafd5a5666b0144cf3b000990f58e7b18ce3fb Mon Sep 17 00:00:00 2001 From: iphydf Date: Tue, 23 Jan 2024 19:42:02 +0000 Subject: [PATCH] cleanup: Remove plan9 support. We really don't support it. I tried for half an hour to get some kind of plan9 cross compilation to work, but it's not working. If anyone wants to bring it back, they are welcome to send a PR including a CI check for it. Until then, these 5 lines of unused code are gone. --- other/bootstrap_daemon/docker/tox-bootstrapd.sha256 | 2 +- toxcore/network.c | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 b/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 index a316ea133ea..53d16f19854 100644 --- a/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 +++ b/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 @@ -1 +1 @@ -3acc3a1f08e67dac66d91657a36d98be397fa3f14bc4798d3349605e37a90fc3 /usr/local/bin/tox-bootstrapd +ac6168ddc09b6394293e6196ade0d71471204d2ba42de276752229bc6bd17dc2 /usr/local/bin/tox-bootstrapd diff --git a/toxcore/network.c b/toxcore/network.c index 68bcb18048d..9c9190094cc 100644 --- a/toxcore/network.c +++ b/toxcore/network.c @@ -37,12 +37,6 @@ #include "network.h" -#ifdef PLAN9 -#include // Plan 9 requires this is imported first -// Comment line here to avoid reordering by source code formatters. -#include -#endif /* PLAN9 */ - #ifdef OS_WIN32 // Put win32 includes here // The mingw32/64 Windows library warns about including winsock2.h after // windows.h even though with the above it's a valid thing to do. So, to make