<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-legacy-support.

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/fea10a08147bdadcf5154b69e0352eef930550ec">https://github.com/macports/macports-legacy-support/commit/fea10a08147bdadcf5154b69e0352eef930550ec</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 fea10a0  test: use -std=c99
</span>fea10a0 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit fea10a08147bdadcf5154b69e0352eef930550ec
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Mon Sep 14 10:25:27 2020 -0700

<span style='display:block; white-space:pre;color:#404040;'>    test: use -std=c99
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    one of the new test programs requires c99 to build
</span><span style='display:block; white-space:pre;color:#404040;'>    and the older gcc versions don't default to that
</span>---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/Makefile b/Makefile
</span><span style='display:block; white-space:pre;color:#808080;'>index 612c277..2d8da8c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -227,7 +227,7 @@ $(SLIBOBJS): %$(SLIBOBJEXT): %.c $(ALLHEADERS)
</span>   $(CC) -c -I$(SRCINCDIR) $(CFLAGS) $(SLIBCFLAGS) $< -o $@
 
 $(TESTOBJS_C): %.o: %.c $(ALLHEADERS)
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        $(CC) -c -I$(SRCINCDIR) $(CFLAGS) $< -o $@
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+   $(CC) -c -std=c99 -I$(SRCINCDIR) $(CFLAGS) $< -o $@
</span> 
 $(TESTOBJS_CPP): %.o: %.cpp $(ALLHEADERS)
        $(CXX) -c -I$(SRCINCDIR) $(CXXFLAGS) $< -o $@
</pre><pre style='margin:0'>

</pre>