1275970Scydnl ######################################################################
2275970Scydnl What directory path separator do we use?
3275970ScyAC_DEFUN([NTP_DIR_SEP], [
4275970ScyAC_CACHE_CHECK(
5275970Scy    [for directory path separator],
6275970Scy    [ntp_cv_dir_sep],
7275970Scy    [
8275970Scy	case "$ntp_cv_dir_sep" in
9275970Scy	 '')
10275970Scy	    case "$host_os" in
11275970Scy	     *djgpp | *mingw32* | *emx*)
12275970Scy		ntp_cv_dir_sep="'\\'"
13275970Scy		;;
14275970Scy	     *) 
15275970Scy		ntp_cv_dir_sep="'/'"
16275970Scy		;;
17275970Scy	    esac
18275970Scy	esac
19275970Scy    ]
20275970Scy)
21275970ScyAC_DEFINE_UNQUOTED([DIR_SEP], [$ntp_cv_dir_sep],
22275970Scy    [Directory separator character, usually / or \\])
23275970Scy])
24275970Scydnl ======================================================================
25