diff options
author | Hyunho Kang <hhstark.kang@samsung.com> | 2016-06-13 14:35:37 +0900 |
---|---|---|
committer | Hyunho Kang <hhstark.kang@samsung.com> | 2016-06-13 14:40:28 +0900 |
commit | e25424bbe8b25c25653b51681d16ffcc40420154 (patch) | |
tree | 66919751ad80e1f4a7d2e8afef9bcfd45d367bf3 | |
parent | 16c8867da8a415e776529dce4cc45d257aaa7337 (diff) | |
download | notification-e25424bbe8b25c25653b51681d16ffcc40420154.tar.gz notification-e25424bbe8b25c25653b51681d16ffcc40420154.tar.bz2 notification-e25424bbe8b25c25653b51681d16ffcc40420154.zip |
Add type header for uid_tsubmit/tizen/20160614.022443submit/tizen/20160613.064514accepted/tizen/wearable/20160614.103257accepted/tizen/tv/20160614.103316accepted/tizen/mobile/20160614.103237accepted/tizen/ivi/20160614.103340accepted/tizen/common/20160614.143913
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>
-rw-r--r-- | include/notification_internal.h | 2 | ||||
-rwxr-xr-x | include/notification_ipc.h | 2 | ||||
-rw-r--r-- | include/notification_list.h | 1 | ||||
-rw-r--r-- | include/notification_noti.h | 2 | ||||
-rw-r--r-- | include/notification_private.h | 1 | ||||
-rw-r--r-- | include/notification_setting.h | 2 | ||||
-rw-r--r-- | include/notification_setting_internal.h | 1 | ||||
-rw-r--r-- | include/notification_setting_service.h | 1 |
8 files changed, 12 insertions, 0 deletions
diff --git a/include/notification_internal.h b/include/notification_internal.h index 9a81038..dcfd983 100644 --- a/include/notification_internal.h +++ b/include/notification_internal.h @@ -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> diff --git a/include/notification_ipc.h b/include/notification_ipc.h index e8e2a5c..2f16815 100755 --- a/include/notification_ipc.h +++ b/include/notification_ipc.h @@ -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> diff --git a/include/notification_list.h b/include/notification_list.h index c54a498..6c9ef02 100644 --- a/include/notification_list.h +++ b/include/notification_list.h @@ -17,6 +17,7 @@ #ifndef __NOTIFICATION_LIST_H__ #define __NOTIFICATION_LIST_H__ +#include <sys/types.h> #include <notification.h> #ifdef __cplusplus diff --git a/include/notification_noti.h b/include/notification_noti.h index 8a42456..58d6c6f 100644 --- a/include/notification_noti.h +++ b/include/notification_noti.h @@ -17,6 +17,8 @@ #ifndef __NOTIFICATION_NOTI_H__ #define __NOTIFICATION_NOTI_H__ +#include <sys/types.h> + #include <notification.h> #include <notification_list.h> diff --git a/include/notification_private.h b/include/notification_private.h index 1968469..5a39fe6 100644 --- a/include/notification_private.h +++ b/include/notification_private.h @@ -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"))) diff --git a/include/notification_setting.h b/include/notification_setting.h index ebd784a..b4df109 100644 --- a/include/notification_setting.h +++ b/include/notification_setting.h @@ -18,6 +18,8 @@ #define __NOTIFICATION_SETTING_H__ #include <stdbool.h> +#include <sys/types.h> + #include "notification.h" #ifdef __cplusplus diff --git a/include/notification_setting_internal.h b/include/notification_setting_internal.h index a4dfaf2..b8074f4 100644 --- a/include/notification_setting_internal.h +++ b/include/notification_setting_internal.h @@ -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" diff --git a/include/notification_setting_service.h b/include/notification_setting_service.h index e052c4c..3278a31 100644 --- a/include/notification_setting_service.h +++ b/include/notification_setting_service.h @@ -17,6 +17,7 @@ #ifndef __NOTIFICATION_SETTING_SERVICE_H__ #define __NOTIFICATION_SETTING_SERVICE_H__ +#include <sys/types.h> #include <notification.h> #ifdef __cplusplus |