Skip to content

Commit

Permalink
Fix ubuntu-22.04 compatiblity issues
Browse files Browse the repository at this point in the history
  • Loading branch information
axkg committed Apr 5, 2024
1 parent 91ffd2a commit 1b5f51f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
libjack-dev liblrdf0-dev libmad0-dev libpango1.0-dev \
libpulse-dev libsm-dev libvorbis-dev libx11-dev libxext-dev \
libxi-dev libxml2-dev mpg321 sox vorbis-tools yelp-tools zlib1g-dev \
xxd meson ninja-build
xxd meson ninja-build appstream desktop-file-utils gettext clang-format
- name: Run compile test using ${{ matrix.target }}
run: |
${{ matrix.target }} meson setup build
Expand Down
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ vorbis_dep = dependency('vorbis', version : '>= 1.3', required: get_option('vorb
vorbisfile_dep = dependency('vorbisfile', version : '>= 1.3', required: get_option('vorbis'))
audiofile_dep = dependency('audiofile', version : '>= 0.3', required: get_option('audiofile'))
alsa_dep = dependency('alsa', version : '>= 1.2', required: get_option('alsa'))
jack_dep = dependency('jack', version : '>= 1.9', required: get_option('jack'))
pulse_dep = dependency('libpulse', version : '>= 16', required: get_option('pulse'))
x11_dep = dependency('x11', version : '>= 1.8', required: get_option('x11'))
jack_dep = dependency('jack', version : '>= 0.120', required: get_option('jack'))
pulse_dep = dependency('libpulse', version : '>= 15', required: get_option('pulse'))
x11_dep = dependency('x11', version : '>= 1.7', required: get_option('x11'))
cap_dep = dependency('libcap', version : '>= 2', required: get_option('capabilities'))
lrdf_dep = dependency('lrdf', version : '>= 0.2.4', required: get_option('lrdf'))
deps = [ gtk_dep, xml_dep, threads_dep, dl_dep, mad_dep, vorbis_dep, vorbisfile_dep, audiofile_dep, alsa_dep, jack_dep, pulse_dep, x11_dep, cap_dep, lrdf_dep ]
deps = [ gtk_dep, xml_dep, z_dep, threads_dep, dl_dep, mad_dep, vorbis_dep, vorbisfile_dep, audiofile_dep, alsa_dep, jack_dep, pulse_dep, x11_dep, cap_dep, lrdf_dep ]

ladspa = cc.has_header('ladspa.h', required: true)

Expand Down
File renamed without changes.

0 comments on commit 1b5f51f

Please sign in to comment.