summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2022-05-04 11:23:31 +0100
committerfalkTX <falktx@falktx.com>2022-05-04 11:23:31 +0100
commita0b3e3e4dd2fc22c8d3e34b0030edf3d1fab0fd5 (patch)
tree149a430eb7d04cafd3fbc1fdb4d6ca1bff3bb53c
parente60daa40a8c5f0f0287887fc75e9a889eb1876dc (diff)
downloadjack2-a0b3e3e4dd2fc22c8d3e34b0030edf3d1fab0fd5.tar.gz
Remove readline as dependency
Signed-off-by: falkTX <falktx@falktx.com>
-rw-r--r--.cirrus.yml10
-rw-r--r--wscript7
2 files changed, 5 insertions, 12 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index f8712880..4826c1dd 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -7,21 +7,21 @@ task:
environment:
CFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
CPPFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
- LDFLAGS: -lreadline -L/usr/local/lib -fstack-protector-strong
+ LDFLAGS: -L/usr/local/lib -fstack-protector-strong
prepare_script:
- mkdir /Install
matrix:
- name: FreeBSD Minimal Build
dependencies_script:
- - pkg install -y pkgconf python3 libsamplerate libsysinfo readline expat
+ - pkg install -y pkgconf python3 libsamplerate libsysinfo expat
config_script:
- - python3 ./waf configure --celt=no --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 --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- name: FreeBSD All Options
dependencies_script:
- - pkg install -y pkgconf python3 libsamplerate libsysinfo readline alsa-lib dbus expat opus
+ - pkg install -y pkgconf python3 libsamplerate libsysinfo alsa-lib dbus expat opus
config_script:
- - python3 ./waf configure --celt=no --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 --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
build_script:
- python3 ./waf
diff --git a/wscript b/wscript
index ac71c983..e82f06bd 100644
--- a/wscript
+++ b/wscript
@@ -191,13 +191,6 @@ def options(opt):
samplerate.check_cfg(
package='samplerate',
args='--cflags --libs')
- readline = opt.add_auto_option(
- 'readline',
- help='Build with readline')
- readline.check(lib='readline')
- readline.check(
- header_name=['stdio.h', 'readline/readline.h'],
- msg='Checking for header readline/readline.h')
sd = opt.add_auto_option(
'systemd',
help='Use systemd notify')