diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-09 20:24:38 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-09 20:24:38 +0000 |
commit | acaeed035b60d61199a5c6db8d387048f63fbc21 (patch) | |
tree | 6a38275033392ec6d8da7a6e74a8e52950690c7a /configure | |
parent | 4e9733c2e1fc1d095cece7a1577d6b97c4618d2e (diff) | |
download | coreutils-acaeed035b60d61199a5c6db8d387048f63fbc21.tar.xz |
Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 102 |
1 files changed, 94 insertions, 8 deletions
@@ -1783,6 +1783,7 @@ ac_header_list="$ac_header_list string.h" ac_func_list="$ac_func_list setlocale" ac_func_list="$ac_func_list isascii" ac_func_list="$ac_func_list mbsinit" +ac_func_list="$ac_func_list strxfrm" ac_func_list="$ac_func_list lchmod" ac_header_list="$ac_header_list utmpx.h" ac_func_list="$ac_func_list utmpname" @@ -13255,10 +13256,10 @@ esac { echo "$as_me:$LINENO: checking for C/C++ restrict keyword" >&5 echo $ECHO_N "checking for C/C++ restrict keyword... $ECHO_C" >&6; } -if test "${gl_cv_c_restrict+set}" = set; then +if test "${ac_cv_c_restrict+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - gl_cv_c_restrict=no + ac_cv_c_restrict=no # Try the official restrict keyword, then gcc's __restrict, and # the less common variants. for ac_kw in restrict __restrict __restrict__ _Restrict; do @@ -13268,7 +13269,20 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -float * $ac_kw x; +typedef int * int_ptr; + int foo (int_ptr $ac_kw ip) { + return ip[0]; + } +int +main () +{ +int s[1]; + int * $ac_kw t = s; + t[0] = 0; + return foo(t) + ; + return 0; +} _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" @@ -13304,7 +13318,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - gl_cv_c_restrict=$ac_kw; break + ac_cv_c_restrict=$ac_kw else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 @@ -13313,12 +13327,13 @@ sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test "$ac_cv_c_restrict" != no && break done fi -{ echo "$as_me:$LINENO: result: $gl_cv_c_restrict" >&5 -echo "${ECHO_T}$gl_cv_c_restrict" >&6; } - case $gl_cv_c_restrict in +{ echo "$as_me:$LINENO: result: $ac_cv_c_restrict" >&5 +echo "${ECHO_T}$ac_cv_c_restrict" >&6; } + case $ac_cv_c_restrict in restrict) ;; no) cat >>confdefs.h <<\_ACEOF @@ -13326,7 +13341,7 @@ cat >>confdefs.h <<\_ACEOF _ACEOF ;; *) cat >>confdefs.h <<_ACEOF -#define restrict $gl_cv_c_restrict +#define restrict $ac_cv_c_restrict _ACEOF ;; esac @@ -15038,6 +15053,17 @@ esac case " $LIBOBJS " in + *" close-stream.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS close-stream.$ac_objext" + ;; +esac + + + : + + + + case " $LIBOBJS " in *" closeout.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS closeout.$ac_objext" ;; @@ -32348,6 +32374,26 @@ fi + + + case " $LIBOBJS " in + *" memxfrm.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS memxfrm.$ac_objext" + ;; +esac + + + + + + + + + + + + + case " $LIBOBJS " in *" mkancesdirs.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS mkancesdirs.$ac_objext" @@ -35710,6 +35756,41 @@ esac case " $LIBOBJS " in + *" randint.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS randint.$ac_objext" + ;; +esac + + + + + + + case " $LIBOBJS " in + *" randperm.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS randperm.$ac_objext" + ;; +esac + + + + + case " $LIBOBJS " in + *" randread.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS randread.$ac_objext" + ;; +esac + + case " $LIBOBJS " in + *" rand-isaac.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS rand-isaac.$ac_objext" + ;; +esac + + + + + case " $LIBOBJS " in *" readtokens.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS readtokens.$ac_objext" ;; @@ -45377,6 +45458,11 @@ esac + + + + + for ac_func in dirfd do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |