From 1dfd92f73cdc8d23876f047e5765db5097053816 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 8 Aug 2014 14:33:27 +0300 Subject: [PATCH] android: Fix not including shared/queue.c in A2DP plugin This can cause the followin error: audio.a2dp.default.so: undefined symbol: queue_foreach --- android/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/Makefile.am b/android/Makefile.am index ac3a7668e..263a50623 100644 --- a/android/Makefile.am +++ b/android/Makefile.am @@ -198,7 +198,9 @@ android_audio_a2dp_default_la_SOURCES = android/audio-msg.h \ android/hardware/audio.h \ android/hardware/audio_effect.h \ android/hardware/hardware.h \ - android/system/audio.h + android/system/audio.h \ + src/shared/queue.h \ + src/shared/queue.c android_audio_sco_default_la_SOURCES = android/hal-log.h \ android/sco-msg.h \ -- 2.47.3