From a33ddabb421e9cfa5a2bcc328447295227992909 Mon Sep 17 00:00:00 2001 From: Mikhail Kashkarov Date: Fri, 29 Nov 2019 19:27:10 +0300 Subject: [PATCH] [Tizen 6.0] Update for build Extract minimum changes from: 63b42fa Convert GNU make to use the gnulib portability library to enable build. Change-Id: I6060ab0c7a34714fa10c2ad59499e96db70b67e8 Signed-off-by: Mikhail Kashkarov --- glob/glob.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/glob/glob.c b/glob/glob.c index 1a19205..11e0c8d 100644 --- a/glob/glob.c +++ b/glob/glob.c @@ -227,8 +227,6 @@ extern char *alloca (); # endif /* sparc or HAVE_ALLOCA_H. */ # endif /* GCC. */ -# define __alloca alloca - #endif #ifndef __GNU_LIBRARY__ @@ -283,6 +281,14 @@ extern char *alloca (); #endif #include +#if !defined __alloca +# define __alloca alloca +#endif + +#if !defined __stat +# define __stat stat +#endif + #ifdef HAVE_GETLOGIN_R extern int getlogin_r __P ((char *, size_t)); #else -- 2.7.4