svn commit: r321937 - in head/math/sage: . files
Stephen Montgomery-Smith
stephen at FreeBSD.org
Fri Jun 28 03:28:13 UTC 2013
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 at 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
More information about the svn-ports-all
mailing list