fix build error 88/109088/2 accepted/tizen/common/20170109.202416 accepted/tizen/ivi/20170109.084406 accepted/tizen/mobile/20170109.084308 accepted/tizen/tv/20170109.084325 accepted/tizen/unified/20170309.033238 accepted/tizen/wearable/20170109.084346 submit/tizen/20170109.021416 submit/tizen_unified/20170308.100408
authorJiyong Min <jiyong.min@samsung.com>
Mon, 9 Jan 2017 00:36:11 +0000 (09:36 +0900)
committerJiyong Min <jiyong.min@samsung.com>
Mon, 9 Jan 2017 00:40:34 +0000 (09:40 +0900)
(build fails because of undefined C++11 user-defined literals)

Change-Id: I7ab36537dd3502f2bc5c7c035dba4ae5d2dced69
Signed-off-by: jiyong.min <jiyong.min@samsung.com>
include/DcmDebugUtils.h
libdcm-util/include/dcm_image_debug_utils.h
packaging/dcm-service.spec

index f81c9200e95b243406e7e285e0cf796337b8108f..9b17b9087a136b6c5426820dcbc9cfb341fdb949 100755 (executable)
 #define FONT_COLOR_GRAY                "\033[37m"
 
 #define dcm_debug(fmt, arg...) do { \
-               LOGD(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGD(FONT_COLOR_CYAN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_info(fmt, arg...) do { \
-               LOGI(FONT_COLOR_YELLOW""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGI(FONT_COLOR_YELLOW"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_warn(fmt, arg...) do { \
-               LOGW(FONT_COLOR_GREEN""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGW(FONT_COLOR_GREEN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_error(fmt, arg...) do { \
-               LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_debug(fmt, arg...) do { \
-               SECURE_LOGD(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGD(FONT_COLOR_CYAN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_info(fmt, arg...) do { \
-               SECURE_LOGI(FONT_COLOR_YELLOW""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGI(FONT_COLOR_YELLOW"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_warn(fmt, arg...) do { \
-               SECURE_LOGW(FONT_COLOR_GREEN""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGW(FONT_COLOR_GREEN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_error(fmt, arg...) do { \
-               SECURE_LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 #define dcm_debug_fenter() do { \
                        LOGD(FONT_COLOR_RESET"<Enter>"); \
                } while (0)
 #define dcm_retm_if(expr, fmt, arg...) do { \
                        if (expr) { \
-                               LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+                               LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET, ##arg); \
                                return; \
                        } \
                } while (0)
 
 #define dcm_retvm_if(expr, val, fmt, arg...) do { \
                        if (expr) { \
-                               LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+                               LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET, ##arg); \
                                return (val); \
                        } \
                } while (0)
index c19cf712d19c4f8866c3b7dd929e58d29270ce3a..05e3fe1a003c8c9ac007265345cfc2ce967fe3d8 100755 (executable)
 #define FONT_COLOR_GRAY                "\033[37m"
 
 #define dcm_debug(fmt, arg...) do { \
-               LOGD(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGD(FONT_COLOR_CYAN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_info(fmt, arg...) do { \
-               LOGI(FONT_COLOR_YELLOW""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGI(FONT_COLOR_YELLOW"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_warn(fmt, arg...) do { \
-               LOGW(FONT_COLOR_GREEN""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGW(FONT_COLOR_GREEN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_error(fmt, arg...) do { \
-               LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+               LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_debug(fmt, arg...) do { \
-               SECURE_LOGD(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGD(FONT_COLOR_CYAN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_info(fmt, arg...) do { \
-               SECURE_LOGI(FONT_COLOR_YELLOW""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGI(FONT_COLOR_YELLOW"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_warn(fmt, arg...) do { \
-               SECURE_LOGW(FONT_COLOR_GREEN""fmt""FONT_COLOR_RESET, ##arg); \
+               SECURE_LOGW(FONT_COLOR_GREEN"" fmt ""FONT_COLOR_RESET, ##arg); \
        } while (0)
 
 #define dcm_sec_error(fmt, arg...) do { \
-               SECURE_LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET , ##arg); \
+               SECURE_LOGE(FONT_COLOR_RED"" fmt ""FONT_COLOR_RESET , ##arg); \
        } while (0)
 
 #define dcm_debug_fenter() do { \
index 40b6bd5505c86a7d5bb46cf17c480a4930d307a6..dac76420050e35dd101ef21db14419ad7795801e 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       dcm-service
 Summary:    A media DCM(Digital Contents Management) Service
-Version:    0.0.13
+Version:    0.0.14
 Release:    0
 Group:      Multimedia/Service
 License:    Apache-2.0