summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2022-05-04 11:20:37 +0100
committerfalkTX <falktx@falktx.com>2022-05-04 11:20:37 +0100
commitc69d6097c2acc7fa0558a0b0bef509c526719cb1 (patch)
treeb184a1918ecdc92d1d504705c6ceeea580055bae
parent564c710eefc760a5683b88b3ecb8a29100d5274e (diff)
downloadjack2-c69d6097c2acc7fa0558a0b0bef509c526719cb1.tar.gz
sndfile is no longer a dependency
Signed-off-by: falkTX <falktx@falktx.com>
-rw-r--r--.cirrus.yml8
-rw-r--r--wscript6
2 files changed, 4 insertions, 10 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index d78700db..f8712880 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -14,14 +14,14 @@ task:
matrix:
- name: FreeBSD Minimal Build
dependencies_script:
- - pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline expat
+ - pkg install -y pkgconf python3 libsamplerate libsysinfo readline expat
config_script:
- - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
+ - python3 ./waf configure --celt=no --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- name: FreeBSD All Options
dependencies_script:
- - pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline alsa-lib dbus expat opus
+ - pkg install -y pkgconf python3 libsamplerate libsysinfo readline alsa-lib dbus expat opus
config_script:
- - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
+ - python3 ./waf configure --celt=no --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
build_script:
- python3 ./waf
diff --git a/wscript b/wscript
index 77856763..3f055848 100644
--- a/wscript
+++ b/wscript
@@ -191,12 +191,6 @@ def options(opt):
samplerate.check_cfg(
package='samplerate',
args='--cflags --libs')
- sndfile = opt.add_auto_option(
- 'sndfile',
- help='Build with libsndfile')
- sndfile.check_cfg(
- package='sndfile',
- args='--cflags --libs')
readline = opt.add_auto_option(
'readline',
help='Build with readline')