On 04/19/2006 12:57 PM,
> Author: jorton
> Date: Wed Apr 19 03:57:20 2006
> New Revision: 395211
>
> URL: http://svn.apache.org/viewcvs?rev=395211&view=rev
> Log:
> * configure.in: Add --with-included-apr flag to force use of the
> bundled copies of APR and APR-util.
>
> Modified:
> httpd/httpd/trunk/configure.in
>
> +
> +if test "x$with_included_apr" = "xyes"; then
> + apr_found=reconfig
> + apr_config="$srcdir/srclib/apr/apr-1-config"
> +else
Is it really a good idea to hardcode apr-1-config or shouldn't it be something
like
apr-?-config (Same question for apu-1-config below)?
> +if test "x$with_included_apr" = "xyes"; then
> + apu_found=reconfig
> + apu_config="${srcdir}/srclib/apr-util/apu-1-config"
> +else
> + APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", 1, 1)
> +fi
>
Regards
Rüdiger