Changeset bef979a


Ignore:
Timestamp:
Apr 23, 2016, 8:47:22 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
e22356e
Parents:
d0cb3d8
Message:

wscript: first check for headers, add getopt.h and unistd.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    rd0cb3d8 rbef979a  
    103103    ctx.load('gnu_dirs')
    104104
     105    # check for common headers
     106    ctx.check(header_name='stdlib.h')
     107    ctx.check(header_name='stdio.h')
     108    ctx.check(header_name='math.h')
     109    ctx.check(header_name='string.h')
     110    ctx.check(header_name='limits.h')
     111    ctx.check(header_name='getopt.h')
     112    ctx.check(header_name='unistd.h')
     113
    105114    target_platform = Options.platform
    106115    if ctx.options.target_platform:
     
    175184            ctx.options.enable_atlas = False
    176185
    177     # check for required headers
    178     ctx.check(header_name='stdlib.h')
    179     ctx.check(header_name='stdio.h')
    180     ctx.check(header_name='math.h')
    181     ctx.check(header_name='string.h')
    182     ctx.check(header_name='limits.h')
    183 
    184186    # check support for C99 __VA_ARGS__ macros
    185187    check_c99_varargs = '''
Note: See TracChangeset for help on using the changeset viewer.