From 2a25cee78ab1d37e7d2bc40ae675646974d99f56 Mon Sep 17 00:00:00 2001 From: delphij Date: Wed, 15 Jul 2015 19:21:26 +0000 Subject: MFC r280849,280915-280916,281015-281016,282097,282408,282415,283542, 284864,285169-285170,285435: ntp 4.2.8p3. Relnotes: yes Approved by: re (?) --- contrib/ntp/include/declcond.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 contrib/ntp/include/declcond.h (limited to 'contrib/ntp/include/declcond.h') diff --git a/contrib/ntp/include/declcond.h b/contrib/ntp/include/declcond.h new file mode 100644 index 0000000..751eff9 --- /dev/null +++ b/contrib/ntp/include/declcond.h @@ -0,0 +1,21 @@ +/* + * declcond.h - declarations conditionalized for ntpd + * + * The NTP reference implementation distribution includes two distinct + * declcond.h files, one in ntpd/ used only by ntpd, and another in + * include/ used by libntp and utilities. This relies on the source + * file's directory being ahead of include/ in the include search. + * + * The ntpd variant of declcond.h declares "debug" only #ifdef DEBUG, + * as the --disable-debugging version of ntpd should not reference + * "debug". The libntp and utilities variant always declares debug, + * as it is used in those codebases even without DEBUG defined. + */ +#ifndef DECLCOND_H +#define DECLCOND_H + +/* #ifdef DEBUG */ /* uncommented in ntpd/declcond.h */ +extern int debug; +/* #endif */ /* uncommented in ntpd/declcond.h */ + +#endif /* DECLCOND_H */ -- cgit v1.1