<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/32dd5e6b38dc0d6a1b541d835ab0740579c68462">32dd5e6b</a></strong>
<div>
<span>by Amar Takhar</span>
<i>at 2015-11-23T20:09:02Z</i>
</div>
<pre class='commit-message'>Clear up wording on option and group naming.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
wscript
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.com/NTPsec/ntpsec/commit/32dd5e6b38dc0d6a1b541d835ab0740579c68462#diff-0'>
<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">@@ -37,26 +37,26 @@ def options(ctx):
</span>   def callback_flags(option, opt, value, parser):
                OPT_STORE.setdefault(opt, []).append(value)
 
<span style="color: #000000;background-color: #ffdddd">-        grp = ctx.add_option_group("NTP build options")
</span><span style="color: #000000;background-color: #ddffdd">+   grp = ctx.add_option_group("NTP configure options")
</span>   grp.add_option('--enable-debug', action='store_true', default=False, help="Enable debugging code")
        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.")
        grp.add_option('--disable-dns-lookup', action='store_true', default=False, help="Disable DNS lookups.")
<span style="color: #000000;background-color: #ffdddd">-        grp.add_option('--disable-dns-retry', action='store_true', default=False, help="Disable DNS lookups.")
-       grp.add_option('--disable-mdns-registration', action='store_true', default=False, help="Disable DNS lookups.")
</span><span style="color: #000000;background-color: #ddffdd">+   grp.add_option('--disable-dns-retry', action='store_true', default=False, help="Disable retrying DNS lookups.")
+       grp.add_option('--disable-mdns-registration', action='store_true', default=False, help="Disable MDNS registration.")
</span> 
 
<span style="color: #000000;background-color: #ffdddd">-        grp = ctx.add_option_group("NTP features")
</span><span style="color: #000000;background-color: #ddffdd">+   grp = ctx.add_option_group("NTP configure features")
</span>   grp.add_option('--enable-leap-smear', action='store_true', default=False, help="Enable Leap Smearing.")
        grp.add_option('--enable-mssntp', action='store_true', default=False, help="Enable Samba MSS NTP support.")
        grp.add_option('--enable-lockclock', action='store_true', default=False, help="Enable NIST lockclock scheme.")
 
<span style="color: #000000;background-color: #ffdddd">-        grp = ctx.add_option_group("Refclock options")
</span><span style="color: #000000;background-color: #ddffdd">+   grp = ctx.add_option_group("Refclock configure options")
</span>   grp.add_option('--refclock', dest='refclocks', help="Comma-separated list of Refclock IDs to build (or \"all\")", type='string')
        grp.add_option('--list', action='store_true', default=False, help="List available Refclocks")
 
<span style="color: #000000;background-color: #ffdddd">-        grp = ctx.add_option_group("NTP developer options")
</span><span style="color: #000000;background-color: #ddffdd">+   grp = ctx.add_option_group("NTP developer configure options")
</span>   grp.add_option('--enable-saveconfig', action='store_true', help="Enable configuration saving on exit.")
        grp.add_option('--build-version-tag', type='string', help="Append a tag to the version string.")
        grp.add_option('--cflags', type='string', action="callback", callback=callback_flags, help="Users should use CFLAGS in their environment.")
<span style="color: #aaaaaa">@@ -65,7 +65,7 @@ def options(ctx):
</span>   grp.add_option('--fortify-flags', type='string', action='store', help="Fortify flags.")
        grp.add_option('--check', action='store_true', default=False, help="Run tests")
 
<span style="color: #000000;background-color: #ffdddd">-        grp = ctx.add_option_group("NTP documentation options")
</span><span style="color: #000000;background-color: #ddffdd">+   grp = ctx.add_option_group("NTP documentation configure options")
</span>   grp.add_option('--enable-doc', action='store_true', default=False, help="Build NTP documentation")
        grp.add_option('--enable-doc-only', action='store_true', default=False, help="Only build NTP documentation")
        grp.add_option('--enable-a2x-xmllint', action='store_true', default=False, help="Build NTP documentation with a2x XML lint")
</code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.com/NTPsec/ntpsec/commit/32dd5e6b38dc0d6a1b541d835ab0740579c68462">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.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":"https://gitlab.com/NTPsec/ntpsec/commit/32dd5e6b38dc0d6a1b541d835ab0740579c68462"}}</script>
</p>
</div>
</body>
</html>