mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
- 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
10 lines
266 B
C
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__ */
|
|
|