Mon, 11 Mar 2024 22:31:13 -0500
Remove bad logic for old bonjour with Xeme
Old bonjour is not going to be ported to xeme so this check was no longer
necessary, but it was giving false positives anyways causing us to try and
build bonjour when we don't have avahi including on macOS.
Testing Done:
Ran with the turtles and ran on macOS with the homebrew native file and built successfully.
Reviewed at https://reviews.imfreedom.org/r/3020/
| meson.build | file | annotate | diff | comparison | revisions |
--- a/meson.build Mon Mar 11 22:25:06 2024 -0500 +++ b/meson.build Mon Mar 11 22:31:13 2024 -0500 @@ -314,7 +314,7 @@ foreach prpl : dynamic_list if prpl == '' # The list was empty; do nothing. - elif prpl == 'bonjour' and not enable_avahi and not xeme.found() + elif prpl == 'bonjour' and not enable_avahi # Do nothing. elif prpl == 'gg' and not libgadu.found() # Do nothing.