From 55ebea4bb0909e936ad89c17abfeb3549937aefa Mon Sep 17 00:00:00 2001 From: Xufeng Zhang Date: Thu, 14 Aug 2014 11:14:45 +0800 Subject: ntp: Disable debugging by default 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 Signed-off-by: Martin Jansa --- .../ntp/files/ntp-disable-debugging.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch (limited to 'meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch') diff --git a/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch b/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch new file mode 100644 index 0000000000..242276edb0 --- /dev/null +++ b/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch @@ -0,0 +1,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 + +--- +--- 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) -- cgit v1.2.3-54-g00ecf