diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:39:25 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:39:25 +0000 |
commit | 876d0f9906a1e7ae45da2ca6d1cef195de8ce258 (patch) | |
tree | 597d83b801199db045b7fb580d2893a52a5681dd /x11-wm | |
parent | I removed the autoconf dependency but was still calling ${AUTOCONF}, (diff) |
fix malloc.h problem
PR: 45191
Submitted by: thinker@branda.to
Notes
Notes:
svn path=/head/; revision=69908
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/epplets/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-wm/epplets/Makefile b/x11-wm/epplets/Makefile index 017ba147e285..9a17965b251f 100644 --- a/x11-wm/epplets/Makefile +++ b/x11-wm/epplets/Makefile @@ -23,6 +23,7 @@ RUN_DEPENDS= import:${PORTSDIR}/graphics/ImageMagick WRKSRC= ${WRKDIR}/Epplets-0.5 +USE_REINPLACE= yes USE_X_PREFIX= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes @@ -32,4 +33,7 @@ CONFIGURE_ENV= EROOT=${X11BASE}/share/enlightenment \ LIBS="-L${LOCALBASE}/lib -lintl" \ X_LIBS="-lxpg4" +post-patch: + @${REINPLACE_CMD} -e "s|malloc.h|stdlib.h|" ${WRKSRC}/epplets/mbox.c + .include <bsd.port.mk> |