Fix GCC 5 build.

* Add -fgnu89-inline flag for libroot/posix/glibc
* Change __GNUC__ == 4 to __GNUC__ >= 4

Signed-off-by: Adrien Destugues <[email protected]>

Fixes #11990, most of the changes had already been done.
This commit is contained in:
Murai Takashi
2015-10-26 19:05:24 +01:00
committed by Adrien Destugues
parent ed3c7f8fc2
commit 949cf6ac85
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ struct reply_data {
struct command_data {
// yes, it's empty ;)
#if __GNUC__ == 4
#if __GNUC__ >= 4
int32 _padding;
// GCC 2 and GCC 4 treat empty structures differently
#endif