define _DEFAULT_SOURCE for glibc-2.20 79/27379/1 accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi tizen_3.0.2014.q3_common tizen_3.0.m14.3_ivi accepted/tizen/common/20141001.073403 accepted/tizen/ivi/20141006.083052 submit/tizen/20140930.232826 tizen_3.0.2014.q3_common_release tizen_3.0.m14.3_ivi_release
authorChanho Park <chanho61.park@samsung.com>
Fri, 12 Sep 2014 03:10:31 +0000 (12:10 +0900)
committerChanho Park <chanho61.park@samsung.com>
Fri, 12 Sep 2014 03:11:45 +0000 (12:11 +0900)
_BSD_SOURCE was deprecated in favour of _DEFAULT_SOURCE since glibc
2.20[1]. To avoid build warning on glibc2.20, _DEFAULT_SOURCE should
also be defined.

[1]: https://sourceware.org/glibc/wiki/Release/2.20

Change-Id: I13ae76387805fc8844f68dd564a86945bb5fa1cd
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
dos/getsetsl.c
libinstaller/fs.c
libinstaller/syslxmod.c

index 67e954d..267a081 100644 (file)
@@ -5,6 +5,8 @@
 
 #define _XOPEN_SOURCE 500      /* Required on glibc 2.x */
 #define _BSD_SOURCE
+/* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
+#define _DEFAULT_SOURCE 1
 #include <inttypes.h>
 #include <string.h>
 #include <stddef.h>
index 179629e..19d69d3 100644 (file)
@@ -18,6 +18,8 @@
 
 #define _XOPEN_SOURCE 500      /* Required on glibc 2.x */
 #define _BSD_SOURCE
+/* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
+#define _DEFAULT_SOURCE 1
 #include <stdio.h>
 #include <inttypes.h>
 #include <string.h>
index c706f2c..3759f20 100644 (file)
@@ -17,6 +17,8 @@
 
 #define _XOPEN_SOURCE 500      /* Required on glibc 2.x */
 #define _BSD_SOURCE
+/* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
+#define _DEFAULT_SOURCE 1
 #include <stdio.h>
 #include <inttypes.h>
 #include <string.h>