Changes between Initial Version and Version 8 of Ticket #16965
- Timestamp:
- Sep 8, 2021, 3:13:57 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16965 – Description
initial v8 1 1 When trying to build scipy I getting an error that the script wants to include "threads.h". 2 This however isn't availabe in Haiku and the check for that is due to __STDC_NO_THREADS__not being defined.2 This however isn't availabe in Haiku and the check for that is due to {{{__STDC_NO_THREADS__}}} not being defined. 3 3 4 4 The source of the issue is with numpy. 5 5 See a PR at https://github.com/numpy/numpy/pull/18180 6 6 7 ''__STDC_VERSION__ = 201710 7 {{{ 8 __STDC_VERSION__ = 201710 8 9 __STDC_NO_THREADS__ not defined 9 __GLIBC__ not defined'' 10 __GLIBC__ not defined 11 }}}