When building the test-sdp we don't want src/sdpd-request.c end up using the incompatible GNU libc's error(3). This also fixes building on musl libc which misses the error(3) GNU extension. --- unit/test-sdp.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/unit/test-sdp.c b/unit/test-sdp.c index 6d699e2..eeed0cb 100644 --- a/unit/test-sdp.c +++ b/unit/test-sdp.c @@ -134,6 +134,12 @@ void btd_debug(const char *format, ...) { } +void error(const char *format, ...); + +void error(const char *format, ...) +{ +} + static void context_quit(struct context *context) { g_main_loop_quit(context->main_loop); -- 1.8.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html