Show
Ignore:
Timestamp:
07/20/07 16:04:50 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1184940290 +0000
git-parent:

[609cba8d6ca805bef4dca561a4d275af28da6a69]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1184940290 +0000
Message:

Resync gettext with contrib

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • m4/progtest.m4

    r7a508b3 r8b91a2d  
    1 # progtest.m4 serial 2 (gettext-0.10.40) 
    2 dnl Copyright (C) 1996-2002 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. 
     1# progtest.m4 serial 4 (gettext-0.14.2) 
     2dnl Copyright (C) 1996-2003, 2005 Free Software Foundation, Inc. 
     3dnl This file is free software; the Free Software Foundation 
     4dnl gives unlimited permission to copy and/or distribute it, 
     5dnl with or without modifications, as long as this notice is preserved. 
    86dnl 
    97dnl This file can can be used in projects which are not available under 
     
    1917dnl   Ulrich Drepper <drepper@cygnus.com>, 1996. 
    2018 
     19AC_PREREQ(2.50) 
     20 
    2121# Search path for a program which passes the given test. 
    2222 
     
    2424dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) 
    2525AC_DEFUN([AM_PATH_PROG_WITH_TEST], 
    26 [# Extract the first word of "$2", so it can be a program name with args. 
     26
     27# Prepare PATH_SEPARATOR. 
     28# The user is always right. 
     29if test "${PATH_SEPARATOR+set}" != set; then 
     30  echo "#! /bin/sh" >conf$$.sh 
     31  echo  "exit 0"   >>conf$$.sh 
     32  chmod +x conf$$.sh 
     33  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 
     34    PATH_SEPARATOR=';' 
     35  else 
     36    PATH_SEPARATOR=: 
     37  fi 
     38  rm -f conf$$.sh 
     39fi 
     40 
     41# Find out how to test for executable files. Don't use a zero-byte file, 
     42# as systems may use methods other than mode bits to determine executability. 
     43cat >conf$$.file <<_ASEOF 
     44#! /bin/sh 
     45exit 0 
     46_ASEOF 
     47chmod +x conf$$.file 
     48if test -x conf$$.file >/dev/null 2>&1; then 
     49  ac_executable_p="test -x" 
     50else 
     51  ac_executable_p="test -f" 
     52fi 
     53rm -f conf$$.file 
     54 
     55# Extract the first word of "$2", so it can be a program name with args. 
    2756set dummy $2; ac_word=[$]2 
    2857AC_MSG_CHECKING([for $ac_word]) 
    2958AC_CACHE_VAL(ac_cv_path_$1, 
    3059[case "[$]$1" in 
    31   /*) 
    32   ac_cv_path_$1="[$]$1" # Let the user override the test with a path. 
    33   ;; 
     60  [[\\/]]* | ?:[[\\/]]*) 
     61    ac_cv_path_$1="[$]$1" # Let the user override the test with a path. 
     62    ;; 
    3463  *) 
    35   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:" 
    36   for ac_dir in ifelse([$5], , $PATH, [$5]); do 
    37     test -z "$ac_dir" && ac_dir=. 
    38     if test -f $ac_dir/$ac_word; then 
    39       if [$3]; then 
    40     ac_cv_path_$1="$ac_dir/$ac_word" 
    41     break 
    42       fi 
    43     fi 
    44   done 
    45   IFS="$ac_save_ifs" 
     64    ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR 
     65    for ac_dir in ifelse([$5], , $PATH, [$5]); do 
     66      IFS="$ac_save_IFS" 
     67      test -z "$ac_dir" && ac_dir=. 
     68      for ac_exec_ext in '' $ac_executable_extensions; do 
     69        if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then 
     70          echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD 
     71          if [$3]; then 
     72            ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" 
     73            break 2 
     74          fi 
     75        fi 
     76      done 
     77    done 
     78    IFS="$ac_save_IFS" 
    4679dnl If no 4th arg is given, leave the cache variable unset, 
    4780dnl so AC_PATH_PROGS will keep looking. 
    4881ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" 
    4982])dnl 
    50   ;; 
     83    ;; 
    5184esac])dnl 
    5285$1="$ac_cv_path_$1"