diff options
Diffstat (limited to 'Makefile.android')
-rw-r--r-- | Makefile.android | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.android b/Makefile.android index 01cb35b..e58f984 100644 --- a/Makefile.android +++ b/Makefile.android @@ -58,6 +58,7 @@ ifeq ($(HOST_OS),windows) MY_CFLAGS += -D_WIN32 # we need Win32 features that are available since Windows 2000 Professional/Server (NT 5.0) MY_CFLAGS += -DWINVER=0x501 + MY_LDLIBS += -lvfw32 endif ifeq ($(HOST_ARCH),ppc) @@ -189,7 +190,7 @@ else endif ifeq ($(HOST_OS),darwin) - QEMU_SYSTEM_LDLIBS += -Wl,-framework,Cocoa + QEMU_SYSTEM_LDLIBS += -Wl,-framework,Cocoa,-framework,QTKit,-framework,CoreVideo endif include $(LOCAL_PATH)/Makefile.common @@ -242,6 +243,7 @@ LOCAL_SRC_FILES := \ android/snapshot.c \ android/main-common.c \ android/main.c \ + android/opengles.c \ android/utils/setenv.c \ vl-android-ui.c \ android/protocol/core-connection.c \ |