comparison configure @ 2217:6cdb907755cb

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 bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 15 Dec 2020 01:00:38 +0000
parents b86ae2abb3b3
children 4020bdb806dc
comparison
equal deleted inserted replaced
2216:62e5cc4bc347 2217:6cdb907755cb
1408 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 1408 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
1409 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 1409 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
1410 --with-dwcompat specify this to build the optional dwcompat library 1410 --with-dwcompat specify this to build the optional dwcompat library
1411 --with-gtk2 specify this to build with GTK+ 2.x if available 1411 --with-gtk2 specify this to build with GTK+ 2.x if available
1412 --with-deprecated specify this to build with deprecated functions 1412 --with-deprecated specify this to build with deprecated functions
1413 --with-arch specify MacOS architecture: one of modern, all, 32bit, 64bit, intel, arm, ppc, ppc64, x86_64, i386 1413 --with-arch specify MacOS architecture: one of modern, classic, 32bit, intel, arm, powerpc
1414 --with-sdk specify this to build with an alternate MacOS SDK location 1414 --with-sdk specify this to build with an alternate MacOS SDK location
1415 --with-x use the X Window System 1415 --with-x use the X Window System
1416 --with-glib-prefix=PFX Prefix where GLIB is installed (optional) 1416 --with-glib-prefix=PFX Prefix where GLIB is installed (optional)
1417 --with-glib-exec-prefix=PFX Exec prefix where GLIB is installed (optional) 1417 --with-glib-exec-prefix=PFX Exec prefix where GLIB is installed (optional)
1418 --with-gtk-prefix=PFX Prefix where GTK is installed (optional) 1418 --with-gtk-prefix=PFX Prefix where GTK is installed (optional)
4658 *apple-darwin*) 4658 *apple-darwin*)
4659 case "$with_arch" in 4659 case "$with_arch" in
4660 no) 4660 no)
4661 ARCH="" 4661 ARCH=""
4662 ;; 4662 ;;
4663 all) 4663 classic)
4664 ARCH="-arch ppc -arch ppc64 -arch x86_64 -arch i386 -arch arm64" 4664 ARCH="-arch ppc -arch x86_64 -arch i386"
4665 ;; 4665 ;;
4666 32bit) 4666 32bit)
4667 ARCH="-arch ppc -arch i386" 4667 ARCH="-arch ppc -arch i386"
4668 ;;
4669 64bit)
4670 ARCH="-arch ppc64 -arch x86_64 -arch arm64"
4671 ;; 4668 ;;
4672 intel) 4669 intel)
4673 ARCH="-arch i386 -arch x86_64" 4670 ARCH="-arch i386 -arch x86_64"
4674 ;; 4671 ;;
4675 powerpc) 4672 powerpc)