From 77f5eeba2aaf8c80576dd30f564c46a07035e7de Mon Sep 17 00:00:00 2001 From: kuriyama Date: Sun, 2 Feb 2003 08:23:51 +0000 Subject: Unbreak on sparc64, also will fix ia64. Replace obrien's fix with this. This will cover where sizeof(size_t)==8 situation. Build tested on: panther and beast --- textproc/jade/Makefile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index db64b23b5400..d1ceef044768 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -27,13 +27,8 @@ post-extract: .include -.if ${ARCH} == "alpha" -USE_REINPLACE= yes -# This is to deal with the broken assumption that Vector::size_type, -# String::size_type is size_t as mentioned in doc/ideas.htm. At least -# I believe this is what is preventing jade from linking on the Alpha. -post-patch: - ${REINPLACE_CMD} -e 's///g' `find ${WRKSRC} -type f` +.if ${ARCH} == "alpha" || ${ARCH} == "sparc64" || ${ARCH} == "ia64" +CXXFLAGS:= ${CXXFLAGS} -DSIZEOF_SIZE_T=8 .endif pre-install: -- cgit