Blame m4/progtest.m4

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