<pre style='margin:0'>
Renee Otten (reneeotten) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/5e3eb2d838b09cb9a29a251ca3a5fbd63dbbbdb0">https://github.com/macports/macports-ports/commit/5e3eb2d838b09cb9a29a251ca3a5fbd63dbbbdb0</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 5e3eb2d838b fricas: fix build on 32bit systems
</span>5e3eb2d838b is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5e3eb2d838b09cb9a29a251ca3a5fbd63dbbbdb0
</span>Author: Kirill A. Korinsky <kirill@korins.ky>
AuthorDate: Fri Sep 1 21:38:42 2023 +0200

<span style='display:block; white-space:pre;color:#404040;'>    fricas: fix build on 32bit systems
</span>---
 math/fricas/Portfile | 4 ++++
 1 file changed, 4 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/math/fricas/Portfile b/math/fricas/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 9a68b07052a..a607ef09bdf 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/math/fricas/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/math/fricas/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -56,6 +56,10 @@ variant x11 description {Enable X11 support.\
</span> universal_variant       no
 
 set sbcl_script         {sbcl --control-stack-size 512 --dynamic-space-size 6000}
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${build_arch} in [list ppc i386]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # 32bit system can't address large dynamic space, 1Gb is safe upper limit
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set sbcl_script     {sbcl --control-stack-size 512 --dynamic-space-size 1024}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> set orig_sbcl_script    $sbcl_script
 
 # emulate behavior from la.lisp from hasbcl-XXX.tar
</pre><pre style='margin:0'>

</pre>