diff options
author | pat <pat@FreeBSD.org> | 2002-01-02 04:16:51 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-02 04:16:51 +0000 |
commit | 543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e (patch) | |
tree | 09358f3b37255b97a358ba5c645a6ba3d61f221c /editors | |
parent | e14aab3c1c36a15c1f30e7bdda043c0b3ab152b4 (diff) | |
download | FreeBSD-ports-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.zip FreeBSD-ports-543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e.tar.gz |
Fix for -CURRENT, malloc.h->stdlib.h
Spotted by: Bento
Diffstat (limited to 'editors')
-rw-r--r-- | editors/yudit/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/yudit/Makefile b/editors/yudit/Makefile index a795b78..377fee7 100644 --- a/editors/yudit/Makefile +++ b/editors/yudit/Makefile @@ -29,6 +29,10 @@ MAKE_ENV= LC_ALL= MAN1= yudit.1 makeumap.1 stripumap.1 uniconv.1 uniprint.1 USE_GMAKE= YES +pre-patch: + @${PERL} -pi.orig -e 's|malloc.h|stdlib.h|' \ + ${WRKSRC}/src/UFontMap.cpp + post-install: cd ${PREFIX}/bin/ && strip yudit stripumap uniconv uniprint |