~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to os/config.m4

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
*)
 
21
  OS="unix"
 
22
  OS_DIR=$OS;;
 
23
esac
 
24
 
 
25
AC_MSG_RESULT($OS)
 
26
APACHE_FAST_OUTPUT(os/${OS_DIR}/Makefile)