<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/e1fad7bc5c2784718bf7182fa0b761d32a6e7610">https://github.com/macports/macports-ports/commit/e1fad7bc5c2784718bf7182fa0b761d32a6e7610</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit e1fad7bc5c2784718bf7182fa0b761d32a6e7610
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Jan 5 09:05:14 2022 -0600

<span style='display:block; white-space:pre;color:#404040;'>    wolfssl: Use the requested number of build jobs
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    wolfssl's build system defaults to using a number of jobs that is 1 more
</span><span style='display:block; white-space:pre;color:#404040;'>    than the number of CPUs. Tell the build system not to do that ("disable
</span><span style='display:block; white-space:pre;color:#404040;'>    jobserver") so that the number of jobs the user has requested in
</span><span style='display:block; white-space:pre;color:#404040;'>    macports.conf is used instead.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    MacPorts doesn't use a -j flag to run the test phase in parallel but
</span><span style='display:block; white-space:pre;color:#404040;'>    this build system normally does, so continue to do that since this build
</span><span style='display:block; white-space:pre;color:#404040;'>    system has been designed to accommodate it.
</span>---
 devel/wolfssl/Portfile | 2 ++
 1 file changed, 2 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/wolfssl/Portfile b/devel/wolfssl/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 28d09f1cfbf..b37d2d3ab79 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/wolfssl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/wolfssl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -29,6 +29,7 @@ checksums           rmd160  dc0e54123479ad197ba700eb5cb7a00bfbc35007 \
</span>                     size    12558116
 
 configure.args      --enable-distro \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --disable-jobserver \
</span>                     --disable-silent-rules
 
 variant debug description {Enable wolfSSL debugging support} {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -59,3 +60,4 @@ livecheck.regex "${name}-((?!.*${name}.*|\\${extract.suffix}).*)\\${extract.suff
</span> test.run    yes
 test.env    RANDFILE=/tmp/wolfssl-unittest-rnd DYLD_LIBRARY_PATH=${worksrcpath}/src/.libs
 test.target check
<span style='display:block; white-space:pre;background:#e0ffe0;'>+test.args   -j${build.jobs}
</span></pre><pre style='margin:0'>

</pre>