diff options
author | Kitae Kim <kt920.kim@samsung.com> | 2014-10-17 16:50:53 +0900 |
---|---|---|
committer | Kitae Kim <kt920.kim@samsung.com> | 2014-10-17 16:50:53 +0900 |
commit | 79d47d5433506745995135a3e76b969382290880 (patch) | |
tree | eef48ad582f95982780ae32443c23fe31e830178 /tizen/src/eventcast | |
parent | 1de9d8d6b90bb7345642bb3ca0f81035ac20ffe9 (diff) | |
download | qemu-79d47d5433506745995135a3e76b969382290880.tar.gz qemu-79d47d5433506745995135a3e76b969382290880.tar.bz2 qemu-79d47d5433506745995135a3e76b969382290880.zip |
eventcast: fix build error on Mac OS X.
CONFIG_SHM is not defined. It causes duplicated symbol declaration.
Change-Id: I9c02562a709089a59cd2a3231a0c19aa106818f6
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
Diffstat (limited to 'tizen/src/eventcast')
-rw-r--r-- | tizen/src/eventcast/encode_fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen/src/eventcast/encode_fb.c b/tizen/src/eventcast/encode_fb.c index 414d1df2f9..77d9cefbd1 100644 --- a/tizen/src/eventcast/encode_fb.c +++ b/tizen/src/eventcast/encode_fb.c @@ -47,7 +47,7 @@ DECLARE_DEBUG_CHANNEL(app_tethering); -#if !defined(CONFIG_SDL) || (!defined(CONFIG_SHM) && defined(CONFIG_DARWIN)) +#if !defined(CONFIG_SDL) && !defined(CONFIG_USE_SHM) bool maru_extract_framebuffer(void *buffer) { LOG_INFO("SDL or SHM module is not enabled"); |