Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r4ed1e47 r22e3ef1  
    6767            help_str = 'compile with libavcodec (auto)',
    6868            help_disable_str = 'disable libavcodec')
    69     add_option_enable_disable(ctx, 'vorbis', default = None,
    70             help_str = 'compile with libvorbis (auto)',
    71             help_disable_str = 'disable libvorbis')
    7269    add_option_enable_disable(ctx, 'samplerate', default = None,
    7370            help_str = 'compile with samplerate (auto)',
     
    143140    ctx.check(header_name='math.h')
    144141    ctx.check(header_name='string.h')
     142    ctx.check(header_name='errno.h')
    145143    ctx.check(header_name='limits.h')
    146144    ctx.check(header_name='stdarg.h')
     
    433431            ctx.define('HAVE_LIBAV', 1)
    434432
    435     # check for vorbisenc
    436     if (ctx.options.enable_vorbis != False):
    437         ctx.check_cfg(package = 'vorbisenc vorbis ogg',
    438                 args = '--cflags --libs',
    439                 uselib_store = 'VORBISENC',
    440                 mandatory = ctx.options.enable_vorbis)
    441 
    442433    if (ctx.options.enable_wavread != False):
    443434        ctx.define('HAVE_WAVREAD', 1)
     
    640631    ctx.excl += ' **/.cache'
    641632    ctx.excl += ' **/**.zip **/**.tar.bz2'
    642     ctx.excl += ' **.tar.bz2'
     633    ctx.excl += ' **.tar.bz2**'
    643634    ctx.excl += ' **/doc/full/* **/doc/web/*'
    644635    ctx.excl += ' **/doc/full.cfg'
     
    652643    ctx.excl += ' **/.DS_Store'
    653644    ctx.excl += ' **/.travis.yml'
    654     ctx.excl += ' **/.landscape.yml'
    655645    ctx.excl += ' **/.appveyor.yml'
    656646    ctx.excl += ' **/.circleci/*'
Note: See TracChangeset for help on using the changeset viewer.