Blame build/m4/progtest.m4

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