From 8d5bcd338d2019fa37b60d267be49da9d324628d Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 13 Oct 2003 15:56:27 -0500 Subject: [svn-r7618] Purpose: Add check Description: Added a check to make sure that the "tr" program actually works. Platforms tested: Linux (small fix and only to configure) Misc. update: --- configure | 20 ++++++++++++++++---- configure.in | 13 +++++++++++++ 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/configure b/configure index eceb3ae..693e162 100755 --- a/configure +++ b/configure @@ -1535,6 +1535,18 @@ set >&5 echo "$as_me:$LINENO: result: done" >&5 echo "${ECHO_T}done" >&6 +echo "$as_me:$LINENO: checking if tr works" >&5 +echo $ECHO_N "checking if tr works... $ECHO_C" >&6 +TRTEST=`echo "Test" | tr 'a-z,' 'A-Z '` +if test $TRTEST != "TEST"; then + { { echo "$as_me:$LINENO: error: tr program doesn't work" >&5 +echo "$as_me: error: tr program doesn't work" >&2;} + { (exit 1); exit 1; }; } +else + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 +fi + echo "$as_me:$LINENO: checking for cached host" >&5 echo $ECHO_N "checking for cached host... $ECHO_C" >&6 if test "${hdf5_cv_host+set}" = set; then @@ -3979,7 +3991,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 3982 "configure"' > conftest.$ac_ext + echo '#line 3994 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -4520,7 +4532,7 @@ chmod -w . save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" compiler_c_o=no -if { (eval echo configure:4523: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then +if { (eval echo configure:4535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test -s out/conftest.err; then @@ -6327,7 +6339,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&AS_MESSAGE_LOG_FD AC_MSG_RESULT([done]) dnl ---------------------------------------------------------------------- +dnl Some platforms have broken ``tr'' programs. Check that it actually +dnl does what it's supposed to do. Catch this early since configure +dnl relies upon tr heavily and there's no use continuing if it's broken. +dnl +AC_MSG_CHECKING([if tr works]) +TRTEST=`echo "Test" | tr 'a-z,' 'A-Z '` +if test $TRTEST != "TEST"; then + AC_MSG_ERROR([tr program doesn't work]) +else + AC_MSG_RESULT([yes]) +fi + +dnl ---------------------------------------------------------------------- dnl Check that the cache file was build on the same host as what we're dnl running on now. dnl -- cgit v0.12