Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Feb 2016 14:05:47 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r407716 - head/net/mpich
Message-ID:  <201602011405.u11E5lC0001444@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602011405.u11E5lC0001444>