On 22 June 2017 at 04:32, Philippe Mathieu-Daudé <f4...@amsat.org> wrote: > ui/vnc.c:3945:20: warning: 'sasl_server_init' is deprecated: first > deprecated in OS X 10.11 [-Wdeprecated-declarations] > if ((saslErr = sasl_server_init(NULL, "qemu")) != SASL_OK) { > ^ > /usr/include/sasl/sasl.h:1016:17: note: 'sasl_server_init' has been > explicitly marked deprecated here > LIBSASL_API int sasl_server_init(const sasl_callback_t *callbacks, > ^
Mmm, I've been vaguely wondering what to do about those warnings for a while. The difficulty is that applying -Wno-deprecated-declarations silences all deprecation warnings, not just the SASL ones, so we lose a bit of warning coverage. Maybe that's just a hit we have to take, though. thanks -- PMM