Blame m4/progtest.m4

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