Changeset 04d0c89


Ignore:
Timestamp:
Apr 11, 2017, 1:53:03 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
1686fcf
Parents:
b201912
Message:

python/lib/moresetuptools.py: assume pthread is available except on windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/moresetuptools.py

    rb201912 r04d0c89  
    7373                         'HAVE_MEMCPY_HACKS']:
    7474        ext.define_macros += [(define_macro, 1)]
     75    # assume pthread is available except on windows
     76    if os.name != 'nt':
     77        ext.define_macros += [('HAVE_PTHREAD_H', 1)]
    7578
    7679def add_external_deps(ext, usedouble = False):
Note: See TracChangeset for help on using the changeset viewer.