<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<div class='content'>
<h3>
Hal Murray pushed to branch master
at <a href="https://gitlab.com/NTPsec/ntpsec">NTPsec / ntpsec</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/22d615b1421daf624e212e063b4c0767da8ef56a">22d615b1</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2015-12-17T23:26:23Z</i>
</div>
<pre class='commit-message'>Squash a few more obscure warnings.</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/bb8f025c94d08d204ae1f719e555f46a59074be7">bb8f025c</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2015-12-17T23:28:18Z</i>
</div>
<pre class='commit-message'>Updates, mostly for NetBSD</pre>
</li>
</ul>
<h4>3 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
INSTALL
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
devel/STATUS
</a>
</li>
<li class='file-stats'>
<a href='#diff-2'>
ntpd/ntp_intercept.c
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/876473a046f28c6c15ad9e4320fd9211aab88f82...bb8f025c94d08d204ae1f719e555f46a59074be7#diff-0'>
<strong>
INSTALL
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/INSTALL
</span><span style="color: #000000;background-color: #ddffdd">+++ b/INSTALL
</span><span style="color: #aaaaaa">@@ -24,6 +24,11 @@ libevent 2.x::
</span>    Fedora: libevent and libevent-devel
    Debian: libevent and libevent-dev
 
<span style="color: #000000;background-color: #ddffdd">+   NetBSD: As installed, libevent is broken.  It links, but doesn't run.
+     Here is a workaround:
+      # cd /usr/lib
+      # ln -s /usr/pkg/lib/libevent_core-2.0.so.5
+
</span> libcap::
    Optional, required for -u user:group on Linux
    Fedora: libcap and libcap-devel
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/876473a046f28c6c15ad9e4320fd9211aab88f82...bb8f025c94d08d204ae1f719e555f46a59074be7#diff-1'>
<strong>
devel/STATUS
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/devel/STATUS
</span><span style="color: #000000;background-color: #ddffdd">+++ b/devel/STATUS
</span><span style="color: #aaaaaa">@@ -1,8 +1,12 @@
</span><span style="color: #000000;background-color: #ffdddd">-Last update, 2015 Dec 01
</span><span style="color: #000000;background-color: #ddffdd">+Last update, 2015 Dec 17
</span> 
 It builds on the following systems.  In general there should be no warnings,
<span style="color: #000000;background-color: #ffdddd">-but as of the above date, there are a few that haven't been stamped out yet.
</span><span style="color: #000000;background-color: #ddffdd">+but as of the above date, there is one we can't easily work around.  Some
+compilers will complain about
+  comparison between signed and unsigned integer expressions
+  at ntpd/ntp_io.c:4638
</span> 
<span style="color: #000000;background-color: #ddffdd">+It's known to build cleanly on:
</span>   Fedora 22 and 23 on i686 and x86_64
   Debian wheezy and jessie on amd64
   Ubuntu 14.04.3 LTS and 15.04 on x86_64
<span style="color: #aaaaaa">@@ -10,23 +14,8 @@ but as of the above date, there are a few that haven't been stamped out yet.
</span>   Debian wheezy on BeagleBone Black ARM v7
 
   FreeBSD 9.3 on i386 and 10.1 on amd64
<span style="color: #000000;background-color: #ffdddd">-
-
-NetBSD needs more work.  The basic ntpd builds and runs.
</span>   NetBSD 6.1.5 and 7.0 on x86_64
<span style="color: #000000;background-color: #ffdddd">-
-Audio doesn't work.  That is used by
-  6     IRIG Audio Decoder
-  7     Radio CHU Audio Demodulator/Decoder
-  util/tg2
-
-Loading libevent2 doesn't work.  That breaks
-  ntpdig and one of the tests
-Both build ok but don't load at run time.
-
-I haven't found libevent2 for NetBSD 6.1 so ntpdig doesn't build.
-
-
</span><span style="color: #000000;background-color: #ddffdd">+    (see the comment about libevent in ../INSTALL)
</span> 
 
 The basic parts of ntpd run on all of the above systems.
</code></pre>

<br>
</li>
<li id='diff-2'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/876473a046f28c6c15ad9e4320fd9211aab88f82...bb8f025c94d08d204ae1f719e555f46a59074be7#diff-2'>
<strong>
ntpd/ntp_intercept.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/ntpd/ntp_intercept.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/ntpd/ntp_intercept.c
</span><span style="color: #aaaaaa">@@ -182,9 +182,9 @@ void intercept_argparse(int *argc, char ***argv)
</span>   get_operation("startup ");
        *argc = 0;
        for (cp = strdup(linebuf + 9); *cp; cp++) {
<span style="color: #000000;background-color: #ffdddd">-            if (was_space && !isspace(*cp))
</span><span style="color: #000000;background-color: #ddffdd">+       if (was_space && !isspace((int)*cp))
</span>           (*argv)[(*argc)++] = cp;
<span style="color: #000000;background-color: #ffdddd">-            was_space = isspace(*cp);
</span><span style="color: #000000;background-color: #ddffdd">+       was_space = isspace((int)*cp);
</span>       if (was_space)
                *cp = '\0';
        }
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://gitlab.com/NTPsec/ntpsec/compare/876473a046f28c6c15ad9e4320fd9211aab88f82...bb8f025c94d08d204ae1f719e555f46a59074be7">View it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.com.
If you'd like to receive fewer emails, you can adjust your notification settings.

</p>
</div>
</body>
</html>