changeset 70:050d88405c29

Mac: Add "classic" as an optional architecure for 10.5-10.6 era fat binaries supporting 32bit and 64bit Intel and 32-bit PowerPC. Remove "all" and "64bit" options since there are no Xcode versions that will build these combinations.
author Brian Smith <brian@dbsoft.org>
date Mon, 14 Dec 2020 19:49:44 -0600
parents d149b8e7aea1
children a3f52a63a847
files configure.in
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Mon Dec 14 18:23:24 2020 -0600
+++ b/configure.in	Mon Dec 14 19:49:44 2020 -0600
@@ -30,7 +30,7 @@
 
 dnl ---------------------- check for '--with-arch' switch -----------------
 AC_ARG_WITH(arch,
-   [  --with-arch             specify MacOS architecture: one of modern, all, 32bit, 64bit, intel, arm, ppc, ppc64, x86_64, i386],
+   [  --with-arch             specify MacOS architecture: one of modern, classic, 32bit, intel, arm, powerpc],
    [with_arch=$withval],
    [with_arch=no],
 )
@@ -89,15 +89,12 @@
          no)
             ARCH=""
             ;;
-         all)
-            ARCH="-arch ppc -arch ppc64 -arch x86_64 -arch i386 -arch arm64"
+         classic)
+            ARCH="-arch ppc -arch x86_64 -arch i386"
             ;;
          32bit)
             ARCH="-arch ppc -arch i386"
             ;;
-         64bit)
-            ARCH="-arch ppc64 -arch x86_64 -arch arm64"
-            ;;
          intel)
             ARCH="-arch i386 -arch x86_64"
             ;;