Blame m4/progtest.m4

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