Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified wscript

    re836160 re625579  
    7373            help_str = 'compile with libavcodec (auto)',
    7474            help_disable_str = 'disable libavcodec')
    75     add_option_enable_disable(ctx, 'vorbis', default = None,
    76             help_str = 'compile with libvorbis (auto)',
    77             help_disable_str = 'disable libvorbis')
    78     add_option_enable_disable(ctx, 'flac', default = None,
    79             help_str = 'compile with libFLAC (auto)',
    80             help_disable_str = 'disable libflac')
    8175    add_option_enable_disable(ctx, 'samplerate', default = None,
    8276            help_str = 'compile with samplerate (auto)',
    8377            help_disable_str = 'disable samplerate')
     78    add_option_enable_disable(ctx, 'rubberband', default = None,
     79            help_str = 'compile with rubberband (auto)',
     80            help_disable_str = 'disable rubberband')
    8481    add_option_enable_disable(ctx, 'memcpy', default = True,
    8582            help_str = 'use memcpy hacks (default)',
     
    141138                'samplerate',
    142139                'jack',
     140                'rubberband',
    143141                'avcodec',
    144142                'blas',
    145143                'fftw3',
    146144                'fftw3f',
    147                 'flac',
    148                 'vorbis',
    149145        ]
    150146        for d in external_deps:
     
    417413                mandatory = ctx.options.enable_samplerate)
    418414
     415    # check for librubberband
     416    if (ctx.options.enable_rubberband != False):
     417        ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',
     418                args = '--cflags --libs',
     419                mandatory = ctx.options.enable_rubberband)
     420
    419421    # check for jack
    420422    if (ctx.options.enable_jack != False):
     
    465467                ctx.define('HAVE_AVRESAMPLE', 1)
    466468            ctx.define('HAVE_LIBAV', 1)
    467 
    468     # check for vorbisenc
    469     if (ctx.options.enable_vorbis != False):
    470         ctx.check_cfg(package = 'vorbisenc vorbis ogg',
    471                 args = '--cflags --libs',
    472                 uselib_store = 'VORBISENC',
    473                 mandatory = ctx.options.enable_vorbis)
    474 
    475     # check for flac
    476     if (ctx.options.enable_flac != False):
    477         ctx.check_cfg(package = 'flac',
    478                 args = '--cflags --libs',
    479                 uselib_store = 'FLAC',
    480                 mandatory = ctx.options.enable_flac)
    481469
    482470    if (ctx.options.enable_wavread != False):
Note: See TracChangeset for help on using the changeset viewer.