1275970Scydnl ######################################################################
2275970Scydnl Common m4sh code for debug
3275970ScyAC_DEFUN([NTP_DEBUG], [
4275970Scy
5275970ScyAC_MSG_CHECKING([if we're including debugging code])
6275970ScyAC_ARG_ENABLE(
7275970Scy    [debugging],
8275970Scy    [AS_HELP_STRING(
9275970Scy        [--enable-debugging],
10275970Scy        [+ include ntpd debugging code]
11275970Scy    )],
12275970Scy    [ntp_ok=$enableval],
13275970Scy    [ntp_ok=yes]
14275970Scy)
15275970Scycase "$ntp_ok" in
16275970Scy yes)
17275970Scy    AC_DEFINE([DEBUG], [1], [Enable debugging code?])
18275970Scyesac
19275970ScyAC_MSG_RESULT([$ntp_ok])
20275970Scy
21275970Scy])dnl
22275970Scydnl ======================================================================
23