name = debug-level;
value = d;
max = NOLIMIT;
+ ifdef = DEBUG;
nopreset;
descrip = "Increase output debug message level";
doc = <<- _EndOfDoc_
name = set-debug-level;
value = D;
max = NOLIMIT;
+ ifdef = DEBUG;
descrip = "Set the output debug message level";
arg-type = string;
flag-code = 'DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );';
*
* DO NOT EDIT THIS FILE (ntpd-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:03:36 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:35 AM EDT
* From the definitions ntpd-opts.def
* and the template file options
*/
/*
* Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zDebug_LevelText[] =
"Increase output debug message level";
tSCC zDebug_Level_NAME[] = "DEBUG_LEVEL";
tSCC zDebug_Level_Name[] = "debug-level";
#define DEBUG_LEVEL_FLAGS (OPTST_DISABLED)
+#else /* disable Debug_Level */
+#define VALUE_OPT_DEBUG_LEVEL NO_EQUIVALENT
+#define DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zDebug_LevelText NULL
+#define zDebug_Level_NAME NULL
+#define zDebug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Set_Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zSet_Debug_LevelText[] =
"Set the output debug message level";
tSCC zSet_Debug_Level_NAME[] = "SET_DEBUG_LEVEL";
#define SET_DEBUG_LEVEL_FLAGS (OPTST_DISABLED \
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
+#else /* disable Set_Debug_Level */
+#define VALUE_OPT_SET_DEBUG_LEVEL NO_EQUIVALENT
+#define SET_DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zSet_Debug_LevelText NULL
+#define zSet_Debug_Level_NAME NULL
+#define zSet_Debug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Driftfile option description:
*/
/*
* Declare option callback procedures
*/
+#ifdef DEBUG
+ static tOptProc doOptSet_Debug_Level;
+#else /* not DEBUG */
+# define doOptSet_Debug_Level NULL
+#endif /* def/not DEBUG */
#if defined(TEST_NTPD_OPTS)
/*
* Under test, omit argument processing, or call optionStackArg,
extern tOptProc
optionNumericVal, optionPagedUsage, optionPrintVersion, optionStackArg;
static tOptProc
- doOptSet_Debug_Level, doUsageOpt;
+ doUsageOpt;
/*
* #define map the "normal" callout procs
*/
tSCC zPROGNAME[] = "NTPD";
tSCC zUsageTitle[] =
-"ntpd - NTP daemon program - Ver. 4.2.3p29\n\
+"ntpd - NTP daemon program - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/* * * * * * *
*
- * For the set-debug-level option.
+ * For the set-debug-level option, when DEBUG is #define-d.
*/
+#ifdef DEBUG
static void
doOptSet_Debug_Level(
tOptions* pOptions,
{
DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );
}
+#endif /* defined DEBUG */
#endif /* defined(TEST_NTPD_OPTS) */
*
* DO NOT EDIT THIS FILE (ntpd-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:03:35 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:34 AM EDT
* From the definitions ntpd-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 33
-#define NTPD_VERSION "4.2.3p29"
-#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.3p29"
+#define NTPD_VERSION "4.2.3p30"
+#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#define VALUE_OPT_AUTHNOREQ 'A'
#define VALUE_OPT_BCASTSYNC 'b'
#define VALUE_OPT_CONFIGFILE 'c'
+#ifdef DEBUG
#define VALUE_OPT_DEBUG_LEVEL 'd'
+#endif /* DEBUG */
+#ifdef DEBUG
#define VALUE_OPT_SET_DEBUG_LEVEL 'D'
+#endif /* DEBUG */
#define VALUE_OPT_DRIFTFILE 'f'
#define VALUE_OPT_PANICGATE 'g'
#define VALUE_OPT_JAILDIR 'i'
#
# DO NOT EDIT THIS FILE (ntpd-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 04:03:39 PM EDT
+# It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:37 AM EDT
# From the definitions ntpd-opts.def
# and the template file aginfo.tpl
@end ignore
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Increase the debugging message output level.
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Set the output debugging level. Can be supplied multiple times,
-.TH NTPD 1 2006-08-10 "( 4.2.3p29)" "Programmer's Manual"
+.TH NTPD 1 2006-08-15 "( 4.2.3p30)" "Programmer's Manual"
.\" DO NOT EDIT THIS FILE (ntpd.1)
.\"
-.\" It has been AutoGen-ed Thursday August 10, 2006 at 04:03:37 PM EDT
+.\" It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:36 AM EDT
.\" From the definitions ntpd-opts.def
.\" and the template file agman1.tpl
.\"
+#include autogen-version.def
test-main;
*
* DO NOT EDIT THIS FILE (ntpdsim-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:03:41 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:39 AM EDT
* From the definitions ntpdsim-opts.def
* and the template file options
*/
/*
* Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zDebug_LevelText[] =
"Increase output debug message level";
tSCC zDebug_Level_NAME[] = "DEBUG_LEVEL";
tSCC zDebug_Level_Name[] = "debug-level";
#define DEBUG_LEVEL_FLAGS (OPTST_DISABLED)
+#else /* disable Debug_Level */
+#define VALUE_OPT_DEBUG_LEVEL NO_EQUIVALENT
+#define DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zDebug_LevelText NULL
+#define zDebug_Level_NAME NULL
+#define zDebug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Set_Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zSet_Debug_LevelText[] =
"Set the output debug message level";
tSCC zSet_Debug_Level_NAME[] = "SET_DEBUG_LEVEL";
#define SET_DEBUG_LEVEL_FLAGS (OPTST_DISABLED \
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
+#else /* disable Set_Debug_Level */
+#define VALUE_OPT_SET_DEBUG_LEVEL NO_EQUIVALENT
+#define SET_DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zSet_Debug_LevelText NULL
+#define zSet_Debug_Level_NAME NULL
+#define zSet_Debug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Driftfile option description:
*/
/*
* Declare option callback procedures
*/
+#ifdef DEBUG
+ static tOptProc doOptSet_Debug_Level;
+#else /* not DEBUG */
+# define doOptSet_Debug_Level NULL
+#endif /* def/not DEBUG */
#if defined(TEST_NTPDSIM_OPTS)
/*
* Under test, omit argument processing, or call optionStackArg,
extern tOptProc
optionNumericVal, optionPagedUsage, optionPrintVersion, optionStackArg;
static tOptProc
- doOptSet_Debug_Level, doUsageOpt;
+ doUsageOpt;
/*
* #define map the "normal" callout procs
*/
tSCC zPROGNAME[] = "NTPDSIM";
tSCC zUsageTitle[] =
-"ntpdsim - NTP daemon simulation program - Ver. 4.2.3p29\n\
+"ntpdsim - NTP daemon simulation program - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/* * * * * * *
*
- * For the set-debug-level option.
+ * For the set-debug-level option, when DEBUG is #define-d.
*/
+#ifdef DEBUG
static void
doOptSet_Debug_Level(
tOptions* pOptions,
{
DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );
}
+#endif /* defined DEBUG */
#endif /* defined(TEST_NTPDSIM_OPTS) */
*
* DO NOT EDIT THIS FILE (ntpdsim-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:03:40 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:38 AM EDT
* From the definitions ntpdsim-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 42
-#define NTPDSIM_VERSION "4.2.3p29"
-#define NTPDSIM_FULL_VERSION "ntpdsim - NTP daemon simulation program - Ver. 4.2.3p29"
+#define NTPDSIM_VERSION "4.2.3p30"
+#define NTPDSIM_FULL_VERSION "ntpdsim - NTP daemon simulation program - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#define VALUE_OPT_SIMBROADCASTDELAY 'B'
#define VALUE_OPT_CONFIGFILE 'c'
#define VALUE_OPT_PHASENOISE 'C'
+#ifdef DEBUG
#define VALUE_OPT_DEBUG_LEVEL 'd'
+#endif /* DEBUG */
+#ifdef DEBUG
#define VALUE_OPT_SET_DEBUG_LEVEL 'D'
+#endif /* DEBUG */
#define VALUE_OPT_DRIFTFILE 'f'
#define VALUE_OPT_PANICGATE 'g'
#define VALUE_OPT_SIMSLEW 'H'
#
# DO NOT EDIT THIS FILE (ntpdsim-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 04:03:44 PM EDT
+# It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:42 AM EDT
# From the definitions ntpdsim-opts.def
# and the template file aginfo.tpl
@end ignore
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Increase the debugging message output level.
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Set the output debugging level. Can be supplied multiple times,
-.TH NTPDSIM 1 2006-08-10 "( 4.2.3p29)" "Programmer's Manual"
+.TH NTPDSIM 1 2006-08-15 "( 4.2.3p30)" "Programmer's Manual"
.\" DO NOT EDIT THIS FILE (ntpdsim.1)
.\"
-.\" It has been AutoGen-ed Thursday August 10, 2006 at 04:03:42 PM EDT
+.\" It has been AutoGen-ed Tuesday August 15, 2006 at 04:51:41 AM EDT
.\" From the definitions ntpdsim-opts.def
.\" and the template file agman1.tpl
.\"
*
* DO NOT EDIT THIS FILE (ntpdc-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:05:25 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:57:54 AM EDT
* From the definitions ntpdc-opts.def
* and the template file options
*/
/*
* Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zDebug_LevelText[] =
"Increase output debug message level";
tSCC zDebug_Level_NAME[] = "DEBUG_LEVEL";
tSCC zDebug_Level_Name[] = "debug-level";
#define DEBUG_LEVEL_FLAGS (OPTST_DISABLED)
+#else /* disable Debug_Level */
+#define VALUE_OPT_DEBUG_LEVEL NO_EQUIVALENT
+#define DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zDebug_LevelText NULL
+#define zDebug_Level_NAME NULL
+#define zDebug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Set_Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zSet_Debug_LevelText[] =
"Set the output debug message level";
tSCC zSet_Debug_Level_NAME[] = "SET_DEBUG_LEVEL";
#define SET_DEBUG_LEVEL_FLAGS (OPTST_DISABLED \
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
+#else /* disable Set_Debug_Level */
+#define VALUE_OPT_SET_DEBUG_LEVEL NO_EQUIVALENT
+#define SET_DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zSet_Debug_LevelText NULL
+#define zSet_Debug_Level_NAME NULL
+#define zSet_Debug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Numeric option description:
*/
/*
* Declare option callback procedures
*/
+#ifdef DEBUG
+ static tOptProc doOptSet_Debug_Level;
+#else /* not DEBUG */
+# define doOptSet_Debug_Level NULL
+#endif /* def/not DEBUG */
#if defined(TEST_NTPDC_OPTS)
/*
* Under test, omit argument processing, or call optionStackArg,
extern tOptProc
optionPagedUsage, optionPrintVersion, optionStackArg;
static tOptProc
- doOptSet_Debug_Level, doUsageOpt;
+ doUsageOpt;
/*
* #define map the "normal" callout procs
*/
tSCC zPROGNAME[] = "NTPDC";
tSCC zUsageTitle[] =
-"ntpdc - vendor-specific NTP query program - Ver. 4.2.3p29\n\
+"ntpdc - vendor-specific NTP query program - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/* * * * * * *
*
- * For the set-debug-level option.
+ * For the set-debug-level option, when DEBUG is #define-d.
*/
+#ifdef DEBUG
static void
doOptSet_Debug_Level(
tOptions* pOptions,
{
DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );
}
+#endif /* defined DEBUG */
#endif /* defined(TEST_NTPDC_OPTS) */
*
* DO NOT EDIT THIS FILE (ntpdc-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:05:24 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:57:53 AM EDT
* From the definitions ntpdc-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 15
-#define NTPDC_VERSION "4.2.3p29"
-#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.3p29"
+#define NTPDC_VERSION "4.2.3p30"
+#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#define VALUE_OPT_PEERS 'p'
#define VALUE_OPT_SHOWPEERS 's'
#define VALUE_OPT_INTERACTIVE 'i'
+#ifdef DEBUG
#define VALUE_OPT_DEBUG_LEVEL 'd'
+#endif /* DEBUG */
+#ifdef DEBUG
#define VALUE_OPT_SET_DEBUG_LEVEL 'D'
+#endif /* DEBUG */
#define VALUE_OPT_NUMERIC 'n'
#define VALUE_OPT_VERSION 'v'
#
# DO NOT EDIT THIS FILE (ntpdc-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 04:05:27 PM EDT
+# It has been AutoGen-ed Tuesday August 15, 2006 at 04:57:56 AM EDT
# From the definitions ntpdc-opts.def
# and the template file aginfo.tpl
@end ignore
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Increase the debugging message output level.
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Set the output debugging level. Can be supplied multiple times,
-.TH NTPDC 1 2006-08-10 "( 4.2.3p29)" "Programmer's Manual"
+.TH NTPDC 1 2006-08-15 "( 4.2.3p30)" "Programmer's Manual"
.\" DO NOT EDIT THIS FILE (ntpdc.1)
.\"
-.\" It has been AutoGen-ed Thursday August 10, 2006 at 04:05:26 PM EDT
+.\" It has been AutoGen-ed Tuesday August 15, 2006 at 04:57:55 AM EDT
.\" From the definitions ntpdc-opts.def
.\" and the template file agman1.tpl
.\"
*
* DO NOT EDIT THIS FILE (ntpq-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 06:35:59 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:12 AM EDT
* From the definitions ntpq-opts.def
* and the template file options
*/
/*
* Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zDebug_LevelText[] =
"Increase output debug message level";
tSCC zDebug_Level_NAME[] = "DEBUG_LEVEL";
tSCC zDebug_Level_Name[] = "debug-level";
#define DEBUG_LEVEL_FLAGS (OPTST_DISABLED)
+#else /* disable Debug_Level */
+#define VALUE_OPT_DEBUG_LEVEL NO_EQUIVALENT
+#define DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zDebug_LevelText NULL
+#define zDebug_Level_NAME NULL
+#define zDebug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Set_Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zSet_Debug_LevelText[] =
"Set the output debug message level";
tSCC zSet_Debug_Level_NAME[] = "SET_DEBUG_LEVEL";
#define SET_DEBUG_LEVEL_FLAGS (OPTST_DISABLED \
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
+#else /* disable Set_Debug_Level */
+#define VALUE_OPT_SET_DEBUG_LEVEL NO_EQUIVALENT
+#define SET_DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zSet_Debug_LevelText NULL
+#define zSet_Debug_Level_NAME NULL
+#define zSet_Debug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Peers option description with
* "Must also have options" and "Incompatible options":
/*
* Declare option callback procedures
*/
+#ifdef DEBUG
+ static tOptProc doOptSet_Debug_Level;
+#else /* not DEBUG */
+# define doOptSet_Debug_Level NULL
+#endif /* def/not DEBUG */
#if defined(TEST_NTPQ_OPTS)
/*
* Under test, omit argument processing, or call optionStackArg,
extern tOptProc
optionPagedUsage, optionPrintVersion, optionStackArg;
static tOptProc
- doOptSet_Debug_Level, doUsageOpt;
+ doUsageOpt;
/*
* #define map the "normal" callout procs
*/
tSCC zPROGNAME[] = "NTPQ";
tSCC zUsageTitle[] =
-"ntpq - standard NTP query program - Ver. 4.2.3p29\n\
+"ntpq - standard NTP query program - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/* * * * * * *
*
- * For the set-debug-level option.
+ * For the set-debug-level option, when DEBUG is #define-d.
*/
+#ifdef DEBUG
static void
doOptSet_Debug_Level(
tOptions* pOptions,
{
DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );
}
+#endif /* defined DEBUG */
#endif /* defined(TEST_NTPQ_OPTS) */
*
* DO NOT EDIT THIS FILE (ntpq-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 06:35:59 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:12 AM EDT
* From the definitions ntpq-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 13
-#define NTPQ_VERSION "4.2.3p29"
-#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.3p29"
+#define NTPQ_VERSION "4.2.3p30"
+#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#define WHICH_IDX_IPV4 (DESC(IPV4).optActualIndex)
#define VALUE_OPT_IPV6 '6'
#define VALUE_OPT_COMMAND 'c'
+#ifdef DEBUG
#define VALUE_OPT_DEBUG_LEVEL 'd'
+#endif /* DEBUG */
+#ifdef DEBUG
#define VALUE_OPT_SET_DEBUG_LEVEL 'D'
+#endif /* DEBUG */
#define VALUE_OPT_PEERS 'p'
#define VALUE_OPT_INTERACTIVE 'i'
#define VALUE_OPT_NUMERIC 'n'
#
# DO NOT EDIT THIS FILE (ntpq-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 06:46:32 PM EDT
+# It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:15 AM EDT
# From the definitions ntpq-opts.def
# and the template file aginfo.tpl
@end ignore
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Increase the debugging message output level.
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Set the output debugging level. Can be supplied multiple times,
-.TH NTPQ 1 2006-08-10 "( 4.2.3p29)" "Programmer's Manual"
+.TH NTPQ 1 2006-08-15 "( 4.2.3p30)" "Programmer's Manual"
.\" DO NOT EDIT THIS FILE (ntpq.1)
.\"
-.\" It has been AutoGen-ed Thursday August 10, 2006 at 06:46:31 PM EDT
+.\" It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:13 AM EDT
.\" From the definitions ntpq-opts.def
.\" and the template file agman1.tpl
.\"
*
* DO NOT EDIT THIS FILE (sntp-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 08:20:34 PM EDT
+ * It has been AutoGen-ed Monday August 14, 2006 at 02:58:41 PM EDT
* From the definitions sntp-opts.def
* and the template file options
*/
*/
tSCC zPROGNAME[] = "SNTP";
tSCC zUsageTitle[] =
-"sntp - standard SNTP program - Ver. 4.2.3p29\n\
+"sntp - standard SNTP program - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> | --<name> ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
*
* DO NOT EDIT THIS FILE (sntp-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 08:20:33 PM EDT
+ * It has been AutoGen-ed Monday August 14, 2006 at 02:58:40 PM EDT
* From the definitions sntp-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 12
-#define SNTP_VERSION "4.2.3p29"
-#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.3p29"
+#define SNTP_VERSION "4.2.3p30"
+#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#
# DO NOT EDIT THIS FILE (sntp-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 08:20:36 PM EDT
+# It has been AutoGen-ed Monday August 14, 2006 at 02:58:43 PM EDT
# From the definitions sntp-opts.def
# and the template file aginfo.tpl
@end ignore
*
* DO NOT EDIT THIS FILE (ntp-keygen-opts.c)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:19:35 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:35 AM EDT
* From the definitions ntp-keygen-opts.def
* and the template file options
*/
/*
* Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zDebug_LevelText[] =
"Increase output debug message level";
tSCC zDebug_Level_NAME[] = "DEBUG_LEVEL";
tSCC zDebug_Level_Name[] = "debug-level";
#define DEBUG_LEVEL_FLAGS (OPTST_DISABLED)
+#else /* disable Debug_Level */
+#define VALUE_OPT_DEBUG_LEVEL NO_EQUIVALENT
+#define DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zDebug_LevelText NULL
+#define zDebug_Level_NAME NULL
+#define zDebug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Set_Debug_Level option description:
*/
+#ifdef DEBUG
tSCC zSet_Debug_LevelText[] =
"Set the output debug message level";
tSCC zSet_Debug_Level_NAME[] = "SET_DEBUG_LEVEL";
#define SET_DEBUG_LEVEL_FLAGS (OPTST_DISABLED \
| OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))
+#else /* disable Set_Debug_Level */
+#define VALUE_OPT_SET_DEBUG_LEVEL NO_EQUIVALENT
+#define SET_DEBUG_LEVEL_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
+#define zSet_Debug_LevelText NULL
+#define zSet_Debug_Level_NAME NULL
+#define zSet_Debug_Level_Name NULL
+#endif /* DEBUG */
+
/*
* Id_Key option description:
*/
/*
* Declare option callback procedures
*/
+#ifdef DEBUG
+ static tOptProc doOptSet_Debug_Level;
+#else /* not DEBUG */
+# define doOptSet_Debug_Level NULL
+#endif /* def/not DEBUG */
#ifdef OPENSSL
static tOptProc doOptModulus;
#else /* not OPENSSL */
extern tOptProc
optionPagedUsage, optionPrintVersion;
static tOptProc
- doOptSet_Debug_Level, doUsageOpt;
+ doUsageOpt;
/*
* #define map the "normal" callout procs
*/
tSCC zPROGNAME[] = "NTP_KEYGEN";
tSCC zUsageTitle[] =
-"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p29\n\
+"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p30\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/* * * * * * *
*
- * For the set-debug-level option.
+ * For the set-debug-level option, when DEBUG is #define-d.
*/
+#ifdef DEBUG
static void
doOptSet_Debug_Level(
tOptions* pOptions,
{
DESC(DEBUG_LEVEL).optOccCt = atoi( pOptDesc->pzLastArg );
}
+#endif /* defined DEBUG */
#endif /* defined(TEST_NTP_KEYGEN_OPTS) */
*
* DO NOT EDIT THIS FILE (ntp-keygen-opts.h)
*
- * It has been AutoGen-ed Thursday August 10, 2006 at 04:19:35 PM EDT
+ * It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:34 AM EDT
* From the definitions ntp-keygen-opts.def
* and the template file options
*/
} teOptIndex;
#define OPTION_CT 24
-#define NTP_KEYGEN_VERSION "4.2.3p29"
-#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p29"
+#define NTP_KEYGEN_VERSION "4.2.3p30"
+#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.3p30"
/*
* Interface defines for all options. Replace "n" with
#ifdef OPENSSL
#define VALUE_OPT_CERTIFICATE 'c'
#endif /* OPENSSL */
+#ifdef DEBUG
#define VALUE_OPT_DEBUG_LEVEL 'd'
+#endif /* DEBUG */
+#ifdef DEBUG
#define VALUE_OPT_SET_DEBUG_LEVEL 'D'
+#endif /* DEBUG */
#ifdef OPENSSL
#define VALUE_OPT_ID_KEY 'e'
#endif /* OPENSSL */
#
# DO NOT EDIT THIS FILE (ntp-keygen-opts.texi)
#
-# It has been AutoGen-ed Thursday August 10, 2006 at 04:19:37 PM EDT
+# It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:37 AM EDT
# From the definitions ntp-keygen-opts.def
# and the template file aginfo.tpl
@end ignore
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Increase the debugging message output level.
@itemize @bullet
@item
may appear an unlimited number of times.
+@item
+must be compiled in by defining @code{DEBUG} during the compilation.
@end itemize
Set the output debugging level. Can be supplied multiple times,
-.TH NTP-KEYGEN 1 2006-08-10 "(ntp 4.2.3p29)" "Programmer's Manual"
+.TH NTP-KEYGEN 1 2006-08-15 "(ntp 4.2.3p30)" "Programmer's Manual"
.\" DO NOT EDIT THIS FILE (ntp-keygen.1)
.\"
-.\" It has been AutoGen-ed Thursday August 10, 2006 at 04:19:37 PM EDT
+.\" It has been AutoGen-ed Tuesday August 15, 2006 at 04:58:36 AM EDT
.\" From the definitions ntp-keygen-opts.def
.\" and the template file agman1.tpl
.\"