⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure

📁 fortran并行计算包
💻
📖 第 1 页 / 共 5 页
字号:
	The GNU make (sometimes available as gnumake) can be used." >&5echo "$as_me: error: No virtual MAKE path command found.	You may need to set your make command.	The GNU make (sometimes available as gnumake) can be used." >&2;}   { (exit 1); exit 1; }; }fi# Find a good install program.  We prefer a C program (faster),# so one script is as good as another.  But avoid the broken or# incompatible versions:# SysV /etc/install, /usr/sbin/install# SunOS /usr/etc/install# IRIX /sbin/install# AIX /bin/install# AmigaOS /C/install, which installs bootblocks on floppy discs# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag# AFS /usr/afsws/bin/install, which mishandles nonexistent args# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"# OS/2's system install, which has a completely different semantic# ./install, which can be erroneously created by make from ./install.sh.echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6if test -z "$INSTALL"; thenif test "${ac_cv_path_install+set}" = set; then  echo $ECHO_N "(cached) $ECHO_C" >&6else  as_save_IFS=$IFS; IFS=$PATH_SEPARATORfor as_dir in $PATHdo  IFS=$as_save_IFS  test -z "$as_dir" && as_dir=.  # Account for people who put trailing slashes in PATH elements.case $as_dir/ in  ./ | .// | /cC/* | \  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \  /usr/ucb/* ) ;;  *)    # OSF1 and SCO ODT 3.0 have their own names for install.    # Don't use installbsd from OSF since it installs stuff as root    # by default.    for ac_prog in ginstall scoinst install; do      for ac_exec_ext in '' $ac_executable_extensions; do	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then	  if test $ac_prog = install &&	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then	    # AIX install.  It has an incompatible calling convention.	    :	  elif test $ac_prog = install &&	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then	    # program-specific install script used by HP pwplus--don't use.	    :	  else	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"	    break 3	  fi	fi      done    done    ;;esacdonefi  if test "${ac_cv_path_install+set}" = set; then    INSTALL=$ac_cv_path_install  else    # As a last resort, use the slow shell script.  We don't cache a    # path for INSTALL within a source directory, because that will    # break other packages using the cache if that directory is    # removed, or if the path is relative.    INSTALL=$ac_install_sh  fifiecho "$as_me:$LINENO: result: $INSTALL" >&5echo "${ECHO_T}$INSTALL" >&6# Use test -z because SunOS4 sh mishandles braces in ${var-val}.# It thinks the first close brace ends the variable substitution.test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'if test -z "$INSTALL" ; then    echo "$as_me:$LINENO: result: No install program available" >&5echo "${ECHO_T}No install program available" >&6else    # Check that this install really works    rm -f conftest    echo "Test file" > conftest    if test ! -d .conftest ; then mkdir .conftest ; fi    echo "$as_me:$LINENO: checking whether install works" >&5echo $ECHO_N "checking whether install works... $ECHO_C" >&6    if $INSTALL conftest .conftest >/dev/null 2>&1 ; then        installOk=yes    else        installOk=no    fi    rm -rf .conftest conftest    echo "$as_me:$LINENO: result: $installOk" >&5echo "${ECHO_T}$installOk" >&6    if test "$installOk" = no ; then        if test -n "$ac_install_sh" ; then            INSTALL=$ac_install_sh        else	    { { echo "$as_me:$LINENO: error: Unable to find working install" >&5echo "$as_me: error: Unable to find working install" >&2;}   { (exit 1); exit 1; }; }        fi    fifiCPRP=cpMKDIR=mkdirRM="rm -f"MV="mv -f"# Check if --without-java is specifiedif test "$JRE_TOPDIR" = "no" ; thenif test "$enable_softerror" = "yes" ; then    { echo "$as_me:$LINENO: WARNING:  --without-java is specified, exit! " >&5echo "$as_me: WARNING:  --without-java is specified, exit! " >&2;}    exit 0else    { { echo "$as_me:$LINENO: error:  --without-java is specified, exit! " >&5echo "$as_me: error:  --without-java is specified, exit! " >&2;}   { (exit 1); exit 1; }; }fifiif test $enable_jdb = "yes" ; then    pac_JVM=jdb#   Assume jdb is working    is_jvm_working=yeselse    pac_JVM=javaecho "$as_me:$LINENO: checking if CLASSPATH is set" >&5echo $ECHO_N "checking if CLASSPATH is set... $ECHO_C" >&6if test "x$CLASSPATH" != "x" ; then    echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6    echo "$as_me:$LINENO: checking if CLASSPATH contains current path" >&5echo $ECHO_N "checking if CLASSPATH contains current path... $ECHO_C" >&6    IFS="${IFS=   }"; jac_saved_ifs="$IFS"; IFS=":"    jac_hasCurrPath=no    for path_elem in $CLASSPATH ; do        if test "X$path_elem" = "X." ; then            jac_hasCurrPath=yes        fi    done    IFS="$jac_saved_ifs"    if test "$jac_hasCurrPath" = "no" ; then        echo "$as_me:$LINENO: result: no, prepend . to CLASSPATH" >&5echo "${ECHO_T}no, prepend . to CLASSPATH" >&6        CLASSPATH=".:$CLASSPATH"        export CLASSPATH    else        echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6    fielse    echo "$as_me:$LINENO: result: no, good to go" >&5echo "${ECHO_T}no, good to go" >&6fi    is_jvm_working=no    if test "x$JRE_TOPDIR" != "x" ; then        JVM="$JRE_TOPDIR/bin/$pac_JVM"        echo "$as_me:$LINENO: checking if $JVM exists" >&5echo $ECHO_N "checking if $JVM exists... $ECHO_C" >&6        if test -x "$JVM" ; then            echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6            jac_java_working=yes        else            echo "$as_me:$LINENO: result: no" >&5echo "${ECHO_T}no" >&6            jac_java_working=no        fi        if test "$jac_java_working" = "yes" ; then            echo "$as_me:$LINENO: checking if $JVM runs simple java class" >&5echo $ECHO_N "checking if $JVM runs simple java class... $ECHO_C" >&6jac_CPRP=cpjac_JVM="$JVM"jac_JVMFLAGS="$JVMFLAGS"jac_basename="`echo ac_javatest/simple.class | sed -e 's%.*/\([^/]*\)$%\1%'`"jac_baseclass="`echo $jac_basename | sed -e 's%.class$%%'`"if test ! -f "$jac_basename" ; then    if test -f "$srcdir/ac_javatest/simple.class" ; then        $jac_CPRP $srcdir/ac_javatest/simple.class .    else        { { echo "$as_me:$LINENO: error: $srcdir/ac_javatest/simple.class does NOT exist!" >&5echo "$as_me: error: $srcdir/ac_javatest/simple.class does NOT exist!" >&2;}   { (exit 1); exit 1; }; }    fifi    jac_command='${jac_JVM} ${jac_JVMFLAGS} ${jac_baseclass} 1>&5'    if { (eval echo "$as_me:$LINENO: \"$jac_command\"") >&5  (eval $jac_command) 2>&5  ac_status=$?  echo "$as_me:$LINENO: \$? = $ac_status" >&5  (exit $ac_status); } ; then        jac_java_working=yes    else        jac_java_working=no    fi            if test "$jac_java_working" = "yes" ; then                echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6            else                echo "$as_me:$LINENO: result: no" >&5echo "${ECHO_T}no" >&6            fi        fi        if test "$jac_java_working" = "yes" ; then            echo "$as_me:$LINENO: checking if $JVM runs simple jar file" >&5echo $ECHO_N "checking if $JVM runs simple jar file... $ECHO_C" >&6jac_CPRP=cpjac_JVM="$JVM"jac_JVMFLAGS="$JVMFLAGS"jac_basename="`echo ac_javatest/simple.jar | sed -e 's%.*/\([^/]*\)$%\1%'`"if test ! -f "$jac_basename" ; then    if test -f "$srcdir/ac_javatest/simple.jar" ; then        $jac_CPRP $srcdir/ac_javatest/simple.jar .    else        { { echo "$as_me:$LINENO: error: $srcdir/ac_javatest/simple.jar does NOT exist!" >&5echo "$as_me: error: $srcdir/ac_javatest/simple.jar does NOT exist!" >&2;}   { (exit 1); exit 1; }; }    fifi    jac_command='${jac_JVM} ${jac_JVMFLAGS} -jar ${jac_basename} 1>&5'    if { (eval echo "$as_me:$LINENO: \"$jac_command\"") >&5  (eval $jac_command) 2>&5  ac_status=$?  echo "$as_me:$LINENO: \$? = $ac_status" >&5  (exit $ac_status); } ; then        jac_java_working=yes    else        jac_java_working=no    fi            if test "$jac_java_working" = "yes" ; then                echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6            else                echo "$as_me:$LINENO: result: no" >&5echo "${ECHO_T}no" >&6            fi        fi        if test "$jac_java_working" = "yes" \             -a "$enable_swingcheck" = "yes" ; then            echo "$as_me:$LINENO: checking if $JVM runs simple Swing class" >&5echo $ECHO_N "checking if $JVM runs simple Swing class... $ECHO_C" >&6jac_CPRP=cpjac_JVM="$JVM"jac_JVMFLAGS="$JVMFLAGS"jac_basename="`echo ac_javatest/simple_swing.class | sed -e 's%.*/\([^/]*\)$%\1%'`"jac_baseclass="`echo $jac_basename | sed -e 's%.class$%%'`"if test ! -f "$jac_basename" ; then    if test -f "$srcdir/ac_javatest/simple_swing.class" ; then        $jac_CPRP $srcdir/ac_javatest/simple_swing.class .    else        { { echo "$as_me:$LINENO: error: $srcdir/ac_javatest/simple_swing.class does NOT exist!" >&5echo "$as_me: error: $srcdir/ac_javatest/simple_swing.class does NOT exist!" >&2;}   { (exit 1); exit 1; }; }    fifi    jac_command='${jac_JVM} ${jac_JVMFLAGS} ${jac_baseclass} 1>&5'    if { (eval echo "$as_me:$LINENO: \"$jac_command\"") >&5  (eval $jac_command) 2>&5  ac_status=$?  echo "$as_me:$LINENO: \$? = $ac_status" >&5  (exit $ac_status); } ; then        jac_java_working=yes    else        jac_java_working=no    fi            if test "$jac_java_working" = "yes" ; then                echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6            else                echo "$as_me:$LINENO: result: no" >&5echo "${ECHO_T}no" >&6            fi        fi        if test "$jac_java_working" = "yes" \              -a "$enable_swingcheck" = "yes" ; then            echo "$as_me:$LINENO: checking if $JVM runs simple Swing jar file" >&5echo $ECHO_N "checking if $JVM runs simple Swing jar file... $ECHO_C" >&6jac_CPRP=cpjac_JVM="$JVM"jac_JVMFLAGS="$JVMFLAGS"jac_basename="`echo ac_javatest/simple_swing.jar | sed -e 's%.*/\([^/]*\)$%\1%'`"if test ! -f "$jac_basename" ; then    if test -f "$srcdir/ac_javatest/simple_swing.jar" ; then        $jac_CPRP $srcdir/ac_javatest/simple_swing.jar .    else        { { echo "$as_me:$LINENO: error: $srcdir/ac_javatest/simple_swing.jar does NOT exist!" >&5echo "$as_me: error: $srcdir/ac_javatest/simple_swing.jar does NOT exist!" >&2;}   { (exit 1); exit 1; }; }    fifi    jac_command='${jac_JVM} ${jac_JVMFLAGS} -jar ${jac_basename} 1>&5'    if { (eval echo "$as_me:$LINENO: \"$jac_command\"") >&5  (eval $jac_command) 2>&5  ac_status=$?  echo "$as_me:$LINENO: \$? = $ac_status" >&5  (exit $ac_status); } ; then        jac_java_working=yes    else        jac_java_working=no    fi            if test "$jac_java_working" = "yes" ; then                echo "$as_me:$LINENO: result: yes" >&5echo "${ECHO_T}yes" >&6            else                echo "$as_me:$LINENO: result: no" >&5echo "${ECHO_T}no" >&6            fi        fi        if test "$jac_java_working" = "yes" ; then            is_jvm_working=yes        else            is_jvm_working=no        fi    fi#    if test "$is_jvm_working" = "no" ; then        # Make sure we can run config.sub.$ac_config_sub sun4 >/dev/null 2>&1 ||  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5echo "$as_me: error: cannot run $ac_config_sub" >&2;}   { (exit 1); exit 1; }; }echo "$as_me:$LINENO: checking build system type" >&5echo $ECHO_N "checking build system type... $ECHO_C" >&6if test "${ac_cv_build+set}" = set; then  echo $ECHO_N "(cached) $ECHO_C" >&6else  ac_cv_build_alias=$build_aliastest -z "$ac_cv_build_alias" &&  ac_cv_build_alias=`$ac_config_guess`test -z "$ac_cv_build_alias" &&  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5echo "$as_me: error: cannot guess build type; you must specify one" >&2;}   { (exit 1); exit 1; }; }ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}   { (exit 1); exit 1; }; }fiecho "$as_me:$LINENO: result: $ac_cv_build" >&5echo "${ECHO_T}$ac_cv_build" >&6build=$ac_cv_buildbuild_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`echo "$as_me:$LINENO: checking host system type" >&5echo $ECHO_N "checking host system type... $ECHO_C" >&6if test "${ac_cv_host+set}" = set; then  echo $ECHO_N "(cached) $ECHO_C" >&6else  ac_cv_host_alias=$host_aliastest -z "$ac_cv_host_alias" &&  ac_cv_host_alias=$ac_cv_build_aliasac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}   { (exit 1); exit 1; }; }fiecho "$as_me:$LINENO: result: $ac_cv_host" >&5echo "${ECHO_T}$ac_cv_host" >&6host=$ac_cv_hosthost_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`host_os=`echo $ac_cv_host | sed 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -