Enable checking for native Objective-C exception support on Windows if non-gnu runtime is used (i.e. ng runtime).

This commit is contained in:
Frederik Seiffert 2020-11-26 14:28:56 +01:00
parent b9984cae70
commit 19c86e397c
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2020-11-26 Frederik Seiffert <frederik@algoriddim.com>
* configure
* configure.ac:
Enable checking for native Objective-C exception support on Windows
if non-gnu runtime is used (i.e. ng runtime).
2020-11-14 Richard Frith-Macdonald <rfm@gnu.org>
* rules.make:

2
configure vendored
View file

@ -8144,7 +8144,7 @@ fi
if test x"$USE_OBJC_EXCEPTIONS" = x"maybe"; then
if test x"$MSWIND" = x"yes"; then
if test x"$MSWIND" = x"yes" -a "$OBJC_RUNTIME_LIB" = "gnu"; then
USE_OBJC_EXCEPTIONS=no
fi
fi

View file

@ -1386,7 +1386,7 @@ USE_OBJC_EXCEPTIONS=$enableval,
USE_OBJC_EXCEPTIONS=maybe)
if test x"$USE_OBJC_EXCEPTIONS" = x"maybe"; then
if test x"$MSWIND" = x"yes"; then
if test x"$MSWIND" = x"yes" -a "$OBJC_RUNTIME_LIB" = "gnu"; then
USE_OBJC_EXCEPTIONS=no
fi
fi