(QB) MacOS X 10.5's toolchain does not support extra languages, (#11917)

so disable HAVE_LANGEXTRA. We can later make this more generic
by checking for specific GCC versions as a cutoff point for
HAVE_LANGEXTRA support, but this will do for now
This commit is contained in:
Autechre 2021-01-21 06:50:35 +01:00 committed by GitHub
parent 015576b2ba
commit 21a1275966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -644,6 +644,10 @@ check_macro NEON __ARM_NEON__
add_define MAKEFILE OS "$OS" add_define MAKEFILE OS "$OS"
if [ "$ARCHITECTURE_NAME" = 'Power Macintosh' ]; then
HAVE_LANGEXTRA='no'
fi
if [ "$HAVE_DEBUG" = 'yes' ]; then if [ "$HAVE_DEBUG" = 'yes' ]; then
add_define MAKEFILE DEBUG 1 add_define MAKEFILE DEBUG 1
if [ "$HAVE_OPENGL" = 'yes' ] || if [ "$HAVE_OPENGL" = 'yes' ] ||

View File

@ -1,4 +1,5 @@
PLATFORM_NAME="$(uname -s)" PLATFORM_NAME="$(uname -s)"
ARCHITECTURE_NAME="$(uname -m)"
if [ -n "${CROSS_COMPILE:=}" ]; then if [ -n "${CROSS_COMPILE:=}" ]; then
case "$CROSS_COMPILE" in case "$CROSS_COMPILE" in