Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Nov 2013 01:38:47 +0000 (UTC)
From:      Brendan Fabeny <bf@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r333636 - head/math/libmissing
Message-ID:  <201311130138.rAD1cloI096876@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bf
Date: Wed Nov 13 01:38:47 2013
New Revision: 333636
URL: http://svnweb.freebsd.org/changeset/ports/333636

Log:
  Ensure that libmissing functions can replace imprecise base system variants -- thanks
  to kib for implementing the necessary rtld support

Modified:
  head/math/libmissing/Makefile

Modified: head/math/libmissing/Makefile
==============================================================================
--- head/math/libmissing/Makefile	Wed Nov 13 01:30:11 2013	(r333635)
+++ head/math/libmissing/Makefile	Wed Nov 13 01:38:47 2013	(r333636)
@@ -2,7 +2,7 @@
 
 PORTNAME=	libmissing
 DISTVERSION=	20130815
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	math
 MASTER_SITES=	LOCAL/bf
 
@@ -35,6 +35,10 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
+.if ${OSVERSION} > 1000054
+LDFLAGS+=	-Wl,-z,interpose
+.endif
+
 .if ${PORT_OPTIONS:MPROFILE} || defined(WITH_PROFILE)
 .if defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)
 IGNORE =	you have defined WITH_PROFILE, but have also defined\



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