Lines Matching +full:hart +full:- +full:3

1 # Modified by Dave Hart for integration into NTP 4.2.7 <hart@ntp.org>
3 # Changed in a backwards-incompatible way to separate HAVE_SNPRINTF from
6 # invoked, directly or indirectly. This allows 3rd-party modules like
14 # C99-compliant implementations.
29 # ------------------
38 # -------------------
47 # ---------------
51 # (C99: 7.15.1, 1) Therefore, the presence of va_copy(3) cannot simply "be
76 # -----------------
102 # -----------------
135 buf[0] != 'T' || buf[3] != '\0')
142 [Define if C99-compliant `vsnprintf' is available.])
143 AC_MSG_CHECKING([if C99-snprintf replacement vsnprintf will be used])
144 AS_IF([test "${hw_force_rpl_vsnprintf=no}" = yes -o "$hw_cv_func_vsnprintf_c99" = no],
170 # ----------------
179 AC_REQUIRE([HW_FUNC_VSNPRINTF])dnl Our snprintf(3) calls vsnprintf(3).
191 buf[0] != 'T' || buf[3] != '\0')
198 [Define if C99-compliant `snprintf' is available.])
199 AC_MSG_CHECKING([if C99-snprintf replacement snprintf will be used])
200 AS_IF([test "${hw_force_rpl_snprintf=no}" = yes -o "$hw_cv_func_snprintf_c99" = no],
214 # -----------------
222 AC_REQUIRE([HW_FUNC_VSNPRINTF])dnl Our vasprintf(3) calls vsnprintf(3).
228 AC_MSG_CHECKING([if C99-snprintf replacement vasprintf will be used])
229 AS_IF([test "${hw_force_rpl_vasprintf=no}" = yes -o "$hw_cv_func_vasprintf" = no],
247 # ----------------
255 AC_REQUIRE([HW_FUNC_VASPRINTF])dnl Our asprintf(3) calls vasprintf(3).
261 AC_MSG_CHECKING([if C99-snprintf replacement asprintf will be used])
262 AS_IF([test "${hw_force_rpl_asprintf=no}" = yes -o "$hw_cv_func_asprintf" = no],
276 # ------------------------