diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-05-24 19:51:07 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-05-24 19:51:07 +0000 |
commit | aa88b59f9baa932f6b6e11516a799b75b1d65aef (patch) | |
tree | cd1906cebb70bd2f4d338dc43a88f600792aa9e0 /parallel/pvm3/Makefile | |
parent | a94ba4caf9d1ca447fffcc3db10b07e7f5e9b041 (diff) | |
download | pkgsrc-aa88b59f9baa932f6b6e11516a799b75b1d65aef.tar.gz |
- add -DCTIMEISTIMET to all the NetBSD arch definition files. This just
says to use type time_t for ctime(3).
- Fix some format strings for 64 bit systems.
- use '?=' instead of '='when setting the command used for rsh/ssh so the
user can set it in mk.conf (PVM_SSH).
Diffstat (limited to 'parallel/pvm3/Makefile')
-rw-r--r-- | parallel/pvm3/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parallel/pvm3/Makefile b/parallel/pvm3/Makefile index f7e1fad560b..1a1b202ee88 100644 --- a/parallel/pvm3/Makefile +++ b/parallel/pvm3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2001/02/17 17:53:00 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2001/05/24 19:51:07 dmcmahill Exp $ DISTNAME= pvm3.4.3 PKGNAME= pvm-3.4.3 @@ -11,10 +11,10 @@ HOMEPAGE= http://www.epm.ornl.gov/pvm/pvm_home.html COMMENT= Parallel Virtual Machine libraries and environment .if exists(/usr/bin/ssh) -SSH= /usr/bin/ssh +PVM_SSH?= /usr/bin/ssh .else DEPENDS+= {openssh-*,ssh{,6}-1.2.27*}:../../security/ssh -SSH= ${LOCALBASE}/bin/ssh +PVM_SSH?= ${LOCALBASE}/bin/ssh .endif USE_FORTRAN= yes @@ -22,7 +22,7 @@ USE_X11= yes WRKSRC= ${WRKDIR}/pvm3 MAKE_ENV+= PVM_ROOT=${WRKSRC} MAKE_ENV+= PVM_ARCH= -MAKE_ENV+= SSH=${SSH} +MAKE_ENV+= SSH=${PVM_SSH} ALL_TARGET= all install PLIST_SRC= ${WRKDIR}/PLIST-src |