diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-07-30 09:25:01 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-07-30 09:25:01 +0000 |
commit | 880fd5033ae73c9aec908b33cde9199c3eb625c9 (patch) | |
tree | d73c59992d8846097522193f9ffcdf3b2f86618a /dev-util/indent/files | |
parent | x86 (diff) | |
download | gentoo-2-880fd5033ae73c9aec908b33cde9199c3eb625c9.tar.gz gentoo-2-880fd5033ae73c9aec908b33cde9199c3eb625c9.tar.bz2 gentoo-2-880fd5033ae73c9aec908b33cde9199c3eb625c9.zip |
Added patch to replace malloc.h with stdlib.h for Gentoo/FreeBSD compatibility.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util/indent/files')
-rw-r--r-- | dev-util/indent/files/2.2.9-malloc.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-util/indent/files/2.2.9-malloc.patch b/dev-util/indent/files/2.2.9-malloc.patch new file mode 100644 index 000000000000..6dfcee76dc4c --- /dev/null +++ b/dev-util/indent/files/2.2.9-malloc.patch @@ -0,0 +1,10 @@ +diff -ur indent-2.2.9/man/texinfo2man.c indent-2.2.9-freebsd/man/texinfo2man.c +--- indent-2.2.9/man/texinfo2man.c 2002-01-17 20:28:51.000000000 +0100 ++++ indent-2.2.9-freebsd/man/texinfo2man.c 2005-07-30 11:13:26.616498832 +0200 +@@ -1,5 +1,5 @@ + #include <stdio.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <string.h> + #include <ctype.h> + |