Blame build/find_apr.m4

Packit 383869
dnl -------------------------------------------------------- -*- autoconf -*-
Packit 383869
dnl Licensed to the Apache Software Foundation (ASF) under one or more
Packit 383869
dnl contributor license agreements.  See the NOTICE file distributed with
Packit 383869
dnl this work for additional information regarding copyright ownership.
Packit 383869
dnl The ASF licenses this file to You under the Apache License, Version 2.0
Packit 383869
dnl (the "License"); you may not use this file except in compliance with
Packit 383869
dnl the License.  You may obtain a copy of the License at
Packit 383869
dnl
Packit 383869
dnl     http://www.apache.org/licenses/LICENSE-2.0
Packit 383869
dnl
Packit 383869
dnl Unless required by applicable law or agreed to in writing, software
Packit 383869
dnl distributed under the License is distributed on an "AS IS" BASIS,
Packit 383869
dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 383869
dnl See the License for the specific language governing permissions and
Packit 383869
dnl limitations under the License.
Packit 383869
Packit 383869
dnl
Packit 383869
dnl find_apr.m4 : locate the APR include files and libraries
Packit 383869
dnl
Packit 383869
dnl This macro file can be used by applications to find and use the APR
Packit 383869
dnl library. It provides a standardized mechanism for using APR. It supports
Packit 383869
dnl embedding APR into the application source, or locating an installed
Packit 383869
dnl copy of APR.
Packit 383869
dnl
Packit 383869
dnl APR_FIND_APR(srcdir, builddir, implicit-install-check, acceptable-majors,
Packit 383869
dnl              detailed-check)
Packit 383869
dnl
Packit 383869
dnl   where srcdir is the location of the bundled APR source directory, or
Packit 383869
dnl   empty if source is not bundled.
Packit 383869
dnl
Packit 383869
dnl   where builddir is the location where the bundled APR will will be built,
Packit 383869
dnl   or empty if the build will occur in the srcdir.
Packit 383869
dnl
Packit 383869
dnl   where implicit-install-check set to 1 indicates if there is no
Packit 383869
dnl   --with-apr option specified, we will look for installed copies.
Packit 383869
dnl
Packit 383869
dnl   where acceptable-majors is a space separated list of acceptable major
Packit 383869
dnl   version numbers. Often only a single major version will be acceptable.
Packit 383869
dnl   If multiple versions are specified, and --with-apr=PREFIX or the
Packit 383869
dnl   implicit installed search are used, then the first (leftmost) version
Packit 383869
dnl   in the list that is found will be used.  Currently defaults to [0 1].
Packit 383869
dnl
Packit 383869
dnl   where detailed-check is an M4 macro which sets the apr_acceptable to
Packit 383869
dnl   either "yes" or "no". The macro will be invoked for each installed
Packit 383869
dnl   copy of APR found, with the apr_config variable set appropriately.
Packit 383869
dnl   Only installed copies of APR which are considered acceptable by
Packit 383869
dnl   this macro will be considered found. If no installed copies are
Packit 383869
dnl   considered acceptable by this macro, apr_found will be set to either
Packit 383869
dnl   either "no" or "reconfig".
Packit 383869
dnl
Packit 383869
dnl Sets the following variables on exit:
Packit 383869
dnl
Packit 383869
dnl   apr_found : "yes", "no", "reconfig"
Packit 383869
dnl
Packit 383869
dnl   apr_config : If the apr-config tool exists, this refers to it. If
Packit 383869
dnl                apr_found is "reconfig", then the bundled directory
Packit 383869
dnl                should be reconfigured *before* using apr_config.
Packit 383869
dnl
Packit 383869
dnl Note: this macro file assumes that apr-config has been installed; it
Packit 383869
dnl       is normally considered a required part of an APR installation.
Packit 383869
dnl
Packit 383869
dnl If a bundled source directory is available and needs to be (re)configured,
Packit 383869
dnl then apr_found is set to "reconfig". The caller should reconfigure the
Packit 383869
dnl (passed-in) source directory, placing the result in the build directory,
Packit 383869
dnl as appropriate.
Packit 383869
dnl
Packit 383869
dnl If apr_found is "yes" or "reconfig", then the caller should use the
Packit 383869
dnl value of apr_config to fetch any necessary build/link information.
Packit 383869
dnl
Packit 383869
Packit 383869
AC_DEFUN([APR_FIND_APR], [
Packit 383869
  apr_found="no"
Packit 383869
Packit 383869
  if test "$target_os" = "os2-emx"; then
Packit 383869
    # Scripts don't pass test -x on OS/2
Packit 383869
    TEST_X="test -f"
Packit 383869
  else
Packit 383869
    TEST_X="test -x"
Packit 383869
  fi
Packit 383869
Packit 383869
  ifelse([$4], [], [
Packit 383869
         ifdef(AC_WARNING,AC_WARNING([$0: missing argument 4 (acceptable-majors): Defaulting to APR 0.x then APR 1.x]))
Packit 383869
         acceptable_majors="0 1"],
Packit 383869
         [acceptable_majors="$4"])
Packit 383869
Packit 383869
  apr_temp_acceptable_apr_config=""
Packit 383869
  for apr_temp_major in $acceptable_majors
Packit 383869
  do
Packit 383869
    case $apr_temp_major in
Packit 383869
      0)
Packit 383869
      apr_temp_acceptable_apr_config="$apr_temp_acceptable_apr_config apr-config"
Packit 383869
      ;;
Packit 383869
      *)
Packit 383869
      apr_temp_acceptable_apr_config="$apr_temp_acceptable_apr_config apr-$apr_temp_major-config"
Packit 383869
      ;;
Packit 383869
    esac
Packit 383869
  done
Packit 383869
Packit 383869
  AC_MSG_CHECKING(for APR)
Packit 383869
  AC_ARG_WITH(apr,
Packit 383869
  [  --with-apr=PATH         prefix for installed APR or the full path to 
Packit 383869
                             apr-config],
Packit 383869
  [
Packit 383869
    if test "$withval" = "no" || test "$withval" = "yes"; then
Packit 383869
      AC_MSG_ERROR([--with-apr requires a directory or file to be provided])
Packit 383869
    fi
Packit 383869
Packit 383869
    for apr_temp_apr_config_file in $apr_temp_acceptable_apr_config
Packit 383869
    do
Packit 383869
      for lookdir in "$withval/bin" "$withval"
Packit 383869
      do
Packit 383869
        if $TEST_X "$lookdir/$apr_temp_apr_config_file"; then
Packit 383869
          apr_config="$lookdir/$apr_temp_apr_config_file"
Packit 383869
          ifelse([$5], [], [], [
Packit 383869
          apr_acceptable="yes"
Packit 383869
          $5
Packit 383869
          if test "$apr_acceptable" != "yes"; then
Packit 383869
            AC_MSG_WARN([Found APR in $apr_config, but we think it is considered unacceptable])
Packit 383869
            continue
Packit 383869
          fi])
Packit 383869
          apr_found="yes"
Packit 383869
          break 2
Packit 383869
        fi
Packit 383869
      done
Packit 383869
    done
Packit 383869
Packit 383869
    if test "$apr_found" != "yes" && $TEST_X "$withval" && $withval --help > /dev/null 2>&1 ; then
Packit 383869
      apr_config="$withval"
Packit 383869
      ifelse([$5], [], [apr_found="yes"], [
Packit 383869
          apr_acceptable="yes"
Packit 383869
          $5
Packit 383869
          if test "$apr_acceptable" = "yes"; then
Packit 383869
                apr_found="yes"
Packit 383869
          fi])
Packit 383869
    fi
Packit 383869
Packit 383869
    dnl if --with-apr is used, it is a fatal error for its argument
Packit 383869
    dnl to be invalid
Packit 383869
    if test "$apr_found" != "yes"; then
Packit 383869
      AC_MSG_ERROR([the --with-apr parameter is incorrect. It must specify an install prefix, a build directory, or an apr-config file.])
Packit 383869
    fi
Packit 383869
  ],[
Packit 383869
    dnl If we allow installed copies, check those before using bundled copy.
Packit 383869
    if test -n "$3" && test "$3" = "1"; then
Packit 383869
      for apr_temp_apr_config_file in $apr_temp_acceptable_apr_config
Packit 383869
      do
Packit 383869
        if $apr_temp_apr_config_file --help > /dev/null 2>&1 ; then
Packit 383869
          apr_config="$apr_temp_apr_config_file"
Packit 383869
          ifelse([$5], [], [], [
Packit 383869
          apr_acceptable="yes"
Packit 383869
          $5
Packit 383869
          if test "$apr_acceptable" != "yes"; then
Packit 383869
            AC_MSG_WARN([skipped APR at $apr_config, version not acceptable])
Packit 383869
            continue
Packit 383869
          fi])
Packit 383869
          apr_found="yes"
Packit 383869
          break
Packit 383869
        else
Packit 383869
          dnl look in some standard places
Packit 383869
          for lookdir in /usr /usr/local /usr/local/apr /opt/apr; do
Packit 383869
            if $TEST_X "$lookdir/bin/$apr_temp_apr_config_file"; then
Packit 383869
              apr_config="$lookdir/bin/$apr_temp_apr_config_file"
Packit 383869
              ifelse([$5], [], [], [
Packit 383869
              apr_acceptable="yes"
Packit 383869
              $5
Packit 383869
              if test "$apr_acceptable" != "yes"; then
Packit 383869
                AC_MSG_WARN([skipped APR at $apr_config, version not acceptable])
Packit 383869
                continue
Packit 383869
              fi])
Packit 383869
              apr_found="yes"
Packit 383869
              break 2
Packit 383869
            fi
Packit 383869
          done
Packit 383869
        fi
Packit 383869
      done
Packit 383869
    fi
Packit 383869
    dnl if we have not found anything yet and have bundled source, use that
Packit 383869
    if test "$apr_found" = "no" && test -d "$1"; then
Packit 383869
      apr_temp_abs_srcdir="`cd \"$1\" && pwd`"
Packit 383869
      apr_found="reconfig"
Packit 383869
      apr_bundled_major="`sed -n '/#define.*APR_MAJOR_VERSION/s/^[^0-9]*\([0-9]*\).*$/\1/p' \"$1/include/apr_version.h\"`"
Packit 383869
      case $apr_bundled_major in
Packit 383869
        "")
Packit 383869
          AC_MSG_ERROR([failed to find major version of bundled APR])
Packit 383869
        ;;
Packit 383869
        0)
Packit 383869
          apr_temp_apr_config_file="apr-config"
Packit 383869
        ;;
Packit 383869
        *)
Packit 383869
          apr_temp_apr_config_file="apr-$apr_bundled_major-config"
Packit 383869
        ;;
Packit 383869
      esac
Packit 383869
      if test -n "$2"; then
Packit 383869
        apr_config="$2/$apr_temp_apr_config_file"
Packit 383869
      else
Packit 383869
        apr_config="$1/$apr_temp_apr_config_file"
Packit 383869
      fi
Packit 383869
    fi
Packit 383869
  ])
Packit 383869
Packit 383869
  AC_MSG_RESULT($apr_found)
Packit 383869
])