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 9a81038..dcfd983 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 e8e2a5c..2f16815 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 c54a498..6c9ef02 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __NOTIFICATION_LIST_H__
 #define __NOTIFICATION_LIST_H__
 
+#include <sys/types.h>
 #include <notification.h>
 
 #ifdef __cplusplus
index 8a42456..58d6c6f 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 1968469..5a39fe6 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 ebd784a..b4df109 100644 (file)
@@ -18,6 +18,8 @@
 #define __NOTIFICATION_SETTING_H__
 
 #include <stdbool.h>
+#include <sys/types.h>
+
 #include "notification.h"
 
 #ifdef __cplusplus
index a4dfaf2..b8074f4 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 e052c4c..3278a31 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