diff options
author | shaun <shaun@FreeBSD.org> | 2006-12-11 07:43:44 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-12-11 07:43:44 +0800 |
commit | f44c8a5ac7e649139443e5060d20121ede8ee8be (patch) | |
tree | 72492e614110430acc1b9dcfa0b80ade0c052529 /net | |
parent | 2b1c2184399b1588fa65fbf5250bd88c3fc0aa3a (diff) | |
download | freebsd-ports-gnome-f44c8a5ac7e649139443e5060d20121ede8ee8be.tar.gz freebsd-ports-gnome-f44c8a5ac7e649139443e5060d20121ede8ee8be.tar.zst freebsd-ports-gnome-f44c8a5ac7e649139443e5060d20121ede8ee8be.zip |
Fix build on ia64.
PR: ports/106546
Submitted by: shaun (me)
Approved by: Artem Naluzhny <tut@nhamon.com.ua> (maintainer)
Diffstat (limited to 'net')
-rw-r--r-- | net/sipp/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/sipp/Makefile b/net/sipp/Makefile index 50d86e9a5174..6b3e5dab38b2 100644 --- a/net/sipp/Makefile +++ b/net/sipp/Makefile @@ -22,14 +22,16 @@ MAKE_ENV+= CPP="${CXX}" CPPFLAGS="${CXXFLAGS}" CCLINK="${CXX}" .include <bsd.port.pre.mk> -.if ${ARCH} == "ia64" -BROKEN= Does not compile - patch needed by someone who can test it -.endif - .if !defined(WITHOUT_DIGEST_AUTH) ALL_TARGET=ossl .endif +post-patch: +.if ${ARCH} == "ia64" + @${REINPLACE_CMD} -e 's/^\(MFLAGS_ia64=\)\+DD64$$/\1/' \ + ${WRKSRC}/Makefile +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${FILESDIR}/sipp.1 ${PREFIX}/man/man1 |