<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/c90caca42db75aa3ad28ce0d3808cf671c46324f">c90caca4</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2015-12-05T15:58:03Z</i>
</div>
<pre class='commit-message'>DEBUG now defaults to on</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/b7c90b50ce30eed5e7000914681cd9536343c1d7">b7c90b50</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2015-12-05T15:59:06Z</i>
</div>
<pre class='commit-message'>Merge branch 'master' of gitlab.com:NTPsec/ntpsec</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
pylib/configure.py
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
wscript
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/3dd628b561704e89f16e5d202fd001d13cff0d7c...b7c90b50ce30eed5e7000914681cd9536343c1d7#diff-0'>
<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">@@ -34,7 +34,7 @@ def cmd_configure(ctx):
</span>   if ctx.options.enable_saveconfig:
                ctx.define("SAVECONFIG", 1)
 
<span style="color: #000000;background-color: #ffdddd">-        if ctx.options.enable_debug:
</span><span style="color: #000000;background-color: #ddffdd">+   if not ctx.options.disable_debug:
</span>           ctx.define("DEBUG", 1)
                ctx.env.BISONFLAGS += ["--debug"]
 
<span style="color: #aaaaaa">@@ -485,6 +485,12 @@ def cmd_configure(ctx):
</span>   msg_setting("CFLAGS", " ".join(ctx.env.CFLAGS))
        msg_setting("LDFLAGS", " ".join(ctx.env.LDFLAGS))
        msg_setting("PREFIX", ctx.env.PREFIX)
<span style="color: #000000;background-color: #ffdddd">-        msg_setting("Debug Support", yesno(ctx.options.enable_debug))
</span><span style="color: #000000;background-color: #ddffdd">+   msg_setting("Debug Support", yesno(not ctx.options.disable_debug))
</span>   msg_setting("Refclocks", ", ".join(ctx.env.REFCLOCK_LIST))
        msg_setting("Build Manpages", yesno(ctx.env.BIN_A2X and not ctx.env.DISABLE_MANPAGE))
<span style="color: #000000;background-color: #ddffdd">+
+       if ctx.options.enable_debug:
+               msg("")
+               msg("*** --enable-debug ignored.  (default on now)")
+               msg("")
+
</span></code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/3dd628b561704e89f16e5d202fd001d13cff0d7c...b7c90b50ce30eed5e7000914681cd9536343c1d7#diff-1'>
<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">@@ -39,7 +39,8 @@ def options(ctx):
</span>           OPT_STORE.setdefault(opt, []).append(value)
 
        grp = ctx.add_option_group("NTP configure options")
<span style="color: #000000;background-color: #ffdddd">-        grp.add_option('--enable-debug', action='store_true', default=False, help="Enable debugging code")
</span><span style="color: #000000;background-color: #ddffdd">+   grp.add_option('--enable-debug', action='store_true', default=False, help="(ignored)")
+       grp.add_option('--disable-debug', action='store_true', default=False, help="Disable debugging code")
</span>   grp.add_option('--enable-debug-gdb', action='store_true', default=False, help="Enable GDB debugging symbols")
        grp.add_option('--enable-crypto', action='store_true', default=False, help="Enable OpenSSL.")
        grp.add_option('--disable-droproot', action='store_true', default=False, help="Disable dropping root.")
</code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.com/NTPsec/ntpsec/compare/3dd628b561704e89f16e5d202fd001d13cff0d7c...b7c90b50ce30eed5e7000914681cd9536343c1d7">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>