]> granicus.if.org Git - apache/blob - os/config.m4
Introduce ap_(get|set)_core_module_config() functions/macros and use them
[apache] / os / config.m4
1 AC_MSG_CHECKING(for target platform)
2
3 case $host in
4 *pc-os2-emx*)
5   OS="os2"
6   OS_DIR=$OS
7   ;;
8 bs2000*)
9   OS="unix"
10   OS_DIR=$OS
11   ;;
12 *cygwin*)
13   OS="cygwin"
14   OS_DIR="unix"
15   ;;
16 *mingw32*)
17   OS="win32"
18   OS_DIR=$OS
19   ;;
20 *)
21   OS="unix"
22   OS_DIR=$OS;;
23 esac
24
25 AC_MSG_RESULT($OS)
26 APACHE_FAST_OUTPUT(os/${OS_DIR}/Makefile)