Changeset 16613 for gs2runtime


Ignore:
Timestamp:
2008-07-31T09:59:24+12:00 (16 years ago)
Author:
davidb
Message:

configure regenerated

Location:
gs2runtime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gs2runtime/configure

    r16612 r16613  
    69716971
    69726972
    6973 
    6974 echo "$as_me:$LINENO: checking that Perl 5 is available" >&5
    6975 echo $ECHO_N "checking that Perl 5 is available... $ECHO_C" >&6
    6976 success="no"
    6977 pl_path="$PATH"
    6978 IFS="${IFS=   }"; pl_save_ifs="$IFS"; IFS=":"
    6979 for pl_dir in $pl_path; do
    6980   test -z "$pl_dir" && pl_dir=.
    6981   if test -x $pl_dir/perl; then
    6982     success="yes"
    6983     break
    6984   fi
    6985 done
    6986 IFS="$pl_save_ifs"
    6987 
    6988 if test $success = "yes"; then
    6989 try=`perl configtest.pl` || try="0"
    6990 try=`expr $try \> 5.000`
    6991 if test $try = "1"; then
    6992 echo "$as_me:$LINENO: result: \"yes\"" >&5
    6993 echo "${ECHO_T}\"yes\"" >&6
    6994 else
    6995 success="no"
    6996 fi
    6997 fi
    6998 
    6999 if test $success = "no"; then
    7000 echo "$as_me:$LINENO: result: \"no\"" >&5
    7001 echo "${ECHO_T}\"no\"" >&6
    7002 { { echo "$as_me:$LINENO: error: \"Perl 5 not available - cannot install\"" >&5
    7003 echo "$as_me: error: \"Perl 5 not available - cannot install\"" >&2;}
    7004    { (exit 1); exit 1; }; }
    7005 fi
    70066973
    70076974success=no
  • gs2runtime/configure.in

    r16608 r16613  
    323323
    324324dnl
    325 dnl Now check that Perl is actually around, and can be found
    326 dnl
    327 AC_MSG_CHECKING(that Perl 5 is available)
    328 success="no"
    329 pl_path="$PATH"
    330 IFS="${IFS=   }"; pl_save_ifs="$IFS"; IFS=":"
    331 for pl_dir in $pl_path; do
    332   test -z "$pl_dir" && pl_dir=.
    333   if test -x $pl_dir/perl; then
    334     success="yes"
    335     break
    336   fi
    337 done
    338 IFS="$pl_save_ifs"
    339 
    340 dnl
    341 dnl Perl actually can be run; now we see if it is version 5 by
    342 dnl running a sample script (which returns a "clean" version number
    343 dnl and then tests the result using expr.  If perl errors in some
    344 dnl way (eg. broken Perl executable, missing script), we set a failure
    345 dnl value ("0") and then proceed as best we can
    346 dnl
    347 if test $success = "yes"; then
    348 try=`perl configtest.pl` || try="0"
    349 try=`expr $try \> 5.000`
    350 if test $try = "1"; then
    351 AC_MSG_RESULT("yes")
    352 else
    353 success="no"
    354 fi
    355 fi
    356 
    357 if test $success = "no"; then
    358 AC_MSG_RESULT("no")
    359 AC_MSG_ERROR("Perl 5 not available - cannot install")
    360 fi
    361 
    362 dnl
    363325dnl Check if the STL library has any known faults;
    364326dnl In GCC 2.7.2.x series, some STL library headers are missing
Note: See TracChangeset for help on using the changeset viewer.