source: trunk/essentials/sys-apps/grep/m4/envsep.m4

Last change on this file was 2557, checked in by bird, 19 years ago

grep 2.5.1a

File size: 486 bytes
Line 
1# Check to see the separator for the environment variables
2# and set SEP to ";" or default ":"
3
4dnl AM_SEP()
5dnl SEP
6AC_DEFUN(AM_SEP,
7[AC_REQUIRE([AC_CYGWIN])
8AC_REQUIRE([AC_MINGW32])
9AC_REQUIRE([AC_DJGPP])
10AC_MSG_CHECKING([for environ variable separator])
11AC_CACHE_VAL(ac_cv_sep,
12[if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$DJ_GPP" = yes ; then
13 ac_cv_sep=yes
14else
15 ac_cv_sep=no
16fi])
17SEP=":"
18test x"$ac_cv_sep" = xyes && SEP=";"
19AC_MSG_RESULT(${SEP})
20AC_SUBST(SEP)])
Note: See TracBrowser for help on using the repository browser.