Differences From Artifact [73f518f9b3]:
- File configure.ac — part of check-in [8d027eadf3] at 2022-01-29 19:24:53 on branch trunk — Make ObjFW compile for MiNT (user: js, size: 53942) [annotate] [blame] [check-ins using]
To Artifact [0f0c6381c8]:
- File
configure.ac
— part of check-in
[c255394e60]
at
2022-01-29 20:45:51
on branch trunk
— Don't use _Unwind_Backtrace on MiNT
It crashes. (user: js, size: 53992) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
638 639 640 641 642 643 644 645 646 647 648 649 650 651 | ]) OBJCFLAGS="$old_OBJCFLAGS" ;; esac case "$host_os" in hpux*) dnl _Unwind_Backtrace() returns complete garbage on HP-UX. ;; *) AC_CHECK_FUNCS(_Unwind_Backtrace) ;; esac | > > > | 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | ]) OBJCFLAGS="$old_OBJCFLAGS" ;; esac case "$host_os" in mint*) dnl _Unwind_Backtrace crashes on MiNT ;; hpux*) dnl _Unwind_Backtrace() returns complete garbage on HP-UX. ;; *) AC_CHECK_FUNCS(_Unwind_Backtrace) ;; esac |
︙ | ︙ |