svn commit: r407716 - head/net/mpich

Tijl Coosemans tijl at FreeBSD.org
Mon Feb 1 14:05:49 UTC 2016


Author: tijl
Date: Mon Feb  1 14:05:47 2016
New Revision: 407716
URL: https://svnweb.freebsd.org/changeset/ports/407716

Log:
  The configure variable MPICH_LDFLAGS is no longer supported.  There is a
  separate variable for each compiler wrapper now.
  
  PR:		206655

Modified:
  head/net/mpich/Makefile

Modified: head/net/mpich/Makefile
==============================================================================
--- head/net/mpich/Makefile	Mon Feb  1 13:30:00 2016	(r407715)
+++ head/net/mpich/Makefile	Mon Feb  1 14:05:47 2016	(r407716)
@@ -2,6 +2,7 @@
 
 PORTNAME=	mpich
 PORTVERSION=	3.2
+PORTREVISION=	1
 CATEGORIES=	net parallel
 MASTER_SITES=	http://www.mpich.org/static/downloads/${DISTVERSION}/
 
@@ -32,8 +33,12 @@ OPTIONS_SUB=		yes
 FORTRAN_USES=			fortran
 FORTRAN_CONFIGURE_ENABLE=	fortran
 FORTRAN_CONFIGURE_ON=		\
-	MPICH_LDFLAGS="-Wl,-rpath=${LOCALBASE}/lib/gcc${_GCC_VER} \
-		       -L${LOCALBASE}/lib/gcc${_GCC_VER} -B${LOCALBASE}/bin"
+	MPICH_MPICC_LDFLAGS="${MPICH_LDFLAGS}" \
+	MPICH_MPICXX_LDFLAGS="${MPICH_LDFLAGS}" \
+	MPICH_MPIF77_LDFLAGS="${MPICH_LDFLAGS}" \
+	MPICH_MPIFORT_LDFLAGS="${MPICH_LDFLAGS}"
+MPICH_LDFLAGS=	-Wl,-rpath=${LOCALBASE}/lib/gcc${_GCC_VER} \
+		-L${LOCALBASE}/lib/gcc${_GCC_VER} -B${LOCALBASE}/bin
 
 PM_DESC=	Process managers
 GFORKER_DESC=	Simple local process manager


More information about the svn-ports-all mailing list