[Title] include "config-host.h"
authorgiwoong.kim <giwoong.kim@samsung.com>
Wed, 25 Jul 2012 08:45:35 +0000 (17:45 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Wed, 25 Jul 2012 08:46:19 +0000 (17:46 +0900)
[Type] bugfix
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/Makefile.tizen
tizen/src/emul_state.c
tizen/src/emulator.c
tizen/src/hw/maru_vga.c
tizen/src/maru_common.h
tizen/src/maru_display.c
tizen/src/skin/maruskin_operation.c

index e66b6a4155a330b81879db3854ff3ceafc794438..27a461760a025fe91ce2eacd7d636230497f76ed 100755 (executable)
@@ -62,7 +62,10 @@ endif #!CONFIG_DARWIN
 obj-y += emulator.o emul_state.o option.o maru_err_table.o
 
 # maru display
-obj-y += maru_display.o maru_shm.o maru_sdl.o sdl_rotate.o maru_finger.o
+obj-y += maru_display.o maru_shm.o
+ifndef CONFIG_DARWIN
+obj-y += maru_sdl.o sdl_rotate.o maru_finger.o
+endif
 
 # sdb
 obj-y += sdb.o
index 6387c5f6c1f93e2d97d2025537414738e0557d2e..4896085837dd7baa3da737c617e54dc189e5d81c 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 
+#include "maru_common.h"
 #include "emul_state.h"
 #include "debug_ch.h"
 
index 2777bd6889e7fd9dc491ddd1a8a5abbc60d6d1c4..e2578d06ad9586d206d36327560787a05b14a73c 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 
+#include "maru_common.h"
 #include <stdlib.h>
 #include <SDL.h>
 #include "maru_common.h"
index 0fcc042e02d94b95c7d8e825799802f90756fcc1..555be0ee22e10684b5ce886fbcffa9208b0ab5c2 100644 (file)
  */
 
 
+#include "maru_common.h"
+
 #ifdef CONFIG_DARWIN
-#define USE_SHM //shared memory
+//shared memory
+#define USE_SHM
 #endif
 
 #include "hw.h"
index 89d19058e213985e5c9332b5ae635eca5a9a2cfc..17ceb29f85f3ba6a539833cb07dfdd26e970d4da 100644 (file)
@@ -37,6 +37,7 @@
 #ifndef __MARU_COMMON_H__
 #define __MARU_COMMON_H__
 
+#include "config-host.h"
 #include <stddef.h>
 #include <stdint.h>
 #include <stdbool.h>
index 928f0b7546d72515904d79cce4309a820894d2e7..99358cd9c9f1bdb602742c1a95ebc0042d1851a1 100644 (file)
  */
 
 
+#include "maru_common.h"
+
 #ifdef CONFIG_DARWIN
-#define USE_SHM //shared memory
+//shared memory
+#define USE_SHM
 #endif
 
 #include "maru_display.h"
index 0175d8e0cfe8e7a2b2034d6914d74fa1cd83e4f4..786db8277261188bdde72be45117a27977f61f84 100644 (file)
  */
 
 
+#include "maru_common.h"
+
 #ifdef CONFIG_DARWIN
-#define USE_SHM //shared memory
+//shared memory
+#define USE_SHM
 #endif
 
 #include <unistd.h>