Add type header for uid_t 75/74175/1 accepted/tizen/common/20160614.143913 accepted/tizen/ivi/20160614.103340 accepted/tizen/mobile/20160614.103237 accepted/tizen/tv/20160614.103316 accepted/tizen/wearable/20160614.103257 submit/tizen/20160613.064514 submit/tizen/20160614.022443
authorHyunho Kang <hhstark.kang@samsung.com>
Mon, 13 Jun 2016 05:35:37 +0000 (14:35 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Mon, 13 Jun 2016 05:40:28 +0000 (14:40 +0900)
Internal apps which include internal noti header face build break
because they cannot find type uid_t

Change-Id: I9c2e787516dcdf85d84718e2c62edf5dc5fd35e5
Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com>
include/notification_internal.h
include/notification_ipc.h
include/notification_list.h
include/notification_noti.h
include/notification_private.h
include/notification_setting.h
include/notification_setting_internal.h
include/notification_setting_service.h

index 9a810383ac840ed9e6f8be80ee590b72182bd810..dcfd9831bcda65c039ab42cb22fb3a429a456976 100644 (file)
@@ -17,6 +17,8 @@
 #ifndef __NOTIFICATION_INTERNAL_H__
 #define __NOTIFICATION_INTERNAL_H__
 #include <glib.h>
+#include <sys/types.h>
+
 #include <notification_error.h>
 #include <notification_type.h>
 #include <notification_list.h>
index e8e2a5ce22cc686bf19cc694bc41674f797bc46f..2f16815edfbd8b9ce2fd623072801b9d43a1fd8c 100755 (executable)
@@ -18,6 +18,8 @@
 #define __NOTIFICATION_IPC_H__
 
 #include <gio/gio.h>
+#include <sys/types.h>
+
 #include <notification.h>
 #include <notification_setting.h>
 #include <notification_setting_internal.h>
index c54a498e7b46bead3247f40f150e84a13bf33544..6c9ef02a1e13eee992dc9ec723d61b60bb01eabd 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __NOTIFICATION_LIST_H__
 #define __NOTIFICATION_LIST_H__
 
+#include <sys/types.h>
 #include <notification.h>
 
 #ifdef __cplusplus
index 8a42456ed611dc4bcbd6b8cfa13d3f4b9d0b2f96..58d6c6f25c5f7376850d1fd642234e3888f5167a 100644 (file)
@@ -17,6 +17,8 @@
 #ifndef __NOTIFICATION_NOTI_H__
 #define __NOTIFICATION_NOTI_H__
 
+#include <sys/types.h>
+
 #include <notification.h>
 #include <notification_list.h>
 
index 19684698041e31d6dba7ccf10ef032d5ccf63fb0..5a39fe6481ab0578f2d6f6bd8d85a9ae43eefbdd 100644 (file)
@@ -16,6 +16,7 @@
 
 #ifndef __NOTIFICATION_PRIVATE_H__
 #define __NOTIFICATION_PRIVATE_H__
+#include <sys/types.h>
 
 #ifndef EXPORT_API
 #define EXPORT_API __attribute__ ((visibility("default")))
index ebd784a6d145f7c5c3be3dd7d5e26eea62d5e418..b4df109baf24654bbeff10396da235182b949074 100644 (file)
@@ -18,6 +18,8 @@
 #define __NOTIFICATION_SETTING_H__
 
 #include <stdbool.h>
+#include <sys/types.h>
+
 #include "notification.h"
 
 #ifdef __cplusplus
index a4dfaf2888dbc90041c1bc3a324768f2bd72d524..b8074f44ee1663a6c61ec430f155a1d93bc7920e 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __NOTIFICATION_SETTING_INTERNAL_H__
 #define __NOTIFICATION_SETTING_INTERNAL_H__
 
+#include <sys/types.h>
 #include <stdbool.h>
 #include "notification.h"
 #include "notification_setting.h"
index e052c4ced623b50eaaf6f740a88897bf89f06462..3278a312b0e8be0d11ad9dc57804c86e80968c18 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __NOTIFICATION_SETTING_SERVICE_H__
 #define __NOTIFICATION_SETTING_SERVICE_H__
 
+#include <sys/types.h>
 #include <notification.h>
 
 #ifdef __cplusplus