diff options
author | Android Code Review <code-review@android.com> | 2009-09-14 05:51:15 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2009-09-14 05:51:15 -0700 |
commit | 63a13ab8230560f5b9610bb0fa6a47a54ebf8e9c (patch) | |
tree | bdeb982e0344bf3bd9cb5d2261936c3f30870a1e | |
parent | 81d3aa8df3b0b3a10e35effb9ada6ade82a1ec9b (diff) | |
parent | 43fbac177aaaea65f42170226c1bb32ba4f359d8 (diff) | |
download | external_qemu-63a13ab8230560f5b9610bb0fa6a47a54ebf8e9c.zip external_qemu-63a13ab8230560f5b9610bb0fa6a47a54ebf8e9c.tar.gz external_qemu-63a13ab8230560f5b9610bb0fa6a47a54ebf8e9c.tar.bz2 |
Merge change 11465
* changes:
Added option to build link with libutil
-rw-r--r-- | Makefile.android | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.android b/Makefile.android index a844a6b..734991e 100644 --- a/Makefile.android +++ b/Makefile.android @@ -510,6 +510,10 @@ ifeq ($(HOST_OS),windows) LOCAL_LDLIBS += -mno-cygwin -mwindows -mconsole endif +ifeq ($(HOST_OS),freebsd) + LOCAL_LDLIBS += -L/usr/local/lib -lpthread -lX11 -lutil +endif + LOCAL_SRC_FILES += $(VL_SOURCES) ifeq ($(HOST_OS),linux) |