From 628421464ce766c2f680c17040e6ebb33636d7c8 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Sun, 18 Nov 2018 13:10:35 +1100 Subject: [PATCH] PPC is unsupported :cry: Synology has no PPC64 devices and Go has no ppc32 support https://github.com/golang/go/issues/22885 --- cross/dnscrypt-proxy/Makefile | 3 --- spk/dnscrypt-proxy/Makefile | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/cross/dnscrypt-proxy/Makefile b/cross/dnscrypt-proxy/Makefile index 08c8d09a84e..2bfb863017b 100644 --- a/cross/dnscrypt-proxy/Makefile +++ b/cross/dnscrypt-proxy/Makefile @@ -35,9 +35,6 @@ endif ifeq ($(findstring $(ARCH),$(x64_ARCHES)),$(ARCH)) DNSCRYPT_ARCH = amd64 endif -ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH)) -DNSCRYPT_ARCH = ppc64 -endif ifeq ($(DNSCRYPT_ARCH),) $(error Unsupported ARCH $(ARCH)) endif diff --git a/spk/dnscrypt-proxy/Makefile b/spk/dnscrypt-proxy/Makefile index 806ba60c848..f8c5636942e 100644 --- a/spk/dnscrypt-proxy/Makefile +++ b/spk/dnscrypt-proxy/Makefile @@ -5,6 +5,7 @@ SPK_ICON = src/dnscrypt-proxy.png DEPENDS = cross/$(SPK_NAME) SPK_CONFLICT = DNSServer +UNSUPPORTED_ARCHES = $(PPC_ARCHES) MAINTAINER = publicarray DESCRIPTION = A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTPS. https://github.com/jedisct1/dnscrypt-proxy