aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch
blob: 242276edb02f8544fb909acb1fc87b953013c749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
set ntp_ok to no if ntp debugging is not enabled.

Upstream-status: Pending

There is a problem in configure.ac file that whether or not
'--enable-debugging' is specified in configure cmdline, debugging
is always enabled.
We should disable ntp debugging by default.

Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>

---
--- a/configure.ac
+++ b/configure.ac
@@ -2458,7 +2458,7 @@
         [+ include ntpd debugging code]
     )],
     [ntp_ok=$enableval],
-    [ntp_ok=yes]
+    [ntp_ok=no]
 )
 case "$ntp_ok" in
  yes)