Blame m4/progtest.m4

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