Haiku: fix build
This commit is contained in:
parent
8b327f1d9b
commit
9d0bf5e95c
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
||||||
ver 0.21.7 (not yet released)
|
ver 0.21.7 (not yet released)
|
||||||
* require Meson 0.49.0 for native libgcrypt-config support
|
* require Meson 0.49.0 for native libgcrypt-config support
|
||||||
* fix build failure with -Dlocal_socket=false
|
* fix build failure with -Dlocal_socket=false
|
||||||
|
* Haiku
|
||||||
|
- fix build
|
||||||
|
|
||||||
ver 0.21.6 (2019/03/17)
|
ver 0.21.6 (2019/03/17)
|
||||||
* protocol
|
* protocol
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
rc = meson.find_program('rc')
|
rc = find_program('rc')
|
||||||
xres = meson.find_program('xres')
|
xres = find_program('xres')
|
||||||
|
|
||||||
rsrc = custom_target(
|
rsrc = custom_target(
|
||||||
'mpd.rsrc',
|
'mpd.rsrc',
|
||||||
|
@ -9,7 +9,7 @@ rsrc = custom_target(
|
||||||
)
|
)
|
||||||
|
|
||||||
custom_target(
|
custom_target(
|
||||||
'mpd.rsrc',
|
'mpd.xres',
|
||||||
output: 'mpd',
|
output: 'mpd',
|
||||||
input: [mpd, rsrc],
|
input: [mpd, rsrc],
|
||||||
command: [xres, '-o', '@OUTPUT@', '--', '@INPUT@'],
|
command: [xres, '-o', '@OUTPUT@', '--', '@INPUT@'],
|
||||||
|
|
Loading…
Reference in New Issue