<pre style='margin:0'>
Mihai Moldovan (Ionic) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/caa1ea9478853156558eb3ba706eb5bf6e6612ee">https://github.com/macports/macports-base/commit/caa1ea9478853156558eb3ba706eb5bf6e6612ee</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 caa1ea9  Use sig_atomic_t instead of int for signal handler
</span>caa1ea9 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit caa1ea9478853156558eb3ba706eb5bf6e6612ee
</span>Author: Eitan Adler <lists@eitanadler.com>
AuthorDate: Sat Nov 4 23:38:41 2017 -0700

<span style='display:block; white-space:pre;color:#404040;'>    Use sig_atomic_t instead of int for signal handler
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Strictly speaking sig_atomic_t does not have to be `int` though any
</span><span style='display:block; white-space:pre;color:#404040;'>    system this code targets is unlikely to be affected.
</span>---
 src/pextlib1.0/system.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/pextlib1.0/system.c b/src/pextlib1.0/system.c
</span><span style='display:block; white-space:pre;color:#808080;'>index 22b4bb0..1c48cce 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/pextlib1.0/system.c
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/pextlib1.0/system.c
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -112,7 +112,7 @@ static int check_sandboxing(Tcl_Interp *interp, char **sandbox_exec_path, char *
</span>     return 1;
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static volatile int interrupted_by = 0;
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static volatile sig_atomic_t interrupted_by = 0;
</span> static void handle_sigint(int s) {
     interrupted_by = s;
 }
</pre><pre style='margin:0'>

</pre>