diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2005-10-30 17:35:58 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2005-10-30 17:35:58 +0000 |
commit | ab2987c0f615e23354ecda823a9739fa7c3012e6 (patch) | |
tree | 8bbfee591114941e1e15ce098763c26149f727ed /net/openmpi | |
parent | 739248ca41e52e9d237e9a9fb597249448fc2f53 (diff) |
Notes
Diffstat (limited to 'net/openmpi')
-rw-r--r-- | net/openmpi/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/net/openmpi/Makefile b/net/openmpi/Makefile index 6038664c39f5..592caf34c02c 100644 --- a/net/openmpi/Makefile +++ b/net/openmpi/Makefile @@ -39,6 +39,16 @@ PKGMESSAGE= ${WRKDIR}/pkg-message CONFIGURE_ARGS+= --prefix=${PREFIX}/${MPIDIR} ${CONFIGURE_TARGET} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 503000 +.if !exists(/usr/include/stdint.h) +BROKEN= "requires stdint.h" +.else +IGNORE= is not supported for FreeBSD < 5.3 +.endif +.endif + post-install: @${CAT} ${PKGMESSAGE} @@ -62,4 +72,4 @@ build-plist: Makefile ${ECHO} "@unexec rmdir %D/%%MPIBASE%% 2>/dev/null || true" \ >> pkg-plist -.include <bsd.port.mk> +.include <bsd.port.post.mk> |