<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>
Amar Takhar 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/ae20d01de22d0d39a02e80645cd25b4f2ed45de9">ae20d01d</a></strong>
<div>
<span>by Amar Takhar</span>
<i>at 2016-02-11T16:36:18-05:00</i>
</div>
<pre class='commit-message'>Add a note about libevent on some systems.

On NetBSD there is no event_core.  event is pulled in by event_pthread so
event_core is not detected however it builds anyway since the link test runs.

This is by design as a 'fall through' to detect strange setups.  Still not sure
how to handle this case yet for now users will get a harmless warning.</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/5495e84d697776803d24cebef51494f0638ce942">5495e84d</a></strong>
<div>
<span>by Amar Takhar</span>
<i>at 2016-02-11T16:36:18-05:00</i>
</div>
<pre class='commit-message'>Force unit test runner to off on cross compiles.</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/ca16e603be5af251f939fd7a469155075cf96290">ca16e603</a></strong>
<div>
<span>by Amar Takhar</span>
<i>at 2016-02-11T16:36:18-05:00</i>
</div>
<pre class='commit-message'>All arguments and commands should be lists.</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/4bfbfae2aed8e4b6545d92d5f8015bdf9addf23c">4bfbfae2</a></strong>
<div>
<span>by Amar Takhar</span>
<i>at 2016-02-11T21:25:07-05:00</i>
</div>
<pre class='commit-message'>Remove define for OPENSSL_VERSION_TEXT.

I checked on several different operating systems OpenSSL provides this on its
own it seems.</pre>
</li>
</ul>
<h4>3 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
pylib/check_libevent2.py
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
pylib/configure.py
</a>
</li>
<li class='file-stats'>
<a href='#diff-2'>
wscript
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/3686dcf6c0ca36234b9afa733ac5382eb92b39e2...4bfbfae2aed8e4b6545d92d5f8015bdf9addf23c#diff-0'>
<strong>
pylib/check_libevent2.py
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/pylib/check_libevent2.py
</span><span style="color: #000000;background-color: #ddffdd">+++ b/pylib/check_libevent2.py
</span><span style="color: #aaaaaa">@@ -18,6 +18,9 @@ int main(void) {
</span> def check_libevent2_header(ctx):
        ctx.check(header_name="event2/event.h", includes=ctx.env.PLATFORM_INCLUDES, mandatory = False)
        ctx.check(header_name="event2/thread.h", includes=ctx.env.PLATFORM_INCLUDES, mandatory = False)
<span style="color: #000000;background-color: #ddffdd">+
+       # XXX: On some systems (NetBSD) event_core doesn't exist.  libevent is pulled in with event_pthreads.
+       #      This results in a warning from check_sanity()
</span>   ctx.check(feature="c cshlib", lib="event_core", libpath=ctx.env.PLATFORM_LIBPATH, uselib_store="LIBEVENT_CORE", mandatory = False)
        ctx.check(feature="c cshlib", lib="event_pthreads", libpath=ctx.env.PLATFORM_LIBPATH, uselib_store="LIBEVENT_PTHREADS", use="LIBEVENT_CORE", mandatory = False)
 
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/3686dcf6c0ca36234b9afa733ac5382eb92b39e2...4bfbfae2aed8e4b6545d92d5f8015bdf9addf23c#diff-1'>
<strong>
pylib/configure.py
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/pylib/configure.py
</span><span style="color: #000000;background-color: #ddffdd">+++ b/pylib/configure.py
</span><span style="color: #aaaaaa">@@ -112,8 +112,8 @@ def cmd_configure(ctx):
</span> #         ctx.get_cc_version(ctx.env.CC, gcc=True)
                ctx.end_msg(ctx.options.cross_compiler)
 
<span style="color: #000000;background-color: #ffdddd">-                ctx.env.CC = ctx.options.cross_compiler
-               ctx.env.LINK_CC = ctx.options.cross_compiler
</span><span style="color: #000000;background-color: #ddffdd">+           ctx.env.CC = [ctx.options.cross_compiler]
+               ctx.env.LINK_CC = [ctx.options.cross_compiler]
</span> 
                if ctx.env["CROSS-CFLAGS"]:
                        ctx.env.CFLAGS = opt_map["CROSS-CFLAGS"]
<span style="color: #aaaaaa">@@ -231,7 +231,7 @@ def cmd_configure(ctx):
</span>   ctx.define("DFLT_RLIMIT_STACK", 50)
        ctx.define("DFLT_RLIMIT_MEMLOCK", 32)
 
<span style="color: #000000;background-color: #ffdddd">-        ctx.define("OPENSSL_VERSION_TEXT", "#XXX: Fixme")
</span><span style="color: #000000;background-color: #ddffdd">+#  ctx.define("OPENSSL_VERSION_TEXT", "#XXX: Fixme")
</span> 
        probe_multicast(ctx, "MCAST", "Checking for multicast capability")
 
</code></pre>

<br>
</li>
<li id='diff-2'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/3686dcf6c0ca36234b9afa733ac5382eb92b39e2...4bfbfae2aed8e4b6545d92d5f8015bdf9addf23c#diff-2'>
<strong>
wscript
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/wscript
</span><span style="color: #000000;background-color: #ddffdd">+++ b/wscript
</span><span style="color: #aaaaaa">@@ -277,3 +277,5 @@ def build(ctx):
</span>           ctx.add_post_fun(waf_unit_test.summary)
        else:
                pprint("YELLOW", "Unit test runner skipped on a cross-compiled build.")
<span style="color: #000000;background-color: #ddffdd">+                from waflib import Options
+               Options.options.no_tests = True
</span></code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.com/NTPsec/ntpsec/compare/3686dcf6c0ca36234b9afa733ac5382eb92b39e2...4bfbfae2aed8e4b6545d92d5f8015bdf9addf23c">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>