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