Skip to content

Commit

Permalink
Enable -fobjc-weak when building MFI controller code
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 24, 2020
1 parent 97782e6 commit b4338dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion configure
Expand Up @@ -23159,7 +23159,7 @@ fi

if test x$enable_joystick_mfi = xyes; then
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -x objective-c"
CFLAGS="$CFLAGS -x objective-c -fobjc-weak"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GameController framework" >&5
$as_echo_n "checking for GameController framework... " >&6; }
enable_joystick_mfi=no
Expand Down Expand Up @@ -23199,6 +23199,7 @@ $as_echo "$enable_joystick_mfi" >&6; }

$as_echo "#define SDL_JOYSTICK_MFI 1" >>confdefs.h

EXTRA_CFLAGS="$EXTRA_CFLAGS -fobjc-weak"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,CoreHaptics -Wl,-weak_framework,GameController"
fi
fi
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Expand Up @@ -2801,7 +2801,7 @@ AS_HELP_STRING([--enable-joystick-mfi], [include macOS MFI joystick support [[de
if test x$enable_joystick_mfi = xyes; then
save_CFLAGS="$CFLAGS"
dnl Work around that we don't have Objective-C support in autoconf
CFLAGS="$CFLAGS -x objective-c"
CFLAGS="$CFLAGS -x objective-c -fobjc-weak"
AC_MSG_CHECKING(for GameController framework)
enable_joystick_mfi=no
AC_TRY_COMPILE([
Expand All @@ -2823,6 +2823,7 @@ AS_HELP_STRING([--enable-joystick-mfi], [include macOS MFI joystick support [[de
AC_MSG_RESULT($enable_joystick_mfi)
if test x$enable_joystick_mfi = xyes; then
AC_DEFINE(SDL_JOYSTICK_MFI, 1, [ ])
EXTRA_CFLAGS="$EXTRA_CFLAGS -fobjc-weak"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,CoreHaptics -Wl,-weak_framework,GameController"
fi
fi
Expand Down

0 comments on commit b4338dd

Please sign in to comment.