Add pa_bool_t definition for tv module build 30/108830/1 accepted/tizen/3.0/common/20170109.195746 accepted/tizen/3.0/ivi/20170109.003422 accepted/tizen/3.0/mobile/20170109.003326 accepted/tizen/3.0/tv/20170109.003354 accepted/tizen/3.0/wearable/20170109.003406 submit/tizen_3.0/20170106.062231
authorSeungbae Shin <seungbae.shin@samsung.com>
Fri, 6 Jan 2017 03:47:08 +0000 (12:47 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Fri, 6 Jan 2017 03:47:08 +0000 (12:47 +0900)
This commit will be reverted after removing of pa_bool_t on tv

[Version] 5.0-104
[Profile] Common
[Issue Type] Build

Change-Id: I60fbb05eb12b54dcde91660f76186e9fe4bf68ab

packaging/pulseaudio.spec
src/pulsecore/macro.h

index cc947a0..065355a 100644 (file)
@@ -11,7 +11,7 @@
 Name:             pulseaudio
 Summary:          Improved Linux sound server
 Version:          5.0
-Release:          103
+Release:          104
 Group:            Multimedia/Audio
 License:          LGPL-2.1+
 URL:              http://pulseaudio.org
index 4d5e80f..609e27e 100644 (file)
 #define PA_PAGE_SIZE ((size_t) 4096)
 #endif
 
+#ifdef __TIZEN__
+typedef int  pa_bool_t;
+#else
+typedef bool pa_bool_t;
+#endif
+
 /* Rounds down */
 static inline void* PA_ALIGN_PTR(const void *p) {
     return (void*) (((size_t) p) & ~(sizeof(void*) - 1));