diff options
author | seong.chung <seong.chung@samsung.com> | 2014-04-05 16:54:19 +0900 |
---|---|---|
committer | seong.chung <seong.chung@samsung.com> | 2014-04-05 16:54:19 +0900 |
commit | 21f4d2c9b7cb9307c883e67f1c3200f5633cd870 (patch) | |
tree | cc8663da3b86abc4d2421e67ee2d42d11d61ca67 | |
parent | 6f86653e030e2e2917184990f5bc16ca81c50ada (diff) | |
download | message-app-21f4d2c9b7cb9307c883e67f1c3200f5633cd870.tar.gz message-app-21f4d2c9b7cb9307c883e67f1c3200f5633cd870.tar.bz2 message-app-21f4d2c9b7cb9307c883e67f1c3200f5633cd870.zip |
Apply ethumb dependancy
Change-Id: I285b870a515dbeb1e40af0b426e498424253e8de
Signed-off-by: seong.chung <seong.chung@samsung.com>
-rwxr-xr-x | common/CMakeLists.txt | 1 | ||||
-rwxr-xr-x | packaging/org.tizen.message.spec | 1 | ||||
-rwxr-xr-x | viewer/smil-player/src/msg-smil-player.c | 4 |
3 files changed, 5 insertions, 1 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 62c8987..4534f06 100755 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -39,6 +39,7 @@ pkg_check_modules(pkgs REQUIRED status libexif tapi + ethumb ) FOREACH(flag ${pkgs_CFLAGS}) diff --git a/packaging/org.tizen.message.spec b/packaging/org.tizen.message.spec index 151edd8..90730fd 100755 --- a/packaging/org.tizen.message.spec +++ b/packaging/org.tizen.message.spec @@ -32,6 +32,7 @@ BuildRequires: pkgconfig(ecore-file) BuildRequires: pkgconfig(ecore-evas) BuildRequires: pkgconfig(eina) BuildRequires: pkgconfig(evas) +BuildRequires: pkgconfig(ethumb) BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(heynoti) BuildRequires: pkgconfig(icu-i18n) diff --git a/viewer/smil-player/src/msg-smil-player.c b/viewer/smil-player/src/msg-smil-player.c index f992599..abb07c6 100755 --- a/viewer/smil-player/src/msg-smil-player.c +++ b/viewer/smil-player/src/msg-smil-player.c @@ -17,6 +17,8 @@ /*================================================================================================== * INCLUDE HEADERS *==================================================================================================*/ +#include <Ethumb.h> + #include "msg-smil-types.h" #include "msg-smil-player.h" #include "msg-smil-util.h" @@ -465,4 +467,4 @@ MSG_BOOL _msg_smil_request_player_start(void *hSmilHandle) SMIL_HANDLER_S *smilPlayerHndle = (SMIL_HANDLER_S *)hSmilHandle; return _msg_smil_render_mgr_request_player_start((void *)smilPlayerHndle->smilRenderer); -}
\ No newline at end of file +} |