Blame m4/progtest.m4

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