diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-01-25 16:27:47 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-01-25 16:27:47 +0000 |
commit | a38646fb9c2482810bfc0d7329f5f0d3b59eab74 (patch) | |
tree | c91fdd67b0aa162f082f3e8130667cb1f7d89893 /devel/ustl | |
parent | 6f9917b6fc585a16c8adf60e31184371378b009a (diff) | |
download | FreeBSD-ports-a38646fb9c2482810bfc0d7329f5f0d3b59eab74.zip FreeBSD-ports-a38646fb9c2482810bfc0d7329f5f0d3b59eab74.tar.gz |
fix build on -stable
Noticed by: bento via kris
Diffstat (limited to 'devel/ustl')
-rw-r--r-- | devel/ustl/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/ustl/Makefile b/devel/ustl/Makefile index 3bf0651..91a82d8 100644 --- a/devel/ustl/Makefile +++ b/devel/ustl/Makefile @@ -17,9 +17,14 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Codespace-frugal STL implementation USE_BZIP2= yes +USE_REINPLACE= yes +USE_GCC= 3.2 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} HAS_CONFIGURE= yes USE_GMAKE= yes ALL_TARGET= # empty +post-patch: + @${REINPLACE_CMD} -e "s|SIZE_MAX|UINT_MAX|" ${WRKSRC}/memblock.h + .include <bsd.port.mk> |