mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
b9984cae70
commit
19c86e397c
3 changed files with 9 additions and 2 deletions
|
@ -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
2
configure
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue