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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ltmain.sh

?? jrtplib3.3.0的實(shí)現(xiàn)
?? 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# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.14TIMESTAMP=" (1.1220.2.195 2005/02/12 12:12:33)"# See if we are running on zsh, and set the options which allow our# commands through without removal of \ escapes.if test -n "${ZSH_VERSION+set}" ; then  setopt NO_GLOB_SUBSTfi# 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 A|tr A '\301'` in A) # EBCDIC based system  SP2NL="tr '\100' '\n'"  NL2SP="tr '\r\n' '\100\100'"  ;; *) # Assume ASCII based system  SP2NL="tr '\040' '\012'"  NL2SP="tr '\015\012' '\040\040'"  ;;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.if test "${LC_ALL+set}" = set; then  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALLfiif test "${LANG+set}" = set; then  save_LANG="$LANG"; LANG=C; export LANGfi# Make sure IFS has a sensible default: ${IFS=" 	"}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=lo2o="s/\\.lo\$/.${objext}/"o2lo="s/\\.${objext}\$/.lo/"quote_scanset='[[~#^*{};<>?'"'"' 	]'###################################### Shell function definitions:# This seems to be the best place for them# 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 /{x;/import/!{s/^/import/;h;p;};x;};}'`      if test "X$win32_nmres" = "Ximport" ; then        win32_libid_type="x86 archive import"      else        win32_libid_type="x86 archive static"      fi    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	  *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  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	      *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	      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"    f_ex_an_ar_lib=`$echo "X$f_ex_an_ar_oldlib" | $Xsed -e 's%^.*/%%'`    $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: warning: object name conflicts; renaming object files" 1>&2      $echo "$modename: warning: to ensure that they will not overwrite" 1>&2      $show "cp $f_ex_an_ar_oldlib $f_ex_an_ar_dir/$f_ex_an_ar_lib"      $run eval "cp \$f_ex_an_ar_oldlib \$f_ex_an_ar_dir/\$f_ex_an_ar_lib"      $AR t "$f_ex_an_ar_oldlib" | sort | uniq -c \	| $EGREP -v '^[ 	]*1[ 	]' | while read count name      do	i=1	while test "$i" -le "$count"	  do	  # Put our $i before any first dot (extension)	  # Never overwrite any file	  name_to="$name"	  while test "X$name_to" = "X$name" || test -f "$f_ex_an_ar_dir/$name_to"	    do	    name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`	  done	  $show "(cd $f_ex_an_ar_dir && $AR x  $f_ex_an_ar_lib '$name' && $mv '$name' '$name_to')"	  $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_lib '$name' && $mv '$name' '$name_to' && $AR -d \$f_ex_an_ar_lib '$name')" || exit $?	  i=`expr $i + 1`	done      done      $show "$rm $f_ex_an_ar_dir/$f_ex_an_ar_lib"      $run eval "$rm \$f_ex_an_ar_dir/\$f_ex_an_ar_lib"    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_xdir="$my_gentop/$my_xlib"      $show "${rm}r $my_xdir"      $run ${rm}r "$my_xdir"      $show "$mkdir $my_xdir"      $run $mkdir "$my_xdir"      status=$?      if test "$status" -ne 0 && test ! -d "$my_xdir"; then	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\"# 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$TIMESTAMP"    $echo    $echo "Copyright (C) 2005  Free Software Foundation, Inc."    $echo "This is free software; see the source for copying conditions.  There is NO"    $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."    exit $?    ;;  --config)    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath    # Now print the configurations for the tags.    for tagname in $taglist; do      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"    done    exit $?    ;;  --debug)    $echo "$progname: enabling shell trace mode"    set -x    preserve_args="$preserve_args $arg"    ;;  --dry-run | -n)    run=:    ;;  --features)    $echo "host: $host"    if test "$build_libtool_libs" = yes; then      $echo "enable shared libraries"    else      $echo "disable shared libraries"    fi    if test "$build_old_libs" = yes; then      $echo "enable static libraries"    else      $echo "disable static libraries"    fi    exit $?    ;;  --finish) mode="finish" ;;  --mode) prevopt="--mode" prev=mode ;;  --mode=*) mode="$optarg" ;;  --preserve-dup-deps) duplicate_deps="yes" ;;  --quiet | --silent)    show=:    preserve_args="$preserve_args $arg"

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美羞羞免费网站| 欧美最猛性xxxxx直播| 日韩一区在线播放| 精品婷婷伊人一区三区三| 精品亚洲国内自在自线福利| 国产精品二区一区二区aⅴ污介绍| 精品1区2区3区| 成人激情图片网| 久久国产婷婷国产香蕉| 亚洲一区视频在线| 国产精品国产三级国产有无不卡| 日韩精品一区二区三区老鸭窝| 色综合久久久久| 国产乱人伦精品一区二区在线观看| 一区二区欧美在线观看| 中文av一区特黄| 精品国产一区二区三区久久久蜜月| 在线中文字幕不卡| 99久久婷婷国产精品综合| 精品一区二区免费在线观看| 亚洲成人你懂的| 亚洲精品视频在线看| 亚洲国产精品精华液ab| 久久中文字幕电影| 亚洲高清三级视频| 亚洲人成网站色在线观看| 国产无遮挡一区二区三区毛片日本| 这里只有精品电影| 欧美日韩一区二区不卡| 色综合激情五月| 色综合久久天天综合网| 97久久精品人人澡人人爽| 国产成人精品亚洲午夜麻豆| 开心九九激情九九欧美日韩精美视频电影 | 精品福利av导航| 欧美一区二区三区男人的天堂| 欧美无砖专区一中文字| 欧美在线免费观看亚洲| 欧美性生交片4| 一本到三区不卡视频| 91啪在线观看| 色8久久人人97超碰香蕉987| 色先锋资源久久综合| 色噜噜狠狠成人网p站| 一本色道a无线码一区v| 色婷婷国产精品综合在线观看| 在线免费av一区| 欧美性猛片aaaaaaa做受| 欧美视频在线观看一区二区| 欧美性大战久久久久久久| 91美女片黄在线| 欧美亚洲动漫制服丝袜| 欧美日韩一区成人| 欧美一区二区三区人| 2021久久国产精品不只是精品| 久久综合色之久久综合| 欧美高清在线精品一区| 亚洲欧洲日本在线| 亚洲国产视频直播| 日本不卡123| 国产成人aaa| 国产日产欧美一区二区视频| 国产精品三级在线观看| 亚洲日本一区二区三区| 午夜精品久久一牛影视| 久久不见久久见中文字幕免费| 国产剧情av麻豆香蕉精品| 成人国产在线观看| 欧美日韩精品一区二区天天拍小说| 日韩亚洲国产中文字幕欧美| 久久久99精品免费观看| 成人欧美一区二区三区在线播放| 一区二区三区蜜桃| 美女一区二区三区在线观看| 丰满亚洲少妇av| 欧美网站一区二区| 2022国产精品视频| 一区二区三区在线免费| 日本视频免费一区| 成人做爰69片免费看网站| 欧洲精品视频在线观看| 欧美va亚洲va香蕉在线| 亚洲欧美日本在线| 青青草91视频| 99久久99久久精品免费看蜜桃| 欧美日韩国产精品成人| 久久久久国产精品麻豆ai换脸 | 国产精品系列在线| 亚洲一区在线观看视频| 裸体在线国模精品偷拍| 一本色道亚洲精品aⅴ| 日韩欧美一卡二卡| 一区二区三区日韩欧美| 国产在线不卡一区| 欧美日韩情趣电影| 中文字幕av免费专区久久| 日韩国产在线一| 99在线热播精品免费| 日韩女优毛片在线| 一区二区高清在线| 国产成人免费视频一区| 欧美精品久久99久久在免费线| 国产精品久久久久久久久晋中| 视频一区视频二区在线观看| 99久久久国产精品免费蜜臀| 欧美电影免费观看高清完整版在线 | 色哟哟在线观看一区二区三区| 这里是久久伊人| 一区二区三区精品久久久| 国产精品乡下勾搭老头1| 欧美丰满一区二区免费视频| 国产欧美综合在线观看第十页| 日韩av在线播放中文字幕| 91亚洲大成网污www| 久久精品视频网| 蜜桃视频在线观看一区| 欧美性感一区二区三区| av在线综合网| 国产成人午夜精品影院观看视频 | 欧美大片一区二区三区| 亚洲大片一区二区三区| 92国产精品观看| 国产精品人成在线观看免费 | 日本一区二区三区久久久久久久久不 | 中文字幕不卡在线观看| 国产在线一区二区| 欧美成人精品3d动漫h| 石原莉奈在线亚洲二区| 欧美在线免费观看亚洲| 亚洲精品视频一区| 99国产精品国产精品久久| 国产蜜臀97一区二区三区| 国产成人亚洲精品青草天美| 国产亚洲va综合人人澡精品 | 911精品国产一区二区在线| 亚洲精品国产高清久久伦理二区| 成人精品免费看| 国产亲近乱来精品视频| 国产福利一区二区三区| 久久麻豆一区二区| 国产不卡在线播放| 国产女同性恋一区二区| eeuss鲁片一区二区三区在线看| 国产精品视频一二三| 成人国产精品免费网站| 18欧美乱大交hd1984| 色婷婷综合视频在线观看| 国产精品高清亚洲| 在线观看亚洲精品| 三级欧美韩日大片在线看| 91精品国产高清一区二区三区 | 精品视频资源站| 青青草原综合久久大伊人精品| 欧美成人在线直播| 国产成人综合自拍| 国产精品久久久久久亚洲毛片| 99久久精品免费看国产| 91日韩一区二区三区| 亚洲一区二区视频在线观看| 在线观看视频91| 麻豆精品视频在线观看免费| 精品美女被调教视频大全网站| 国产成人av福利| 亚洲欧美日韩中文字幕一区二区三区| 一本久久精品一区二区| 亚洲地区一二三色| 久久久久国产免费免费| 色婷婷综合激情| 麻豆精品国产91久久久久久| 国产三级精品在线| 91豆麻精品91久久久久久| 麻豆国产精品一区二区三区| 中文成人综合网| 欧美精品高清视频| 国产精品亚洲第一| 亚洲一区av在线| 26uuu亚洲综合色欧美| 91丨porny丨国产入口| 日产欧产美韩系列久久99| 国产日韩欧美制服另类| 欧美日韩国产免费一区二区 | 国产又黄又大久久| 亚洲区小说区图片区qvod| 91精品麻豆日日躁夜夜躁| 国产精品一区二区视频| 亚洲一区二区三区在线播放| 欧美精品一区二区精品网| 色菇凉天天综合网| 国产一本一道久久香蕉| 亚洲va欧美va人人爽午夜| 国产婷婷色一区二区三区四区| 在线一区二区三区| 国产成人亚洲综合a∨猫咪| 天堂av在线一区| 国产精品乱码妇女bbbb| 日韩精品一区二区在线观看| 色偷偷成人一区二区三区91| 国产麻豆成人传媒免费观看| 天天操天天综合网| 亚洲日本在线观看|