Changes in / [cf4bc9f:171ae68]


Ignore:
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .circleci/config.yml

    rcf4bc9f r171ae68  
    33  command: |
    44    sudo apt-get update
    5     sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev libflac-dev
     5    sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev
    66
    77pip-install: &pip-install
  • TabularUnified .travis.yml

    rcf4bc9f r171ae68  
    6363    - libsamplerate-dev
    6464    - libvorbis-dev
    65     - libflac-dec
    6665    - libjack-dev
    6766    - libasound2-dev
     
    7574    - libsndfile
    7675    - libvorbis
    77     - flac
    7876    - lcov
    7977    #update: true
  • TabularUnified azure-pipelines.yml

    rcf4bc9f r171ae68  
    3030      brew update
    3131      brew install pkg-config gnupg
    32       brew install sox ffmpeg libsndfile libvorbis flac lcov
     32      brew install sox ffmpeg libsndfile libvorbis lcov
    3333    displayName: 'brew install'
    3434  - script: |
  • TabularUnified src/wscript_build

    rcf4bc9f r171ae68  
    1313uselib += ['AVUTIL']
    1414uselib += ['VORBISENC']
    15 uselib += ['FLAC']
    1615uselib += ['BLAS']
    1716
  • TabularUnified wscript

    rcf4bc9f r171ae68  
    7070            help_str = 'compile with libvorbis (auto)',
    7171            help_disable_str = 'disable libvorbis')
    72     add_option_enable_disable(ctx, 'flac', default = None,
    73             help_str = 'compile with libFLAC (auto)',
    74             help_disable_str = 'disable libflac')
    7572    add_option_enable_disable(ctx, 'samplerate', default = None,
    7673            help_str = 'compile with samplerate (auto)',
     
    442439                uselib_store = 'VORBISENC',
    443440                mandatory = ctx.options.enable_vorbis)
    444 
    445     # check for flac
    446     if (ctx.options.enable_flac != False):
    447         ctx.check_cfg(package = 'flac',
    448                 args = '--cflags --libs',
    449                 uselib_store = 'FLAC',
    450                 mandatory = ctx.options.enable_flac)
    451441
    452442    if (ctx.options.enable_wavread != False):
Note: See TracChangeset for help on using the changeset viewer.