From 6037718fef803a16e655135885bd2603f35c938d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 8 Mar 2018 23:20:05 +0100 Subject: [PATCH] Don't try building universal macOS binaries for PPC Support for this architecture is not present in any of the still supported SDK versions anyhow. --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 4c3aff6ac7..a8b1da5c05 100755 --- a/configure +++ b/configure @@ -20103,7 +20103,7 @@ $as_echo "$as_me: WARNING: --enable-macosx_arch is ignored when --enable-univers if test "x$wxUSE_UNIVERSAL_BINARY" != xyes; then OSX_ARCH_OPTS=$wxUSE_UNIVERSAL_BINARY - else OSX_ARCH_OPTS="ppc,i386" + else OSX_ARCH_OPTS="i386" if test "$wxUSE_OSX_COCOA" = 1; then OSX_ARCH_OPTS="$OSX_ARCH_OPTS,x86_64" fi diff --git a/configure.in b/configure.in index 9104bfc8d3..0919436ef2 100644 --- a/configure.in +++ b/configure.in @@ -1154,7 +1154,7 @@ if test "x$wxUSE_UNIVERSAL_BINARY" != xno ; then if test "x$wxUSE_UNIVERSAL_BINARY" != xyes; then OSX_ARCH_OPTS=$wxUSE_UNIVERSAL_BINARY else dnl Use all architectures supported - OSX_ARCH_OPTS="ppc,i386" + OSX_ARCH_OPTS="i386" if test "$wxUSE_OSX_COCOA" = 1; then OSX_ARCH_OPTS="$OSX_ARCH_OPTS,x86_64" fi