1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-03-23 19:20:51 +00:00

use run_loop_cocoa.m only on Darwin systems or when compiling for iPhone

This commit is contained in:
matthias.ringwald 2009-11-23 19:56:28 +00:00
parent 981eb02ec5
commit 6560583654
2 changed files with 3 additions and 2 deletions

@ -69,7 +69,7 @@ case "$host_os" in
USE_COCOA_RUN_LOOP="yes"
;;
*)
USE_COCOA_RUN_LOOP="no"
USE_COCOA_RUN_LOOP="no"
;;
esac

@ -5,8 +5,9 @@ prefix = @prefix@
springboard_access_sources = @SPRINGBOARD_ACCESS_SOURCES@
usb_sources = @USB_SOURCES@
run_loop_sources = @RUN_LOOP_SOURCES@
libBTstack_SOURCES = btstack.c hci_cmds.c linked_list.c run_loop.c run_loop_posix.c run_loop_cocoa.m socket_connection.c utils.c
libBTstack_SOURCES = btstack.c hci_cmds.c linked_list.c run_loop.c $(run_loop_sources) socket_connection.c utils.c
BTdaemon_SOURCES = $(libBTstack_SOURCES) \
bt_control_iphone.c \