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

« back to all changes in this revision

Viewing changes to srclib/apr-util/build/find_apu.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
dnl -------------------------------------------------------- -*- autoconf -*-
 
2
dnl Copyright 2002-2005 The Apache Software Foundation or its licensors, as
 
3
dnl applicable.
 
4
dnl
 
5
dnl Licensed under the Apache License, Version 2.0 (the "License");
 
6
dnl you may not use this file except in compliance with the License.
 
7
dnl You may obtain a copy of the License at
 
8
dnl
 
9
dnl     http://www.apache.org/licenses/LICENSE-2.0
 
10
dnl
 
11
dnl Unless required by applicable law or agreed to in writing, software
 
12
dnl distributed under the License is distributed on an "AS IS" BASIS,
 
13
dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
dnl See the License for the specific language governing permissions and
 
15
dnl limitations under the License.
 
16
 
 
17
dnl
 
18
dnl find_apu.m4 : locate the APR-util (APU) include files and libraries
 
19
dnl
 
20
dnl This macro file can be used by applications to find and use the APU
 
21
dnl library. It provides a standardized mechanism for using APU. It supports
 
22
dnl embedding APU into the application source, or locating an installed
 
23
dnl copy of APU.
 
24
dnl
 
25
dnl APR_FIND_APU(srcdir, builddir, implicit-install-check, acceptable-majors)
 
26
dnl
 
27
dnl   where srcdir is the location of the bundled APU source directory, or
 
28
dnl   empty if source is not bundled.
 
29
dnl
 
30
dnl   where builddir is the location where the bundled APU will be built,
 
31
dnl   or empty if the build will occur in the srcdir.
 
32
dnl
 
33
dnl   where implicit-install-check set to 1 indicates if there is no
 
34
dnl   --with-apr-util option specified, we will look for installed copies.
 
35
dnl
 
36
dnl   where acceptable-majors is a space separated list of acceptable major
 
37
dnl   version numbers. Often only a single major version will be acceptable.
 
38
dnl   If multiple versions are specified, and --with-apr-util=PREFIX or the
 
39
dnl   implicit installed search are used, then the first (leftmost) version
 
40
dnl   in the list that is found will be used.  Currently defaults to [0 1].
 
41
dnl
 
42
dnl Sets the following variables on exit:
 
43
dnl
 
44
dnl   apu_found : "yes", "no", "reconfig"
 
45
dnl
 
46
dnl   apu_config : If the apu-config tool exists, this refers to it.  If
 
47
dnl                apu_found is "reconfig", then the bundled directory
 
48
dnl                should be reconfigured *before* using apu_config.
 
49
dnl
 
50
dnl Note: this macro file assumes that apr-config has been installed; it
 
51
dnl       is normally considered a required part of an APR installation.
 
52
dnl
 
53
dnl Note: At this time, we cannot find *both* a source dir and a build dir.
 
54
dnl       If both are available, the build directory should be passed to
 
55
dnl       the --with-apr-util switch.
 
56
dnl
 
57
dnl Note: the installation layout is presumed to follow the standard
 
58
dnl       PREFIX/lib and PREFIX/include pattern. If the APU config file
 
59
dnl       is available (and can be found), then non-standard layouts are
 
60
dnl       possible, since it will be described in the config file.
 
61
dnl
 
62
dnl If a bundled source directory is available and needs to be (re)configured,
 
63
dnl then apu_found is set to "reconfig". The caller should reconfigure the
 
64
dnl (passed-in) source directory, placing the result in the build directory,
 
65
dnl as appropriate.
 
66
dnl
 
67
dnl If apu_found is "yes" or "reconfig", then the caller should use the
 
68
dnl value of apu_config to fetch any necessary build/link information.
 
69
dnl
 
70
 
 
71
AC_DEFUN([APR_FIND_APU], [
 
72
  apu_found="no"
 
73
 
 
74
  if test "$target_os" = "os2-emx"; then
 
75
    # Scripts don't pass test -x on OS/2
 
76
    TEST_X="test -f"
 
77
  else
 
78
    TEST_X="test -x"
 
79
  fi
 
80
 
 
81
  ifelse([$4], [],
 
82
  [
 
83
    ifdef(AC_WARNING,([$0: missing argument 4 (acceptable-majors): Defaulting to APU 0.x then APU 1.x]))
 
84
    acceptable_majors="0 1"
 
85
  ], [acceptable_majors="$4"])
 
86
 
 
87
  apu_temp_acceptable_apu_config=""
 
88
  for apu_temp_major in $acceptable_majors
 
89
  do
 
90
    case $apu_temp_major in
 
91
      0)
 
92
      apu_temp_acceptable_apu_config="$apu_temp_acceptable_apu_config apu-config"
 
93
      ;;
 
94
      *)
 
95
      apu_temp_acceptable_apu_config="$apu_temp_acceptable_apu_config apu-$apu_temp_major-config"
 
96
      ;;
 
97
    esac
 
98
  done
 
99
 
 
100
  AC_MSG_CHECKING(for APR-util)
 
101
  AC_ARG_WITH(apr-util,
 
102
  [  --with-apr-util=PATH    prefix for installed APU, path to APU build tree,
 
103
                          or the full path to apu-config],
 
104
  [
 
105
    if test "$withval" = "no" || test "$withval" = "yes"; then
 
106
      AC_MSG_ERROR([--with-apr-util requires a directory or file to be provided])
 
107
    fi
 
108
 
 
109
    for apu_temp_apu_config_file in $apu_temp_acceptable_apu_config
 
110
    do
 
111
      for lookdir in "$withval/bin" "$withval"
 
112
      do
 
113
        if $TEST_X "$lookdir/$apu_temp_apu_config_file"; then
 
114
          apu_found="yes"
 
115
          apu_config="$lookdir/$apu_temp_apu_config_file"
 
116
          break 2
 
117
        fi
 
118
      done
 
119
    done
 
120
 
 
121
    if test "$apu_found" != "yes" && $TEST_X "$withval" && $withval --help > /dev/null 2>&1 ; then
 
122
      apu_found="yes"
 
123
      apu_config="$withval"
 
124
    fi
 
125
 
 
126
    dnl if --with-apr-util is used, it is a fatal error for its argument
 
127
    dnl to be invalid
 
128
    if test "$apu_found" != "yes"; then
 
129
      AC_MSG_ERROR([the --with-apr-util parameter is incorrect. It must specify an install prefix, a build directory, or an apu-config file.])
 
130
    fi
 
131
  ],[
 
132
    if test -n "$3" && test "$3" = "1"; then
 
133
      for apu_temp_apu_config_file in $apu_temp_acceptable_apu_config
 
134
      do
 
135
        if $apu_temp_apu_config_file --help > /dev/null 2>&1 ; then
 
136
          apu_found="yes"
 
137
          apu_config="$apu_temp_apu_config_file"
 
138
          break
 
139
        else
 
140
          dnl look in some standard places (apparently not in builtin/default)
 
141
          for lookdir in /usr /usr/local /usr/local/apr /opt/apr /usr/local/apache2 ; do
 
142
            if $TEST_X "$lookdir/bin/$apu_temp_apu_config_file"; then
 
143
              apu_found="yes"
 
144
              apu_config="$lookdir/bin/$apu_temp_apu_config_file"
 
145
              break 2
 
146
            fi
 
147
          done
 
148
        fi
 
149
      done
 
150
    fi
 
151
    dnl if we have not found anything yet and have bundled source, use that
 
152
    if test "$apu_found" = "no" && test -d "$1"; then
 
153
      apu_temp_abs_srcdir="`cd $1 && pwd`"
 
154
      apu_found="reconfig"
 
155
      apu_bundled_major="`sed -n '/#define.*APU_MAJOR_VERSION/s/^[^0-9]*\([0-9]*\).*$/\1/p' \"$1/include/apu_version.h\"`"
 
156
      case $apu_bundled_major in
 
157
        "")
 
158
          AC_MSG_ERROR([failed to find major version of bundled APU])
 
159
        ;;
 
160
        0)
 
161
          apu_temp_apu_config_file="apu-config"
 
162
        ;;
 
163
        *)
 
164
          apu_temp_apu_config_file="apu-$apu_bundled_major-config"
 
165
        ;;
 
166
      esac
 
167
      if test -n "$2"; then
 
168
        apu_config="$2/$apu_temp_apu_config_file"
 
169
      else
 
170
        apu_config="$1/$apu_temp_apu_config_file"
 
171
      fi
 
172
    fi
 
173
  ])
 
174
 
 
175
  AC_MSG_RESULT($apu_found)
 
176
])