From a74303d80637c0d63057fc4b501a4f93cf01ea85 Mon Sep 17 00:00:00 2001 From: Jean-Michel Trivi Date: Tue, 2 Jun 2009 12:05:18 -0700 Subject: [PATCH] Trying to fix sim-eng build: when building the simulator on linux, link (only) with libdl, as opposed to also making libdl a build target. --- tts/jni/Android.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tts/jni/Android.mk b/tts/jni/Android.mk index 0e952b9f5f8ce..bb76583c52d6e 100755 --- a/tts/jni/Android.mk +++ b/tts/jni/Android.mk @@ -19,6 +19,10 @@ LOCAL_SHARED_LIBRARIES += \ libdl endif +ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true) +LOCAL_LDLIBS += -ldl +endif + LOCAL_MODULE:= libttssynthproxy