1AC_MSG_CHECKING(for target platform)
2
3case $host in
4*beos*)
5  OS="beos"
6  OS_DIR=$OS
7  ;;
8*pc-os2-emx*)
9  OS="os2"
10  OS_DIR=$OS
11  ;;
12bs2000*)
13  OS="unix"
14  OS_DIR=$OS
15  ;;
16*cygwin*)
17  OS="cygwin"
18  OS_DIR="unix"
19  ;;
20*mingw32*)
21  OS="win32"
22  OS_DIR=$OS
23  ;;
24*)
25  OS="unix"
26  OS_DIR=$OS;;
27esac
28
29AC_MSG_RESULT($OS)
30APACHE_FAST_OUTPUT(os/${OS_DIR}/Makefile)
31