diff options
author | Bruce A. Mah <bmah@FreeBSD.org> | 2002-03-29 17:22:14 +0000 |
---|---|---|
committer | Bruce A. Mah <bmah@FreeBSD.org> | 2002-03-29 17:22:14 +0000 |
commit | 5061720c26d92ac79cca22cba513cdc9457b45ae (patch) | |
tree | be462bf7004d3c91042b80863e520888fb813753 /math/oleo | |
parent | Update qmail-tls patch to 1.03.20010627 (diff) |
Unbreak on 5-CURRENT (replace malloc.h references with stdlib.h).
Notes
Notes:
svn path=/head/; revision=56879
Diffstat (limited to 'math/oleo')
-rw-r--r-- | math/oleo/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/math/oleo/Makefile b/math/oleo/Makefile index 666318ac6067..039da6a69cc8 100644 --- a/math/oleo/Makefile +++ b/math/oleo/Makefile @@ -40,4 +40,8 @@ pre-everything:: @${ECHO_MSG} .endif +post-patch: + @find ${WRKSRC} -name '*.[ch]' | xargs \ + ${PERL} -pi -e "s|<malloc.h>|<stdlib.h>|g" + .include <bsd.port.mk> |