#9343: Upgrade PARI to svn snapshot 12577 - a pre-release of PARI 2.4.3.
---------------------------------------------------------------------------------------------------------------------------+
Reporter: was
| Owner: jdemeyer
Type: enhancement
| Status: needs_work
Priority: blocker
| Milestone: sage-4.6
Component: packages
| Keywords:
Author: Robert Bradshaw, John Cremona, Jeroen Demeyer, William Stein,
David Kirkby | Upstream: N/A
Reviewer: Robert Bradshaw, John Cremona, Jeroen Demeyer, William Stein,
David Kirkby, François Bissey, Leif Leonhardy | Merged:
Work_issues:
|
---------------------------------------------------------------------------------------------------------------------------+
Comment(by jdemeyer):
I found out what prevents PARI/GP from compiling on Solaris. The problem
is that {{{/bin/sh}}} from Solaris doesn't know about {{{test -e
<filename>}}}.
So there are two solutions:
'''Solution 1''': In {{{Configure}}}, replace
{{{
#! /bin/sh
}}}
by
{{{
#!/usr/bin/env bash
}}}
'''Solution 2''': In {{{config/Makefile.SH}}}, replace all occurances of
{{{
test -e
}}}
by
{{{
test -f
}}}
Using either of these solutions makes PARI/GP compile.
Since Sage assumes the existence of {{{bash}}}, we might as well apply the
first solution anyway. I will report this upstream.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9343#comment:302>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.