]> granicus.if.org Git - apache/blob - os/config.m4
Fix compile time warning. AJP protocol method is byte.
[apache] / os / config.m4
1 AC_MSG_CHECKING(for target platform)
2
3 case $host in
4 *beos*)
5   OS="beos"
6   OS_DIR=$OS
7   ;;
8 *pc-os2-emx*)
9   OS="os2"
10   OS_DIR=$OS
11   ;;
12 bs2000*)
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;;
27 esac
28
29 AC_MSG_RESULT($OS)
30 APACHE_FAST_OUTPUT(os/${OS_DIR}/Makefile)