perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / shell / bash / patches / solaris-003.glob.c.patch
blob687bca76b9cb959f8b07c6212f2a1e1a0242df21
1 # Solaris-specific patch. alloca(3c) is not visible without
2 # including <alloca.h>.
3 # Not for upstream.
4 --- lib/glob/glob.c 2009-11-14 15:39:30.000000000 -0800
5 +++ lib/glob/glob.c 2010-09-01 10:28:10.161379481 -0700
6 @@ -34,6 +34,10 @@
7 # include <unistd.h>
8 #endif
10 +#if defined (HAVE_ALLOCA) && defined (HAVE_ALLOCA_H)
11 +# include <alloca.h>
12 +#endif
14 #include "bashansi.h"
15 #include "posixdir.h"
16 #include "posixstat.h"