progtest.m4 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # progtest.m4 serial 3 (gettext-0.12)
  2. dnl Copyright (C) 1996-2003 Free Software Foundation, Inc.
  3. dnl This file is free software, distributed under the terms of the GNU
  4. dnl General Public License. As a special exception to the GNU General
  5. dnl Public License, this file may be distributed as part of a program
  6. dnl that contains a configuration script generated by Autoconf, under
  7. dnl the same distribution terms as the rest of that program.
  8. dnl
  9. dnl This file can can be used in projects which are not available under
  10. dnl the GNU General Public License or the GNU Library General Public
  11. dnl License but which still want to provide support for the GNU gettext
  12. dnl functionality.
  13. dnl Please note that the actual code of the GNU gettext library is covered
  14. dnl by the GNU Library General Public License, and the rest of the GNU
  15. dnl gettext package package is covered by the GNU General Public License.
  16. dnl They are *not* in the public domain.
  17. dnl Authors:
  18. dnl Ulrich Drepper <drepper@cygnus.com>, 1996.
  19. # Search path for a program which passes the given test.
  20. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
  21. dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
  22. AC_DEFUN([AM_PATH_PROG_WITH_TEST],
  23. [
  24. # Prepare PATH_SEPARATOR.
  25. # The user is always right.
  26. if test "${PATH_SEPARATOR+set}" != set; then
  27. echo "#! /bin/sh" >conf$$.sh
  28. echo "exit 0" >>conf$$.sh
  29. chmod +x conf$$.sh
  30. if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
  31. PATH_SEPARATOR=';'
  32. else
  33. PATH_SEPARATOR=:
  34. fi
  35. rm -f conf$$.sh
  36. fi
  37. # Find out how to test for executable files. Don't use a zero-byte file,
  38. # as systems may use methods other than mode bits to determine executability.
  39. cat >conf$$.file <<_ASEOF
  40. #! /bin/sh
  41. exit 0
  42. _ASEOF
  43. chmod +x conf$$.file
  44. if test -x conf$$.file >/dev/null 2>&1; then
  45. ac_executable_p="test -x"
  46. else
  47. ac_executable_p="test -f"
  48. fi
  49. rm -f conf$$.file
  50. # Extract the first word of "$2", so it can be a program name with args.
  51. set dummy $2; ac_word=[$]2
  52. AC_MSG_CHECKING([for $ac_word])
  53. AC_CACHE_VAL(ac_cv_path_$1,
  54. [case "[$]$1" in
  55. [[\\/]]* | ?:[[\\/]]*)
  56. ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
  57. ;;
  58. *)
  59. ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
  60. for ac_dir in ifelse([$5], , $PATH, [$5]); do
  61. IFS="$ac_save_IFS"
  62. test -z "$ac_dir" && ac_dir=.
  63. for ac_exec_ext in '' $ac_executable_extensions; do
  64. if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
  65. if [$3]; then
  66. ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext"
  67. break 2
  68. fi
  69. fi
  70. done
  71. done
  72. IFS="$ac_save_IFS"
  73. dnl If no 4th arg is given, leave the cache variable unset,
  74. dnl so AC_PATH_PROGS will keep looking.
  75. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
  76. ])dnl
  77. ;;
  78. esac])dnl
  79. $1="$ac_cv_path_$1"
  80. if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
  81. AC_MSG_RESULT([$]$1)
  82. else
  83. AC_MSG_RESULT(no)
  84. fi
  85. AC_SUBST($1)dnl
  86. ])