ports/devel/gmake/files/patch-glob-glob.c
Tijl Coosemans baaa24c0a9 - Remove fmake hack because FreeBSD 9 is EoL.
- Fix compiler warning about realloc. [1]
- Remove dependency on gettext-tools and iconv. [2]
- Add upstream patch to fix hangs when doing parallel builds. [3]

PR:		210938 [1], 212157 [2], 225899 [3]
Obtained from:	https://git.savannah.gnu.org/cgit/make.git/commit/?id=b552b05251980f693c729e251f93f5225b400714 [3]
Exp-run by:	antoine, truckman
2018-02-20 09:39:14 +00:00

10 lines
266 B
C

--- glob/glob.c.orig 2013-10-20 17:14:38 UTC
+++ glob/glob.c
@@ -203,7 +203,6 @@ my_realloc (p, n)
return (char *) malloc (n);
return (char *) realloc (p, n);
}
-# define realloc my_realloc
# endif /* __SASC */
#endif /* __GNU_LIBRARY__ || __DJGPP__ */