diff options
author | Mikhail Kashkarov <m.kashkarov@partner.samsung.com> | 2019-11-29 19:27:10 +0300 |
---|---|---|
committer | yan11.meng <yan11.meng@samsung.com> | 2020-01-04 23:29:03 +0900 |
commit | a33ddabb421e9cfa5a2bcc328447295227992909 (patch) | |
tree | 8e9db14fbd4585e764c7902102b6e35c258302bd | |
parent | 586a1b47cbc42bea6c6742ff3230600b80c7fd7b (diff) | |
download | make-submit/tizen_6.0_base_hotfix/20201102.162701.tar.gz make-submit/tizen_6.0_base_hotfix/20201102.162701.tar.bz2 make-submit/tizen_6.0_base_hotfix/20201102.162701.zip |
[Tizen 6.0] Update for buildtizen_6.5.m2_releasetizen_6.0.m2_releasesubmit/tizen_base/20200110.103000submit/tizen_base/20200109.182500submit/tizen_6.5_base/20211027.200801submit/tizen_6.5_base/20211027.183101submit/tizen_6.5_base/20211026.180901submit/tizen_6.0_base_hotfix/20201102.162701submit/tizen_6.0_base_hotfix/20201030.192501submit/tizen_6.0_base/20201029.184801accepted/tizen/base/20200113.070348accepted/tizen/6.5/base/tool/20211027.120559accepted/tizen/6.5/base/20230714.002605accepted/tizen/6.0/base/tool/hotfix/20201102.090434accepted/tizen/6.0/base/tool/hotfix/20201030.125103accepted/tizen/6.0/base/tool/20201029.112309accepted/tizen/6.0/base/20230713.142941accepted/tizen/6.0/base/20201029.111045tizen_6.5_basetizen_6.0_base_hotfixtizen_6.0_basebackup/make-4.0-20211230accepted/tizen_6.5_base_toolaccepted/tizen_6.5_baseaccepted/tizen_6.0_base_tool_hotfixaccepted/tizen_6.0_base_toolaccepted/tizen_6.0_base
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 <m.kashkarov@partner.samsung.com>
-rw-r--r-- | glob/glob.c | 10 |
1 files 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 <glob.h> +#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 |