freebsd-dev/contrib/ntp/sntp/m4/ntp_dir_sep.m4
Cy Schubert 2b15cb3d09 MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
Thanks to roberto for providing pointers to wedge this into HEAD.

Approved by:	roberto
2015-03-30 13:30:15 +00:00

25 lines
589 B
Plaintext

dnl ######################################################################
dnl What directory path separator do we use?
AC_DEFUN([NTP_DIR_SEP], [
AC_CACHE_CHECK(
[for directory path separator],
[ntp_cv_dir_sep],
[
case "$ntp_cv_dir_sep" in
'')
case "$host_os" in
*djgpp | *mingw32* | *emx*)
ntp_cv_dir_sep="'\\'"
;;
*)
ntp_cv_dir_sep="'/'"
;;
esac
esac
]
)
AC_DEFINE_UNQUOTED([DIR_SEP], [$ntp_cv_dir_sep],
[Directory separator character, usually / or \\])
])
dnl ======================================================================