003 File Manager
Current Path:
/usr/src/contrib/ntp/sntp/m4
usr
/
src
/
contrib
/
ntp
/
sntp
/
m4
/
📁
..
📄
ax_c99_struct_init.m4
(1.64 KB)
📄
define_dir.m4
(1.16 KB)
📄
hms_search_lib.m4
(701 B)
📄
libtool.m4
(298.56 KB)
📄
ltoptions.m4
(14.17 KB)
📄
ltsugar.m4
(4.28 KB)
📄
ltversion.m4
(699 B)
📄
lt~obsolete.m4
(6 KB)
📄
ntp_af_unspec.m4
(597 B)
📄
ntp_cacheversion.m4
(4.08 KB)
📄
ntp_compiler.m4
(5.15 KB)
📄
ntp_crosscompile.m4
(300 B)
📄
ntp_crypto_rand.m4
(1.41 KB)
📄
ntp_debug.m4
(549 B)
📄
ntp_dir_sep.m4
(589 B)
📄
ntp_facilitynames.m4
(797 B)
📄
ntp_googletest.m4
(1.35 KB)
📄
ntp_harden.m4
(1.19 KB)
📄
ntp_ipv6.m4
(10.55 KB)
📄
ntp_lib_m.m4
(388 B)
📄
ntp_libevent.m4
(6.34 KB)
📄
ntp_libntp.m4
(24.98 KB)
📄
ntp_lineeditlibs.m4
(2.9 KB)
📄
ntp_locinfo.m4
(3.2 KB)
📄
ntp_openssl.m4
(9.84 KB)
📄
ntp_pkg_config.m4
(673 B)
📄
ntp_problemtests.m4
(1.96 KB)
📄
ntp_prog_cc.m4
(460 B)
📄
ntp_rlimit.m4
(2.55 KB)
📄
ntp_sntp.m4
(643 B)
📄
ntp_sysexits.m4
(352 B)
📄
ntp_unitytest.m4
(531 B)
📄
ntp_ver_suffix.m4
(404 B)
📄
ntp_vpathhack.m4
(1.52 KB)
📄
openldap-thread-check.m4
(18.72 KB)
📄
openldap.m4
(32.08 KB)
📄
os_cflags.m4
(3.27 KB)
📄
snprintf.m4
(11.16 KB)
📄
sntp_problemtests.m4
(1.35 KB)
📄
version.m4
(39 B)
Editing: ntp_locinfo.m4
dnl ###################################################################### dnl @synopsis NTP_LOCINFO([SCRIPTSDIRPATH]) dnl Location information: dnl - installation directory (*_DB for bin/, *_DL for libexec/, *_DS for sbin/) dnl ... or *_NI for noinst_* dnl - man tag format (man or mdoc) dnl - man section (1, 1m, 1M, 8) AC_DEFUN([NTP_LOCINFO], [ AC_MSG_CHECKING([for install dir and man conventions]) AC_ARG_WITH( [locfile], [AS_HELP_STRING( [--with-locfile=XXX], [os-specific or "legacy"] )], [], [with_locfile=no] ) ( \ SENTINEL_DIR="$PWD" && \ cd $srcdir/$1 && \ case "$with_locfile" in \ yes|no|'') \ scripts/genLocInfo -d "$SENTINEL_DIR" \ ;; \ *) \ scripts/genLocInfo -d "$SENTINEL_DIR" -f "$with_locfile" \ ;; \ esac \ ) > genLocInfo.i 2> genLocInfo.err . ./genLocInfo.i case "$GENLOCINFO" in OK) AC_MSG_RESULT([in file $GENLOCINFOFILE]) rm genLocInfo.err genLocInfo.i ;; *) AC_MSG_RESULT([failed.]) AC_MSG_ERROR([Problem with genLocInfo!]) ;; esac AM_CONDITIONAL([WANT_CALC_TICKADJ_MS], [test "$CALC_TICKADJ_MS" ]) AC_SUBST([CALC_TICKADJ_DB]) AC_SUBST([CALC_TICKADJ_DL]) AC_SUBST([CALC_TICKADJ_DS]) AC_SUBST([CALC_TICKADJ_MS]) AC_SUBST([CALC_TICKADJ_NI]) AC_SUBST([MANTAGFMT]) AC_SUBST([NTPDATE_DB]) AC_SUBST([NTPDATE_DL]) AC_SUBST([NTPDATE_DS]) AC_SUBST([NTPDATE_MS]) AC_SUBST([NTPDATE_NI]) AC_SUBST([NTPDC_DB]) AC_SUBST([NTPDC_DL]) AC_SUBST([NTPDC_DS]) AC_SUBST([NTPDC_MS]) AC_SUBST([NTPDC_NI]) AC_SUBST([NTPDSIM_DB]) AC_SUBST([NTPDSIM_DL]) AC_SUBST([NTPDSIM_DS]) AC_SUBST([NTPDSIM_MS]) AC_SUBST([NTPDSIM_NI]) AC_SUBST([NTPD_DB]) AC_SUBST([NTPD_DL]) AC_SUBST([NTPD_DS]) AC_SUBST([NTPD_MS]) AC_SUBST([NTPD_NI]) AC_SUBST([NTPQ_DB]) AC_SUBST([NTPQ_DL]) AC_SUBST([NTPQ_DS]) AC_SUBST([NTPQ_MS]) AC_SUBST([NTPQ_NI]) AC_SUBST([NTPSNMPD_DB]) AC_SUBST([NTPSNMPD_DL]) AC_SUBST([NTPSNMPD_DS]) AC_SUBST([NTPSNMPD_MS]) AC_SUBST([NTPSNMPD_NI]) AC_SUBST([NTPSWEEP_DB]) AC_SUBST([NTPSWEEP_DL]) AC_SUBST([NTPSWEEP_DS]) AC_SUBST([NTPSWEEP_MS]) AC_SUBST([NTPSWEEP_NI]) AM_CONDITIONAL([INSTALL_NTPSWEEP], [test -z "$NTPSWEEP_NI" ]) AC_SUBST([NTPTIME_DB]) AC_SUBST([NTPTIME_DL]) AC_SUBST([NTPTIME_DS]) AC_SUBST([NTPTIME_MS]) AC_SUBST([NTPTIME_NI]) AC_SUBST([NTPTRACE_DB]) AC_SUBST([NTPTRACE_DL]) AC_SUBST([NTPTRACE_DS]) AC_SUBST([NTPTRACE_MS]) AC_SUBST([NTPTRACE_NI]) AC_SUBST([NTP_KEYGEN_DB]) AC_SUBST([NTP_KEYGEN_DL]) AC_SUBST([NTP_KEYGEN_DS]) AC_SUBST([NTP_KEYGEN_MS]) AC_SUBST([NTP_KEYGEN_NI]) AC_SUBST([NTP_WAIT_DB]) AC_SUBST([NTP_WAIT_DL]) AC_SUBST([NTP_WAIT_DS]) AC_SUBST([NTP_WAIT_MS]) AC_SUBST([NTP_WAIT_NI]) AC_SUBST([SNTP_DB]) AC_SUBST([SNTP_DL]) AC_SUBST([SNTP_DS]) AC_SUBST([SNTP_MS]) AC_SUBST([SNTP_NI]) AC_SUBST([TICKADJ_DB]) AC_SUBST([TICKADJ_DL]) AC_SUBST([TICKADJ_DS]) AC_SUBST([TICKADJ_MS]) AC_SUBST([TICKADJ_NI]) AC_SUBST([TIMETRIM_DB]) AC_SUBST([TIMETRIM_DL]) AC_SUBST([TIMETRIM_DS]) AC_SUBST([TIMETRIM_MS]) AC_SUBST([TIMETRIM_NI]) AC_SUBST([UPDATE_LEAP_DB]) AC_SUBST([UPDATE_LEAP_DL]) AC_SUBST([UPDATE_LEAP_DS]) AC_SUBST([UPDATE_LEAP_MS]) AC_SUBST([UPDATE_LEAP_NI]) AM_CONDITIONAL([INSTALL_UPDATE_LEAP], [test -z "$UPDATE_LEAP_NI" ]) ])dnl dnl ======================================================================
Upload File
Create Folder