Haiku: fix build

This commit is contained in:
François Revol 2019-03-26 21:09:30 +01:00 committed by Max Kellermann
parent 8b327f1d9b
commit 9d0bf5e95c
2 changed files with 5 additions and 3 deletions

2
NEWS
View File

@ -1,6 +1,8 @@
ver 0.21.7 (not yet released)
* require Meson 0.49.0 for native libgcrypt-config support
* fix build failure with -Dlocal_socket=false
* Haiku
- fix build
ver 0.21.6 (2019/03/17)
* protocol

View File

@ -1,5 +1,5 @@
rc = meson.find_program('rc')
xres = meson.find_program('xres')
rc = find_program('rc')
xres = find_program('xres')
rsrc = custom_target(
'mpd.rsrc',
@ -9,7 +9,7 @@ rsrc = custom_target(
)
custom_target(
'mpd.rsrc',
'mpd.xres',
output: 'mpd',
input: [mpd, rsrc],
command: [xres, '-o', '@OUTPUT@', '--', '@INPUT@'],