亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ltmain.sh

?? 股票分析源代碼
?? SH
?? 第 1 頁 / 共 5 頁
字號:
# ltmain.sh - Provide generalized library-building support services.# NOTE: Changing this file will not affect anything until you rerun configure.## Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,# 2007  Free Software Foundation, Inc.# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU# General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.## As a special exception to the GNU General Public License, if you# distribute this file as part of a program that contains a# configuration script generated by Autoconf, you may include it under# the same distribution terms that you use for the rest of that program.basename="s,^.*/,,g"# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh# is ksh but when the shell is invoked as "sh" and the current value of# the _XPG environment variable is not equal to 1 (one), the special# positional parameter $0, within a function call, is the name of the# function.progpath="$0"# The name of this program:progname=`echo "$progpath" | $SED $basename`modename="$progname"# Global variables:EXIT_SUCCESS=0EXIT_FAILURE=1PROGRAM=ltmain.shPACKAGE=libtoolVERSION=1.5.22TIMESTAMP=" (1.1220.2.436 2007/02/17 08:23:50)"# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE).if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then  emulate sh  NULLCMD=:  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which  # is contrary to our usage.  Disable this feature.  alias -g '${1+"$@"}'='"$@"'  setopt NO_GLOB_SUBSTelse  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esacfiBIN_SH=xpg4; export BIN_SH # for Tru64DUALCASE=1; export DUALCASE # for MKS sh# Check that we have a working $echo.if test "X$1" = X--no-reexec; then  # Discard the --no-reexec flag, and continue.  shiftelif test "X$1" = X--fallback-echo; then  # Avoid inline document here, it may be left over  :elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then  # Yippee, $echo works!  :else  # Restart under the correct shell, and then maybe $echo will work.  exec $SHELL "$progpath" --no-reexec ${1+"$@"}fiif test "X$1" = X--fallback-echo; then  # used as fallback echo  shift  cat <<EOF$*EOF  exit $EXIT_SUCCESSfidefault_mode=help="Try \`$progname --help' for more information."magic="%%%MAGIC variable%%%"mkdir="mkdir"mv="mv -f"rm="rm -f"# Sed substitution that helps us do robust quoting.  It backslashifies# metacharacters that are still active within double-quoted strings.Xsed="${SED}"' -e 1s/^X//'sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'# test EBCDIC or ASCIIcase `echo X|tr X '\101'` in A) # ASCII based system    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr  SP2NL='tr \040 \012'  NL2SP='tr \015\012 \040\040'  ;; *) # EBCDIC based system  SP2NL='tr \100 \n'  NL2SP='tr \r\n \100\100'  ;;esac# NLS nuisances.# Only set LANG and LC_ALL to C if already set.# These must not be set unconditionally because not all systems understand# e.g. LANG=C (notably SCO).# We save the old values to restore during execute mode.for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGESdo  eval "if test \"\${$lt_var+set}\" = set; then	  save_$lt_var=\$$lt_var	  $lt_var=C	  export $lt_var	fi"done# Make sure IFS has a sensible defaultlt_nl=''IFS=" 	$lt_nl"if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then  $echo "$modename: not configured to build any kind of library" 1>&2  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2  exit $EXIT_FAILUREfi# Global variables.mode=$default_modenonopt=prev=prevopt=run=show="$echo"show_help=execute_dlfiles=duplicate_deps=nopreserve_args=lo2o="s/\\.lo\$/.${objext}/"o2lo="s/\\.${objext}\$/.lo/"extracted_archives=extracted_serial=0###################################### Shell function definitions:# This seems to be the best place for them# func_mktempdir [string]# Make a temporary directory that won't clash with other running# libtool processes, and avoids race conditions if possible.  If# given, STRING is the basename for that directory.func_mktempdir (){    my_template="${TMPDIR-/tmp}/${1-$progname}"    if test "$run" = ":"; then      # Return a directory name, but don't create it in dry-run mode      my_tmpdir="${my_template}-$$"    else      # If mktemp works, use that first and foremost      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`      if test ! -d "$my_tmpdir"; then	# Failing that, at least try and use $RANDOM to avoid a race	my_tmpdir="${my_template}-${RANDOM-0}$$"	save_mktempdir_umask=`umask`	umask 0077	$mkdir "$my_tmpdir"	umask $save_mktempdir_umask      fi      # If we're not in dry-run mode, bomb out on failure      test -d "$my_tmpdir" || {        $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2	exit $EXIT_FAILURE      }    fi    $echo "X$my_tmpdir" | $Xsed}# func_win32_libid arg# return the library type of file 'arg'## Need a lot of goo to handle *both* DLLs and import libs# Has to be a shell function in order to 'eat' the argument# that is supplied when $file_magic_command is called.func_win32_libid (){  win32_libid_type="unknown"  win32_fileres=`file -L $1 2>/dev/null`  case $win32_fileres in  *ar\ archive\ import\ library*) # definitely import    win32_libid_type="x86 archive import"    ;;  *ar\ archive*) # could be an import, or static    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \      $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then      win32_nmres=`eval $NM -f posix -A $1 | \	$SED -n -e '1,100{		/ I /{			s,.*,import,			p			q			}		}'`      case $win32_nmres in      import*)  win32_libid_type="x86 archive import";;      *)        win32_libid_type="x86 archive static";;      esac    fi    ;;  *DLL*)    win32_libid_type="x86 DLL"    ;;  *executable*) # but shell scripts are "executable" too...    case $win32_fileres in    *MS\ Windows\ PE\ Intel*)      win32_libid_type="x86 DLL"      ;;    esac    ;;  esac  $echo $win32_libid_type}# func_infer_tag arg# Infer tagged configuration to use if any are available and# if one wasn't chosen via the "--tag" command line option.# Only attempt this if the compiler in the base compile# command doesn't match the default compiler.# arg is usually of the form 'gcc ...'func_infer_tag (){    if test -n "$available_tags" && test -z "$tagname"; then      CC_quoted=      for arg in $CC; do	case $arg in	  *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  arg="\"$arg\""	  ;;	esac	CC_quoted="$CC_quoted $arg"      done      case $@ in      # Blanks in the command may have been stripped by the calling shell,      # but not from the CC environment variable when configure was run.      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;      # Blanks at the start of $base_compile will cause this to fail      # if we don't check for them as well.      *)	for z in $available_tags; do	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"	    CC_quoted=	    for arg in $CC; do	    # Double-quote args containing other shell metacharacters.	    case $arg in	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	      arg="\"$arg\""	      ;;	    esac	    CC_quoted="$CC_quoted $arg"	  done	    case "$@ " in	      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)	      # The compiler in the base compile command matches	      # the one in the tagged configuration.	      # Assume this is the tagged configuration we want.	      tagname=$z	      break	      ;;	    esac	  fi	done	# If $tagname still isn't set, then no tagged configuration	# was found and let the user know that the "--tag" command	# line option must be used.	if test -z "$tagname"; then	  $echo "$modename: unable to infer tagged configuration"	  $echo "$modename: specify a tag with \`--tag'" 1>&2	  exit $EXIT_FAILURE#        else#          $echo "$modename: using $tagname tagged configuration"	fi	;;      esac    fi}# func_extract_an_archive dir oldlibfunc_extract_an_archive (){    f_ex_an_ar_dir="$1"; shift    f_ex_an_ar_oldlib="$1"    $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"    $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then     :    else      $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2      exit $EXIT_FAILURE    fi}# func_extract_archives gentop oldlib ...func_extract_archives (){    my_gentop="$1"; shift    my_oldlibs=${1+"$@"}    my_oldobjs=""    my_xlib=""    my_xabs=""    my_xdir=""    my_status=""    $show "${rm}r $my_gentop"    $run ${rm}r "$my_gentop"    $show "$mkdir $my_gentop"    $run $mkdir "$my_gentop"    my_status=$?    if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then      exit $my_status    fi    for my_xlib in $my_oldlibs; do      # Extract the objects.      case $my_xlib in	[\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;	*) my_xabs=`pwd`"/$my_xlib" ;;      esac      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`      my_xlib_u=$my_xlib      while :; do        case " $extracted_archives " in	*" $my_xlib_u "*)	  extracted_serial=`expr $extracted_serial + 1`	  my_xlib_u=lt$extracted_serial-$my_xlib ;;	*) break ;;	esac      done      extracted_archives="$extracted_archives $my_xlib_u"      my_xdir="$my_gentop/$my_xlib_u"      $show "${rm}r $my_xdir"      $run ${rm}r "$my_xdir"      $show "$mkdir $my_xdir"      $run $mkdir "$my_xdir"      exit_status=$?      if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then	exit $exit_status      fi      case $host in      *-darwin*)	$show "Extracting $my_xabs"	# Do not bother doing anything if just a dry run	if test -z "$run"; then	  darwin_orig_dir=`pwd`	  cd $my_xdir || exit $?	  darwin_archive=$my_xabs	  darwin_curdir=`pwd`	  darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`	  darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`	  if test -n "$darwin_arches"; then 	    darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`	    darwin_arch=	    $show "$darwin_base_archive has multiple architectures $darwin_arches"	    for darwin_arch in  $darwin_arches ; do	      mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"	      lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"	      cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"	      func_extract_an_archive "`pwd`" "${darwin_base_archive}"	      cd "$darwin_curdir"	      $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"	    done # $darwin_arches      ## Okay now we have a bunch of thin objects, gotta fatten them up :)	    darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`	    darwin_file=	    darwin_files=	    for darwin_file in $darwin_filelist; do	      darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`	      lipo -create -output "$darwin_file" $darwin_files	    done # $darwin_filelist	    ${rm}r unfat-$$	    cd "$darwin_orig_dir"	  else	    cd "$darwin_orig_dir" 	    func_extract_an_archive "$my_xdir" "$my_xabs"	  fi # $darwin_arches	fi # $run	;;      *)        func_extract_an_archive "$my_xdir" "$my_xabs"        ;;      esac      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`    done    func_extract_archives_result="$my_oldobjs"}# End of Shell function definitions###################################### Darwin suckseval std_shrext=\"$shrext_cmds\"disable_libs=no# Parse our command line options once, thoroughly.while test "$#" -gt 0do  arg="$1"  shift  case $arg in  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;  *) optarg= ;;  esac  # If the previous option needs an argument, assign it.  if test -n "$prev"; then    case $prev in    execute_dlfiles)      execute_dlfiles="$execute_dlfiles $arg"      ;;    tag)      tagname="$arg"      preserve_args="${preserve_args}=$arg"      # Check whether tagname contains only valid characters      case $tagname in      *[!-_A-Za-z0-9,/]*)	$echo "$progname: invalid tag name: $tagname" 1>&2	exit $EXIT_FAILURE	;;      esac      case $tagname in      CC)	# Don't test for the "default" C tag, as we know, it's there, but	# not specially marked.	;;      *)	if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then	  taglist="$taglist $tagname"	  # Evaluate the configuration.	  eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"	else	  $echo "$progname: ignoring unknown tag $tagname" 1>&2	fi	;;      esac      ;;    *)      eval "$prev=\$arg"      ;;    esac    prev=    prevopt=    continue  fi  # Have we seen a non-optional argument yet?  case $arg in  --help)    show_help=yes    ;;  --version)    echo "\$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMPCopyright (C) 2007  Free Software Foundation, Inc.This is free software; see the source for copying conditions.  There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."    exit $?    ;;  --config)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久99热99| 国产精品69毛片高清亚洲| 久久亚洲一区二区三区四区| 欧美一区二区视频在线观看2020| 成人国产精品免费| 国产.欧美.日韩| 国产69精品久久久久毛片| 丁香婷婷综合色啪| 成人国产精品免费网站| 色婷婷精品久久二区二区蜜臀av | 五月天国产精品| 首页国产欧美日韩丝袜| 日韩va欧美va亚洲va久久| 免费成人在线视频观看| 激情丁香综合五月| 成人动漫av在线| 欧洲一区二区三区在线| 7799精品视频| 国产亚洲精品资源在线26u| 日本一区二区三区视频视频| 国产精品免费免费| 亚洲一二三四区不卡| 日本特黄久久久高潮| 国产精品888| 欧日韩精品视频| 精品久久人人做人人爽| 日本一区二区电影| 亚洲成年人影院| 国产精品综合在线视频| 色悠悠久久综合| 日韩欧美黄色影院| 亚洲欧美偷拍另类a∨色屁股| 午夜国产精品一区| 成人做爰69片免费看网站| 欧美日韩色一区| 国产女主播视频一区二区| 亚洲美女偷拍久久| 久久精品99国产精品日本| av欧美精品.com| 精品剧情在线观看| 一区二区日韩电影| 国产一区二区三区久久久| 欧美在线免费观看亚洲| 国产亚洲欧美激情| 日韩精品91亚洲二区在线观看 | 亚洲一区二区三区四区在线| 极品少妇xxxx偷拍精品少妇| 91豆麻精品91久久久久久| www国产精品av| 午夜影院在线观看欧美| 成人国产一区二区三区精品| 日韩一级大片在线| 一区二区三区美女视频| 国产激情91久久精品导航| 欧美一区二区三区啪啪| 一区二区三区欧美日韩| a亚洲天堂av| 国产欧美日韩在线视频| 久久se这里有精品| 91精品国产手机| 伊人夜夜躁av伊人久久| 99久久国产综合精品女不卡| 久久久.com| 国产电影一区二区三区| 欧美刺激脚交jootjob| 日韩精品国产欧美| 欧美日韩三级一区二区| 亚洲一区二区成人在线观看| 99久久精品国产观看| 国产精品毛片无遮挡高清| 国产精品一区二区免费不卡| 欧美xfplay| 国产在线精品一区二区| 精品少妇一区二区三区在线视频| 日本欧美在线观看| 91精品国产色综合久久久蜜香臀| 亚洲bt欧美bt精品| 欧美日韩成人综合| 日韩精品欧美精品| 91精品久久久久久蜜臀| 欧美bbbbb| 欧美tk—视频vk| 韩国一区二区视频| 国产欧美日韩精品在线| 丁香啪啪综合成人亚洲小说 | 一区二区三区久久| 欧洲中文字幕精品| 日韩成人一级片| 精品福利二区三区| 成人高清免费观看| 亚洲三级免费观看| 欧美日韩黄色影视| 精品一区二区国语对白| 国产欧美一区二区精品久导航| 成人自拍视频在线| 一区二区三区四区中文字幕| 欧美精品久久99久久在免费线 | 国产精品久久久久久久久动漫| 成人h动漫精品一区二区 | 欧美二区三区的天堂| 美女视频一区二区三区| 久久久久久久久久久电影| 成人av网站免费观看| 一区二区三区欧美| 精品欧美乱码久久久久久| 成人在线综合网站| 亚洲国产精品一区二区久久恐怖片| 日韩免费高清电影| 91在线看国产| 麻豆中文一区二区| 国产精品家庭影院| 制服丝袜亚洲播放| 97精品久久久午夜一区二区三区| 亚洲国产精品久久人人爱蜜臀| 精品成人免费观看| 色吊一区二区三区| 国产精品一二三四五| 亚洲成av人**亚洲成av**| 久久蜜桃一区二区| 欧美自拍偷拍一区| 成人美女视频在线看| 久久成人免费网| 日韩成人免费看| 夜夜亚洲天天久久| 国产精品福利一区二区三区| 日韩欧美成人午夜| 这里只有精品免费| 在线亚洲一区二区| 成人app在线观看| 国产不卡视频在线观看| 看国产成人h片视频| 亚洲一区二区不卡免费| 亚洲精品视频免费观看| 国产精品日韩成人| 中文字幕第一区二区| 久久久精品人体av艺术| 欧美大片日本大片免费观看| 99久久er热在这里只有精品15| 亚洲地区一二三色| 精品国产凹凸成av人网站| 91免费观看国产| 日韩欧美高清一区| 国产suv精品一区二区883| 偷拍与自拍一区| 国产精品看片你懂得| 日韩欧美一二三区| 在线区一区二视频| 国产91对白在线观看九色| 免费在线看成人av| 亚洲欧美日韩综合aⅴ视频| 日韩小视频在线观看专区| 91一区二区三区在线观看| 日本免费在线视频不卡一不卡二| 中文字幕在线不卡一区二区三区| 欧美成人伊人久久综合网| 欧美亚洲另类激情小说| 粉嫩一区二区三区性色av| 中文字幕免费不卡在线| 日韩欧美国产一二三区| 91精品国产色综合久久不卡电影| 99这里都是精品| 丰满白嫩尤物一区二区| 精品一区精品二区高清| 日韩av不卡一区二区| 亚洲精品久久7777| 最新不卡av在线| 国产精品久久久爽爽爽麻豆色哟哟| 91福利国产精品| 欧美婷婷六月丁香综合色| 波多野结衣在线aⅴ中文字幕不卡| 久久国产剧场电影| 国产精品久久久久影院老司| 欧美精品一区二| 精品国产免费一区二区三区香蕉 | 91老师国产黑色丝袜在线| 国产成人精品免费视频网站| 久久精品72免费观看| 美女免费视频一区二区| 香蕉加勒比综合久久| 亚洲国产日韩精品| 亚洲国产欧美在线| 亚洲午夜私人影院| 中文字幕精品三区| 久久免费精品国产久精品久久久久| 欧美亚洲自拍偷拍| 欧美日韩免费一区二区三区 | 久久久久久久免费视频了| 久久久精品中文字幕麻豆发布| 久久久午夜精品理论片中文字幕| 国产成人免费视频网站| 成人黄色一级视频| 在线日韩一区二区| 欧美系列一区二区| 日韩一级高清毛片| 精品国产精品一区二区夜夜嗨| 久久精品视频一区| 亚洲特黄一级片| 肉丝袜脚交视频一区二区| 伦理电影国产精品| 日韩专区中文字幕一区二区|