[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 e66b6a4..27a4617 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 6387c5f..4896085 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 
+#include "maru_common.h"
 #include "emul_state.h"
 #include "debug_ch.h"
 
index 2777bd6..e2578d0 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 
+#include "maru_common.h"
 #include <stdlib.h>
 #include <SDL.h>
 #include "maru_common.h"
index 0fcc042..555be0e 100644 (file)
  */
 
 
+#include "maru_common.h"
+
 #ifdef CONFIG_DARWIN
-#define USE_SHM //shared memory
+//shared memory
+#define USE_SHM
 #endif
 
 #include "hw.h"
index 89d1905..17ceb29 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 928f0b7..99358cd 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 0175d8e..786db82 100644 (file)
  */
 
 
+#include "maru_common.h"
+
 #ifdef CONFIG_DARWIN
-#define USE_SHM //shared memory
+//shared memory
+#define USE_SHM
 #endif
 
 #include <unistd.h>