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

📄 configure

📁 Netscape NSPR库源码
💻
📖 第 1 页 / 共 5 页
字号:
*-aix*)    case "${target_os}" in    aix3.2*)        USE_NSPR_THREADS=1        ;;    *)        USE_PTHREADS=1        ;;    esac    ;;esacif test -z "$CC"; then    case "$target" in    *-aix*)        if test -z "$USE_NSPR_THREADS"; then            CC=xlC_r        else            CC=xlC        fi    ;;    *-hpux*)        CC=cc    ;;    *-irix*)        CC=cc    ;;    *-osf*)        CC=cc    ;;    *-solaris*)        CC=cc    ;;    esacfiif test -z "$CXX"; then    case "$target" in    *-aix*)        if test -z "$USE_NSPR_THREADS"; then            CXX=xlC_r        else            CXX=xlC        fi    ;;    *-hpux*)        case "${target_os}" in        hpux10.30)            CXX=aCC            ;;        hpux11.*)            CXX=aCC            ;;        *)            CXX=CC            ;;        esac    ;;    *-irix*)        CXX=CC    ;;    *-osf*)        CXX=cxx    ;;    *-solaris*)        CXX=CC    ;;    esacfiif test -z "$SKIP_PATH_CHECKS"; then    # Extract the first word of "$WHOAMI whoami", so it can be a program name with args.set dummy $WHOAMI whoami; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1000: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_path_WHOAMI'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  case "$WHOAMI" in  /*)  ac_cv_path_WHOAMI="$WHOAMI" # Let the user override the test with a path.  ;;  ?:/*)			   ac_cv_path_WHOAMI="$WHOAMI" # Let the user override the test with a dos path.  ;;  *)  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do     test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      ac_cv_path_WHOAMI="$ac_dir/$ac_word"      break    fi  done  IFS="$ac_save_ifs"  test -z "$ac_cv_path_WHOAMI" && ac_cv_path_WHOAMI="echo not_whoami"  ;;esacfiWHOAMI="$ac_cv_path_WHOAMI"if test -n "$WHOAMI"; then  echo "$ac_t""$WHOAMI" 1>&6else  echo "$ac_t""no" 1>&6fifiif test -n "$MOZ_DEBUG"; then    cat >> confdefs.h <<\EOF#define DEBUG 1EOF    DEFINES="$DEFINES -UNDEBUG"    case "${target_os}" in    beos*)        DEFINES="$DEFINES -DDEBUG_${USER}"        ;;    msvc*|mksnt*|cygwin*|mingw*)        DEFINES="$DEFINES -DDEBUG_`echo ${USERNAME} | sed -e 's| |_|g'`"        ;;    *)         DEFINES="$DEFINES -DDEBUG_`$WHOAMI`"        ;;    esacelse    cat >> confdefs.h <<\EOF#define NDEBUG 1EOF    DEFINES="$DEFINES -UDEBUG"fiif test -z "$SKIP_COMPILER_CHECKS"; thenif test "$target" != "$host"; then    echo "cross compiling from $host to $target"    cross_compiling=yes    _SAVE_CC="$CC"    _SAVE_CFLAGS="$CFLAGS"    _SAVE_LDFLAGS="$LDFLAGS"    echo $ac_n "checking for $host compiler""... $ac_c" 1>&6echo "configure:1071: checking for $host compiler" >&5    if test -z "$HOST_CC"; then	    for ac_prog in gcc cc /usr/ucb/ccdo# Extract the first word of "$ac_prog", so it can be a program name with args.set dummy $ac_prog; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1078: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_prog_HOST_CC'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  if test -n "$HOST_CC"; then  ac_cv_prog_HOST_CC="$HOST_CC" # Let the user override the test.else  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      ac_cv_prog_HOST_CC="$ac_prog"      break    fi  done  IFS="$ac_save_ifs"fifiHOST_CC="$ac_cv_prog_HOST_CC"if test -n "$HOST_CC"; then  echo "$ac_t""$HOST_CC" 1>&6else  echo "$ac_t""no" 1>&6fitest -n "$HOST_CC" && breakdonetest -n "$HOST_CC" || HOST_CC=""""	    if test -z "$HOST_CC"; then	        { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }	    fi    fi    echo "$ac_t""$HOST_CC" 1>&6    if test -z "$HOST_CFLAGS"; then	    HOST_CFLAGS="$CFLAGS"    fi    if test -z "$HOST_LDFLAGS"; then	    HOST_LDFLAGS="$LDFLAGS"    fi    CC="$HOST_CC"    CFLAGS="$HOST_CFLAGS"    LDFLAGS="$HOST_LDFLAGS"    echo $ac_n "checking whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works""... $ac_c" 1>&6echo "configure:1125: checking whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works" >&5    cat > conftest.$ac_ext <<EOF#line 1127 "configure"#include "confdefs.h"int main() {return(0);; return 0; }EOFif { (eval echo configure:1134: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then  rm -rf conftest*  ac_cv_prog_host_cc_works=1 echo "$ac_t""yes" 1>&6else  echo "configure: failed program was:" >&5  cat conftest.$ac_ext >&5  rm -rf conftest*  { echo "configure: error: installation or configuration problem: $host compiler $HOST_CC cannot create executables." 1>&2; exit 1; } firm -f conftest*        CC=$_SAVE_CC    CFLAGS=$_SAVE_CFLAGS    LDFLAGS=$_SAVE_LDFLAGS    if test -z "$CC"; then	    for ac_prog in "${target_alias}-gcc" "${target}-gcc"do# Extract the first word of "$ac_prog", so it can be a program name with args.set dummy $ac_prog; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1155: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  if test -n "$CC"; then  ac_cv_prog_CC="$CC" # Let the user override the test.else  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      ac_cv_prog_CC="$ac_prog"      break    fi  done  IFS="$ac_save_ifs"fifiCC="$ac_cv_prog_CC"if test -n "$CC"; then  echo "$ac_t""$CC" 1>&6else  echo "$ac_t""no" 1>&6fitest -n "$CC" && breakdonetest -n "$CC" || CC="echo"    fi    unset ac_cv_prog_CC    # Extract the first word of "gcc", so it can be a program name with args.set dummy gcc; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1190: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  if test -n "$CC"; then  ac_cv_prog_CC="$CC" # Let the user override the test.else  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      ac_cv_prog_CC="gcc"      break    fi  done  IFS="$ac_save_ifs"fifiCC="$ac_cv_prog_CC"if test -n "$CC"; then  echo "$ac_t""$CC" 1>&6else  echo "$ac_t""no" 1>&6fiif test -z "$CC"; then  # Extract the first word of "cc", so it can be a program name with args.set dummy cc; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1220: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  if test -n "$CC"; then  ac_cv_prog_CC="$CC" # Let the user override the test.else  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_prog_rejected=no  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then        ac_prog_rejected=yes	continue      fi      ac_cv_prog_CC="cc"      break    fi  done  IFS="$ac_save_ifs"if test $ac_prog_rejected = yes; then  # We found a bogon in the path, so make sure we never use it.  set dummy $ac_cv_prog_CC  shift  if test $# -gt 0; then    # We chose a different compiler from the bogus one.    # However, it has the same basename, so the bogon will be chosen    # first if we set CC to just the basename; use the full file name.    shift    set dummy "$ac_dir/$ac_word" "$@"    shift    ac_cv_prog_CC="$@"  fifififiCC="$ac_cv_prog_CC"if test -n "$CC"; then  echo "$ac_t""$CC" 1>&6else  echo "$ac_t""no" 1>&6fi  if test -z "$CC"; then    case "`uname -s`" in    *win32* | *WIN32*)      # Extract the first word of "cl", so it can be a program name with args.set dummy cl; ac_word=$2echo $ac_n "checking for $ac_word""... $ac_c" 1>&6echo "configure:1271: checking for $ac_word" >&5if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  if test -n "$CC"; then  ac_cv_prog_CC="$CC" # Let the user override the test.else  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"  ac_dummy="$PATH"  for ac_dir in $ac_dummy; do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      ac_cv_prog_CC="cl"      break    fi  done  IFS="$ac_save_ifs"fifiCC="$ac_cv_prog_CC"if test -n "$CC"; then  echo "$ac_t""$CC" 1>&6else  echo "$ac_t""no" 1>&6fi ;;    esac  fi  test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }fiecho $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6echo "configure:1303: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5ac_ext=c# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.ac_cpp='$CPP $CPPFLAGS'ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'cross_compiling=$ac_cv_prog_cc_crosscat > conftest.$ac_ext << EOF#line 1314 "configure"#include "confdefs.h"main(){return(0);}EOFif { (eval echo configure:1319: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then  ac_cv_prog_cc_works=yes  # If we can't run a trivial program, we are probably using a cross compiler.  if (./conftest; exit) 2>/dev/null; then    ac_cv_prog_cc_cross=no  else    ac_cv_prog_cc_cross=yes  fielse  echo "configure: failed program was:" >&5  cat conftest.$ac_ext >&5  ac_cv_prog_cc_works=nofirm -fr conftest*ac_ext=c# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.ac_cpp='$CPP $CPPFLAGS'ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'cross_compiling=$ac_cv_prog_cc_crossecho "$ac_t""$ac_cv_prog_cc_works" 1>&6if test $ac_cv_prog_cc_works = no; then  { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }fiecho $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6echo "configure:1345: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6cross_compiling=$ac_cv_prog_cc_crossecho $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6echo "configure:1350: checking whether we are using GNU C" >&5if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then  echo $ac_n "(cached) $ac_c" 1>&6else  cat > conftest.c <<EOF#ifdef __GNUC__  yes;#endifEOFif { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1359: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then  ac_cv_prog_gcc=yeselse  ac_cv_prog_gcc=nofifiecho "$ac_t""$ac_cv_prog_gcc" 1>&6

⌨️ 快捷键说明

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