From 5f71cae2f268c26bddc35bdb0a061b9603edfd24 Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Wed, 26 Jun 2019 12:24:45 -0400 Subject: [PATCH] Moved AC_PROG_OBJC out of conditional. --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 029455335..41621bce8 100644 --- a/configure.ac +++ b/configure.ac @@ -157,7 +157,10 @@ else mspack_msg="External, $LIBMSPACK_CFLAGS $LIBMSPACK_LIBS" fi -# Detect the target system +dnl Enable Objective-C, needed for macOS, may not be inside conditional. +AC_PROG_OBJC + +dnl Detect the target system build_linux=no build_windows=no build_mac=no @@ -167,7 +170,6 @@ case "${host_os}" in build_windows=yes ;; darwin*) - AC_PROG_OBJC build_mac=yes ;; *)