bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / build / find_apr.m4
1 dnl
2 dnl find_apr.m4 : locate the APR include files and libraries
3 dnl
4 dnl This macro file can be used by applications to find and use the APR
5 dnl library. It provides a standardized mechanism for using APR. It supports
6 dnl embedding APR into the application source, or locating an installed
7 dnl copy of APR.
8 dnl
9 dnl APR_FIND_APR([srcdir [, builddir, implicit-install-check]])
10 dnl
11 dnl   where srcdir is the location of the bundled APR source directory, or
12 dnl   empty if source is not bundled.
13 dnl
14 dnl   where blddir is the location where the bundled APR will will be built,
15 dnl   or empty if the build will occur in the srcdir.
16 dnl
17 dnl   where implicit-install-check set to 1 indicates if there is no
18 dnl   --with-apr option specified, we will look for installed copies.
19 dnl
20 dnl Sets the following variables on exit:
21 dnl
22 dnl   apr_found : "yes", "no", "reconfig"
23 dnl
24 dnl   apr_config : If the apr-config tool exists, this refers to it. If
25 dnl                apr_found is "reconfig", then the bundled directory
26 dnl                should be reconfigured *before* using apr_config.
27 dnl
28 dnl Note: this macro file assumes that apr-config has been installed; it
29 dnl       is normally considered a required part of an APR installation.
30 dnl
31 dnl If a bundled source directory is available and needs to be (re)configured,
32 dnl then apr_found is set to "reconfig". The caller should reconfigure the
33 dnl (passed-in) source directory, placing the result in the build directory,
34 dnl as appropriate.
35 dnl
36 dnl If apr_found is "yes" or "reconfig", then the caller should use the
37 dnl value of apr_config to fetch any necessary build/link information.
38 dnl
39
40 AC_DEFUN(APR_FIND_APR, [
41   apr_found="no"
42
43   if test "$ac_cv_emxos2" = "yes"; then
44     # Scripts don't pass test -x on OS/2
45     TEST_X="test -f"
46   else
47     TEST_X="test -x"
48   fi
49
50   AC_MSG_CHECKING(for APR)
51   AC_ARG_WITH(apr,
52   [  --with-apr=DIR|FILE     prefix for installed APR, path to APR build tree,
53                           or the full path to apr-config],
54   [
55     if test "$withval" = "no" || test "$withval" = "yes"; then
56       AC_MSG_ERROR([--with-apr requires a directory to be provided])
57     fi
58
59     if $TEST_X "$withval/bin/apr-config"; then
60       apr_found="yes"
61       apr_config="$withval/bin/apr-config"
62     elif $TEST_X "$withval/apr-config"; then
63       apr_found="yes"
64       apr_config="$withval/apr-config"
65     elif $TEST_X "$withval" && $withval --help > /dev/null 2>&1 ; then
66       apr_found="yes"
67       apr_config="$withval"
68     fi
69
70     dnl if --with-apr is used, then the target prefix/directory must be valid
71     if test "$apr_found" != "yes"; then
72       AC_MSG_ERROR([the --with-apr parameter is incorrect. It must specify an install prefix, a
73 build directory, or an apr-config file.])
74     fi
75   ],[
76     dnl if we have a bundled source directory, use it
77     if test -d "$1"; then
78       apr_temp_abs_srcdir="`cd $1 && pwd`"
79       apr_found="reconfig"
80       if test -n "$2"; then
81         apr_config="$2/apr-config"
82       else
83         apr_config="$1/apr-config"
84       fi
85     fi
86     if test "$apr_found" = "no" && test -n "$3" && test "$3" = "1"; then
87       if apr-config --help > /dev/null 2>&1 ; then
88         apr_found="yes"
89         apr_config="apr-config"
90       else
91         dnl look in some standard places (apparently not in builtin/default)
92         for lookdir in /usr /usr/local /opt/apr /usr/local/apache2 ; do
93           if $TEST_X "$lookdir/bin/apr-config"; then
94             apr_found="yes"
95             apr_config="$lookdir/bin/apr-config"
96             break
97           fi
98         done
99       fi
100     fi
101   ])
102
103   AC_MSG_RESULT($apr_found)
104 ])