Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Jun 2013 03:28:13 +0000 (UTC)
From:      Stephen Montgomery-Smith <stephen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321937 - in head/math/sage: . files
Message-ID:  <201306280328.r5S3SD56090670@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: stephen
Date: Fri Jun 28 03:28:12 2013
New Revision: 321937
URL: http://svnweb.freebsd.org/changeset/ports/321937

Log:
  - Make work with binutils-2.23.2 by setting --copy-dt-needed-entries for ld.
    See "Changes in 2.22" in http://sourceware.org/cgi-bin/cvsweb.cgi/~checkout~/src/ld/NEWS?rev=1.131.2.1&content-type=text/plain&cvsroot=src&only_with_tag=binutils-binutils-2_23_2
  - Bump portrevision.
  
  Reported by:	Robert Burmeister <Robert.Burmeister@UToledo.edu>

Modified:
  head/math/sage/Makefile
  head/math/sage/files/gcc.in

Modified: head/math/sage/Makefile
==============================================================================
--- head/math/sage/Makefile	Fri Jun 28 03:08:46 2013	(r321936)
+++ head/math/sage/Makefile	Fri Jun 28 03:28:12 2013	(r321937)
@@ -3,6 +3,7 @@
 
 PORTNAME=	sage
 PORTVERSION=	5.10
+PORTREVISION=	1
 CATEGORIES=	math
 MASTER_SITES=	http://boxen.math.washington.edu/home/sagemath/sage-mirror/src/ \
 		http://mirrors.xmission.com/sage/src/ \

Modified: head/math/sage/files/gcc.in
==============================================================================
--- head/math/sage/files/gcc.in	Fri Jun 28 03:08:46 2013	(r321936)
+++ head/math/sage/files/gcc.in	Fri Jun 28 03:28:12 2013	(r321937)
@@ -10,5 +10,5 @@
 if [ "x$*" = "x-v" ]; then
   exec %%CC%% "$@"
 else
-  exec %%CC%% %%LDFLAGS%% "$@"
+  exec %%CC%% %%LDFLAGS%% -Wl,--copy-dt-needed-entries "$@"
 fi



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