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

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

?? ltmain.sh

?? ser作為一個高效、高度可配置的simple服務器
?? 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# 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.10TIMESTAMP=" (1.1220.2.130 2004/09/19 12:13:49)"# 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/"###################################### 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	  *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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_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=`basename $darwin_archive`	  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}"	      # Remove the table of contents from the thin files.	      $AR -d "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" __.SYMDEF 2>/dev/null || true	      $AR -d "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" __.SYMDEF\ SORTED 2>/dev/null || true	      cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"	      $AR -xo "${darwin_base_archive}"	      rm "${darwin_base_archive}"	      cd "$darwin_curdir"	    done # $darwin_arches      ## Okay now we have a bunch of thin objects, gotta fatten them up :)	    darwin_filelist=`find unfat-$$ -type f | 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 -rf unfat-$$	    cd "$darwin_orig_dir"	  else	    cd $darwin_orig_dir	    (cd $my_xdir && $AR x $my_xabs) || exit $?	  fi # $darwin_arches	fi # $run      ;;      *)	# We will extract separately just the conflicting names and we will	# no longer touch any unique names. It is faster to leave these	# extract automatically by $AR in one run.	$show "(cd $my_xdir && $AR x $my_xabs)"	$run eval "(cd \$my_xdir && $AR x \$my_xabs)" || exit $?	if ($AR t "$my_xabs" | 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	  $AR t "$my_xabs" | sort | uniq -cd | while read -r 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 "$my_xdir/$name_to"	      do		name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`	      done	      $show "(cd $my_xdir && $AR xN $i $my_xabs '$name' && $mv '$name' '$name_to')"	      $run eval "(cd \$my_xdir && $AR xN $i \$my_xabs '$name' && $mv '$name' '$name_to')" || exit $?	      i=`expr $i + 1`	    done	  done	fi	;;      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) 2003  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 $EXIT_SUCCESS    ;;  --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 $EXIT_SUCCESS    ;;  --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 $EXIT_SUCCESS    ;;  --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"    ;;  --tag) prevopt="--tag" prev=tag ;;  --tag=*)    set tag "$optarg" ${1+"$@"}    shift    prev=tag    preserve_args="$preserve_args --tag"    ;;  -dlopen)    prevopt="-dlopen"    prev=execute_dlfiles

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久99精品国产.久久久久| 91黄色在线观看| 国产高清不卡二三区| 成人av动漫在线| 欧美日韩黄色影视| 精品日韩欧美一区二区| 日韩美女主播在线视频一区二区三区| 884aa四虎影成人精品一区| 日韩欧美在线一区二区三区| 精品福利在线导航| 18成人在线观看| 亚洲成人av中文| 经典三级在线一区| 93久久精品日日躁夜夜躁欧美| 91极品视觉盛宴| 久久人人超碰精品| 综合分类小说区另类春色亚洲小说欧美| 亚洲成人免费电影| 国产成人精品亚洲日本在线桃色| 欧美色视频一区| 国产精品蜜臀av| 亚洲大片在线观看| 99在线精品观看| 欧美成人综合网站| 亚洲综合网站在线观看| 国产91富婆露脸刺激对白| 欧美日韩午夜在线| 亚洲欧美在线高清| 久久成人免费网| 欧美日韩五月天| 亚洲日本在线看| 国产一区二区三区精品视频| 在线播放91灌醉迷j高跟美女| 国产精品久久久久久亚洲毛片| 麻豆极品一区二区三区| 欧美日韩色综合| 亚洲男女毛片无遮挡| 国产.精品.日韩.另类.中文.在线.播放| 欧美人与性动xxxx| 亚洲成人综合在线| 在线播放欧美女士性生活| 亚洲第一福利视频在线| 在线观看国产精品网站| 一片黄亚洲嫩模| 欧美性受xxxx| 日本不卡一区二区| 精品处破学生在线二十三| 蓝色福利精品导航| 日韩美女主播在线视频一区二区三区| 日产国产高清一区二区三区| 欧美一区二区黄色| 国产一区二区三区免费在线观看| 国产精品久久久久影视| 欧美午夜寂寞影院| 韩国精品久久久| 亚洲午夜激情网站| 久久夜色精品国产噜噜av| 99久免费精品视频在线观看| 丝袜脚交一区二区| 国产精品久久国产精麻豆99网站 | 懂色av一区二区三区免费看| 亚洲黄一区二区三区| 欧美浪妇xxxx高跟鞋交| 成人一级黄色片| 午夜欧美电影在线观看| 精品国产乱码久久久久久免费 | 国产精品毛片a∨一区二区三区 | 风间由美中文字幕在线看视频国产欧美| 亚洲国产一区视频| 成人免费一区二区三区视频| 久久先锋影音av| 欧美系列一区二区| 波多野结衣精品在线| 久久国产日韩欧美精品| 日韩精品免费视频人成| 中文字幕在线观看一区二区| 精品国产伦一区二区三区观看体验| 色婷婷精品大在线视频 | 在线视频你懂得一区二区三区| 成人综合婷婷国产精品久久| 精品亚洲成a人| 日韩高清国产一区在线| 亚洲日本一区二区| 亚洲欧美自拍偷拍| 国产欧美精品日韩区二区麻豆天美| 日韩午夜在线观看视频| 91麻豆精品国产91久久久更新时间 | 亚洲亚洲人成综合网络| 久久免费精品国产久精品久久久久| 欧美一区二区三区小说| 欧美日韩免费一区二区三区| 在线看不卡av| 欧美不卡在线视频| 欧美精品一区二区精品网| 在线观看91精品国产入口| 欧美色成人综合| 91精品国产手机| 久久久夜色精品亚洲| 久久亚洲精品国产精品紫薇| 91精品免费在线观看| 精品国产乱码久久久久久久久| 欧美tk—视频vk| 国产亚洲综合性久久久影院| 国产精品入口麻豆九色| 亚洲欧洲制服丝袜| 偷拍与自拍一区| 国产美女av一区二区三区| 国产一区二区剧情av在线| 色狠狠一区二区三区香蕉| 91精品国产福利在线观看| 国产午夜久久久久| 亚洲一线二线三线久久久| 亚洲大型综合色站| 国产尤物一区二区| 欧美亚州韩日在线看免费版国语版| 欧美一区二区三区成人| 中文字幕av在线一区二区三区| 亚洲三级在线观看| 国产精品亚洲一区二区三区妖精| 色噜噜狠狠色综合欧洲selulu| 欧美一区二区三级| 一区二区三区精品视频| 秋霞电影一区二区| 91激情在线视频| 国产欧美一区二区在线观看| 日韩在线观看一区二区| 国产二区国产一区在线观看| 7777精品伊人久久久大香线蕉超级流畅 | 国产视频亚洲色图| 蜜桃视频在线观看一区| 欧美亚洲愉拍一区二区| 亚洲男同性视频| 国产高清无密码一区二区三区| 日韩一区二区在线观看| 日韩专区中文字幕一区二区| 91搞黄在线观看| 亚洲第一精品在线| 欧美一区日韩一区| 日本成人在线不卡视频| 日韩精品一区在线| 国产成人在线影院| 国产精品理伦片| 日韩精品久久理论片| 性久久久久久久久| 欧美性大战xxxxx久久久| 久久久99精品免费观看| 国产精品的网站| 日本美女一区二区三区视频| 久久综合九色综合97婷婷| 成人黄色网址在线观看| 亚洲高清免费观看| 7777女厕盗摄久久久| 国产在线视频一区二区三区| 国产精品午夜电影| 91福利在线观看| 秋霞av亚洲一区二区三| 久久久久久久久岛国免费| 成人av在线看| 亚洲图片自拍偷拍| 日韩精品在线看片z| 成人永久免费视频| 石原莉奈在线亚洲二区| 久久久一区二区| 成人激情视频网站| 五月婷婷综合激情| 亚洲素人一区二区| 欧美不卡一区二区| 欧美三级一区二区| 成人精品视频一区二区三区| 一区二区三区不卡视频在线观看| 91精品国产综合久久久久久久| 国产剧情av麻豆香蕉精品| 亚洲精品视频在线| 国产校园另类小说区| 欧美日韩在线精品一区二区三区激情| 国产一区二区调教| 亚洲成人免费电影| 亚洲欧美国产毛片在线| 国产精品乱子久久久久| 久久香蕉国产线看观看99| 欧美成人女星排行榜| 91麻豆精品91久久久久同性| 欧美乱妇15p| 欧美一级免费观看| 欧美一区二区三区视频在线 | 伊人一区二区三区| 久久免费偷拍视频| 日韩一级大片在线观看| 在线一区二区三区四区五区| 91一区二区三区在线观看| 国产乱码字幕精品高清av| 日韩av电影天堂| 青草国产精品久久久久久| 亚洲视频一区二区在线| 国产日韩精品一区二区三区 | 亚洲一区在线观看视频| 国产精品国产三级国产普通话99| 26uuu欧美| 久久久久久亚洲综合影院红桃| 精品久久五月天|