diff options
author | pat <pat@FreeBSD.org> | 2002-01-02 12:16:51 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-02 12:16:51 +0800 |
commit | 543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e (patch) | |
tree | 09358f3b37255b97a358ba5c645a6ba3d61f221c /graphics/xfractint | |
parent | e14aab3c1c36a15c1f30e7bdda043c0b3ab152b4 (diff) | |
download | freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.tar.gz freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.tar.zst freebsd-ports-gnome-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.zip |
Fix for -CURRENT, malloc.h->stdlib.h
Spotted by: Bento
Diffstat (limited to 'graphics/xfractint')
-rw-r--r-- | graphics/xfractint/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/xfractint/Makefile b/graphics/xfractint/Makefile index d0b64e1ba5d4..1b09aa6c750f 100644 --- a/graphics/xfractint/Makefile +++ b/graphics/xfractint/Makefile @@ -19,4 +19,8 @@ USE_XLIB= yes NO_WRKSUBDIR= yes MAN1= xfractint.1 +pre-patch: + @${FIND} ${WRKSRC} -name "*.c" | ${XARGS} ${PERL} -pi -e \ + 's|malloc.h|stdlib.h|' + .include <bsd.port.mk> |