diff options
author | François Revol <revol@free.fr> | 2019-03-26 21:19:20 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-03-29 14:32:19 +0100 |
commit | 095e6e6ad4808650a5bc6fe0a969de3c491353bc (patch) | |
tree | cc157b3448b36bf79828383e3d5c120f9cec9383 /meson.build | |
parent | 9d0bf5e95cb09e3e7ab7c8c46398fdc01c05f646 (diff) |
Haiku: meson.build: fix linking (missing libs)
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson.build b/meson.build index bafe9990e..2133c56ed 100644 --- a/meson.build +++ b/meson.build @@ -399,6 +399,12 @@ if is_android declare_dependency(sources: [classes_jar]), java_dep, ] +elif is_haiku + target_type = 'executable' + link_args += [ + '-lnetwork', + '-lbe', + ] else target_type = 'executable' endif |