Apply secure log
authorHyunbin Lee <hyunbin.lee@samsung.com>
Thu, 26 Sep 2013 03:18:46 +0000 (12:18 +0900)
committerHyunbin Lee <hyunbin.lee@samsung.com>
Thu, 26 Sep 2013 03:18:46 +0000 (12:18 +0900)
Change-Id: I3a17d6395c7b53f378149687efb76c9e04d946f3
Signed-off-by: Hyunbin Lee <hyunbin.lee@samsung.com>
packaging/osp-env-config.spec
src/osp-env-config.c

index c954b6d..e23acb5 100644 (file)
@@ -28,7 +28,7 @@ osp application environment cofiguration serivce (devel)
 
 %build
 %if 0%{?tizen_build_binary_release_type_eng}
-CFLAGS="$CFLAGS -D_SECURE_LOG"
+CFLAGS="$CFLAGS -DTIZEN_ENGINEER_MODE"
 %endif
 MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
 
@@ -40,7 +40,7 @@ CFLAGS="$CFLAGS -D_OSP_DEBUG_ -D_OSP_X86_" %cmake . -DFULLVER=%{version} -DMAJOR
 %endif
 %else
 %if 0%{?tizen_build_binary_release_type_eng}
-CFLAGS="-O2 -g -pipe -Wall -fno-exceptions -Wformat -Wformat-security -Wl,--as-needed -fmessage-length=0 -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -D__SOFTFP__ -mthumb -Wa,-mimplicit-it=thumb -funwind-tables -D_OSP_DEBUG_ -D_OSP_ARMEL_ -D_SECURE_LOG" %cmake . -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
+CFLAGS="-O2 -g -pipe -Wall -fno-exceptions -Wformat -Wformat-security -Wl,--as-needed -fmessage-length=0 -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -D__SOFTFP__ -mthumb -Wa,-mimplicit-it=thumb -funwind-tables -D_OSP_DEBUG_ -D_OSP_ARMEL_ -DTIZEN_ENGINEER_MODE" %cmake . -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
 %else
 CFLAGS="-O2 -g -pipe -Wall -fno-exceptions -Wformat -Wformat-security -Wl,--as-needed -fmessage-length=0 -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -D__SOFTFP__ -mthumb -Wa,-mimplicit-it=thumb -funwind-tables -D_OSP_DEBUG_ -D_OSP_ARMEL_" %cmake . -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
 %endif
index 7c0ea3f..e3c07f4 100644 (file)
@@ -43,9 +43,9 @@
 #define _MAX_PACKAGEID_LENGTH 10
 #define _MAX_APIVERSION_LENGTH 3
 
-#ifdef _SECURE_LOG
-#define _SECURE_LOGI LOGI
-#define _SECURE_LOGE LOGE
+#ifdef TIZEN_ENGINEER_MODE
+#define _SECURE_LOGI SECURE_LOGI
+#define _SECURE_LOGE SECURE_LOGE
 #else
 #define _SECURE_LOGI(...)
 #define _SECURE_LOGE(...)