<pre style='margin:0'>
Christopher Nielsen (mascguy) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/adf19b391756f2a7f446116c90ab6f6e8ecc51e6">https://github.com/macports/macports-ports/commit/adf19b391756f2a7f446116c90ab6f6e8ecc51e6</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 adf19b39175 popt: eliminate C11 requirement; notate broken tests
</span>adf19b39175 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit adf19b391756f2a7f446116c90ab6f6e8ecc51e6
</span>Author: Christopher Nielsen <mascguy@github.com>
AuthorDate: Sat Jul 31 13:42:11 2021 -0400

<span style='display:block; white-space:pre;color:#404040;'>    popt: eliminate C11 requirement; notate broken tests
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Allows port to be built with older compilers, such as apple-gcc42 on MacOS 10.4.
</span><span style='display:block; white-space:pre;color:#404040;'>    Note that tests fail regardless whether compiled with C11.
</span>---
 devel/popt/Portfile | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/popt/Portfile b/devel/popt/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index bc528c664cb..97a89551884 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/popt/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/popt/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,18 +4,20 @@ PortSystem          1.0
</span> 
 name                popt
 version             1.18
<span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> categories          devel
<span style='display:block; white-space:pre;background:#e0ffe0;'>+platforms           darwin freebsd
</span> license             X11
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> maintainers         nomaintainer
<span style='display:block; white-space:pre;background:#ffe0e0;'>-description         A getopt(3) like library with a number of enhancements
</span> 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+description         A getopt(3) like library with a number of enhancements
</span> long_description    popt is a command line parsing library. It contains a number of \
                     enhancements over getopt(3), including being fully reentrant, allowing users to \
                     alias command line arguments, providing convience functions for parsing strings \
                     into argv[] style arrays and popt can parse arbitrary argv[] style arrays.
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-platforms           darwin freebsd
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> # http://rpm5.org/ no longer resolves
 # use substitute homepage and debian for master_sites
 homepage            https://www.openhub.net/p/${name}/
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -27,8 +29,9 @@ worksrcdir          ${name}-${version}
</span> depends_lib         port:gettext \
                     port:libiconv
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# NOTE: No longer necessary, as of 2021-07-31.
</span> # needs C11 for alignof(x)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-compiler.c_standard 2011
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#compiler.c_standard 2011
</span> 
 post-destroot {
     if {[file exists ${destroot}${prefix}/share/locale/locale.alias]} {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -45,6 +48,7 @@ post-destroot {
</span>         ${destroot}${docdir}
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# NOTE: Tests broken, as of 2021-07-31. (Regardless whether compiled with C11 or not.)
</span> test.run            yes
 test.target         check
 
</pre><pre style='margin:0'>

</pre>