Blame m4/progtest.m4

Packit d0bcc1
# progtest.m4 serial 7 (gettext-0.18.2)
Packit d0bcc1
dnl Copyright (C) 1996-2003, 2005, 2008-2016 Free Software Foundation, Inc.
Packit d0bcc1
dnl This file is free software; the Free Software Foundation
Packit d0bcc1
dnl gives unlimited permission to copy and/or distribute it,
Packit d0bcc1
dnl with or without modifications, as long as this notice is preserved.
Packit d0bcc1
dnl
Packit d0bcc1
dnl This file can be used in projects which are not available under
Packit d0bcc1
dnl the GNU General Public License or the GNU Library General Public
Packit d0bcc1
dnl License but which still want to provide support for the GNU gettext
Packit d0bcc1
dnl functionality.
Packit d0bcc1
dnl Please note that the actual code of the GNU gettext library is covered
Packit d0bcc1
dnl by the GNU Library General Public License, and the rest of the GNU
Packit d0bcc1
dnl gettext package is covered by the GNU General Public License.
Packit d0bcc1
dnl They are *not* in the public domain.
Packit d0bcc1
Packit d0bcc1
dnl Authors:
Packit d0bcc1
dnl   Ulrich Drepper <drepper@cygnus.com>, 1996.
Packit d0bcc1
Packit d0bcc1
AC_PREREQ([2.50])
Packit d0bcc1
Packit d0bcc1
# Search path for a program which passes the given test.
Packit d0bcc1
Packit d0bcc1
dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
Packit d0bcc1
dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
Packit d0bcc1
AC_DEFUN([AM_PATH_PROG_WITH_TEST],
Packit d0bcc1
[
Packit d0bcc1
# Prepare PATH_SEPARATOR.
Packit d0bcc1
# The user is always right.
Packit d0bcc1
if test "${PATH_SEPARATOR+set}" != set; then
Packit d0bcc1
  # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which
Packit d0bcc1
  # contains only /bin. Note that ksh looks also at the FPATH variable,
Packit d0bcc1
  # so we have to set that as well for the test.
Packit d0bcc1
  PATH_SEPARATOR=:
Packit d0bcc1
  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
Packit d0bcc1
    && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
Packit d0bcc1
           || PATH_SEPARATOR=';'
Packit d0bcc1
       }
Packit d0bcc1
fi
Packit d0bcc1
Packit d0bcc1
# Find out how to test for executable files. Don't use a zero-byte file,
Packit d0bcc1
# as systems may use methods other than mode bits to determine executability.
Packit d0bcc1
cat >conf$$.file <<_ASEOF
Packit d0bcc1
#! /bin/sh
Packit d0bcc1
exit 0
Packit d0bcc1
_ASEOF
Packit d0bcc1
chmod +x conf$$.file
Packit d0bcc1
if test -x conf$$.file >/dev/null 2>&1; then
Packit d0bcc1
  ac_executable_p="test -x"
Packit d0bcc1
else
Packit d0bcc1
  ac_executable_p="test -f"
Packit d0bcc1
fi
Packit d0bcc1
rm -f conf$$.file
Packit d0bcc1
Packit d0bcc1
# Extract the first word of "$2", so it can be a program name with args.
Packit d0bcc1
set dummy $2; ac_word=[$]2
Packit d0bcc1
AC_MSG_CHECKING([for $ac_word])
Packit d0bcc1
AC_CACHE_VAL([ac_cv_path_$1],
Packit d0bcc1
[case "[$]$1" in
Packit d0bcc1
  [[\\/]]* | ?:[[\\/]]*)
Packit d0bcc1
    ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
Packit d0bcc1
    ;;
Packit d0bcc1
  *)
Packit d0bcc1
    ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
Packit d0bcc1
    for ac_dir in ifelse([$5], , $PATH, [$5]); do
Packit d0bcc1
      IFS="$ac_save_IFS"
Packit d0bcc1
      test -z "$ac_dir" && ac_dir=.
Packit d0bcc1
      for ac_exec_ext in '' $ac_executable_extensions; do
Packit d0bcc1
        if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
Packit d0bcc1
          echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD
Packit d0bcc1
          if [$3]; then
Packit d0bcc1
            ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext"
Packit d0bcc1
            break 2
Packit d0bcc1
          fi
Packit d0bcc1
        fi
Packit d0bcc1
      done
Packit d0bcc1
    done
Packit d0bcc1
    IFS="$ac_save_IFS"
Packit d0bcc1
dnl If no 4th arg is given, leave the cache variable unset,
Packit d0bcc1
dnl so AC_PATH_PROGS will keep looking.
Packit d0bcc1
ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
Packit d0bcc1
])dnl
Packit d0bcc1
    ;;
Packit d0bcc1
esac])dnl
Packit d0bcc1
$1="$ac_cv_path_$1"
Packit d0bcc1
if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
Packit d0bcc1
  AC_MSG_RESULT([$][$1])
Packit d0bcc1
else
Packit d0bcc1
  AC_MSG_RESULT([no])
Packit d0bcc1
fi
Packit d0bcc1
AC_SUBST([$1])dnl
Packit d0bcc1
])