summaryrefslogtreecommitdiff
path: root/package/network/services/wireguard/patches/100-portability.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/wireguard/patches/100-portability.patch')
-rw-r--r--package/network/services/wireguard/patches/100-portability.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/network/services/wireguard/patches/100-portability.patch b/package/network/services/wireguard/patches/100-portability.patch
deleted file mode 100644
index 33a7373..0000000
--- a/package/network/services/wireguard/patches/100-portability.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-tools: fix portability issue
-
-Check if the compiler defines __linux__, instead of assuming that the
-host OS is the same as the target OS.
-
-Signed-off-by: Felix Fietkau <nbd@nbd.name>
----
---- a/src/tools/Makefile
-+++ b/src/tools/Makefile
-@@ -36,6 +36,9 @@ endif
- endif
-
- PLATFORM ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
-+ifeq ($(strip $(shell echo __linux__ | $(CC) -E - | grep -v '^\#')),1)
-+PLATFORM := linux
-+endif
-
- CFLAGS ?= -O3
- CFLAGS += -std=gnu11 -D_GNU_SOURCE