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

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

?? libtool

?? libnxml-no-curl-簡化版2007-07-01,一個別很不錯的XML生成和解析程序。
??
?? 第 1 頁 / 共 5 頁
字號:
###################################### 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_xdir="$my_gentop/$my_xlib"      $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$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"    ;;  --tag)    prevopt="--tag"    prev=tag    preserve_args="$preserve_args --tag"    ;;  --tag=*)    set tag "$optarg" ${1+"$@"}    shift    prev=tag    preserve_args="$preserve_args --tag"    ;;  -dlopen)    prevopt="-dlopen"    prev=execute_dlfiles    ;;  -*)    $echo "$modename: unrecognized option \`$arg'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE    ;;  *)    nonopt="$arg"    break    ;;  esacdoneif test -n "$prevopt"; then  $echo "$modename: option \`$prevopt' requires an argument" 1>&2  $echo "$help" 1>&2  exit $EXIT_FAILUREficase $disable_libs inno)   ;;shared)  build_libtool_libs=no  build_old_libs=yes  ;;static)  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`  ;;esac# If this variable is set in any of the actions, the command in it# will be execed at the end.  This prevents here-documents from being# left over by shells.exec_cmd=if test -z "$show_help"; then  # Infer the operation mode.  if test -z "$mode"; then    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2    $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2    case $nonopt in    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)      mode=link      for arg      do	case $arg in	-c)	   mode=compile	   break	   ;;	esac      done      ;;    *db | *dbx | *strace | *truss)      mode=execute      ;;    *install*|cp|mv)      mode=install      ;;    *rm)      mode=uninstall      ;;    *)      # If we have no mode, but dlfiles were specified, then do execute mode.      test -n "$execute_dlfiles" && mode=execute      # Just use the default operation mode.      if test -z "$mode"; then	if test -n "$nonopt"; then	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2	else	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2	fi      fi      ;;    esac  fi  # Only execute mode is allowed to have -dlopen flags.  if test -n "$execute_dlfiles" && test "$mode" != execute; then    $echo "$modename: unrecognized option \`-dlopen'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE  fi  # Change the help message to a mode-specific one.  generic_help="$help"  help="Try \`$modename --help --mode=$mode' for more information."  # These modes are in order of execution frequency so that they run quickly.  case $mode in  # libtool compile mode  compile)    modename="$modename: compile"    # Get the compilation command and the source file.    base_compile=    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"    suppress_opt=yes    suppress_output=

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久新电视剧免费观看| 欧美经典三级视频一区二区三区| 国产精品电影院| 成人avav影音| 亚洲色欲色欲www在线观看| 99精品热视频| 亚洲国产欧美在线| 欧美一区二区久久| 国产伦精品一区二区三区在线观看| 精品少妇一区二区三区在线视频| 免费人成精品欧美精品| 欧美精品一区二区在线观看| 国产成人高清视频| 亚洲精品伦理在线| 91 com成人网| 国产激情一区二区三区四区| 国产精品久久午夜夜伦鲁鲁| 欧美视频在线不卡| 久久99久久99| 中文字幕日韩欧美一区二区三区| 欧美三级日韩三级| 久久不见久久见中文字幕免费| 国产午夜精品一区二区| www.综合网.com| 日本网站在线观看一区二区三区| 久久蜜桃av一区二区天堂 | 欧美精品久久一区二区三区| 美国毛片一区二区| 国产精品国产馆在线真实露脸| 欧美午夜宅男影院| 国产精品一品二品| 亚洲国产美国国产综合一区二区| 日韩久久精品一区| 色偷偷久久人人79超碰人人澡 | 五月天精品一区二区三区| 日韩影院在线观看| 成人黄色免费短视频| 欧美日韩视频一区二区| 中文字幕欧美日韩一区| 精品午夜久久福利影院| 欧美羞羞免费网站| 有坂深雪av一区二区精品| 久久er99精品| 3d动漫精品啪啪1区2区免费| 亚洲一区免费在线观看| 91丝袜美腿高跟国产极品老师 | 日韩一区二区在线看片| 久久精品国产久精国产| 日韩精品一区二| 免费成人小视频| 国产乱人伦精品一区二区在线观看| 日本vs亚洲vs韩国一区三区 | 成人av集中营| 激情偷乱视频一区二区三区| 五月天欧美精品| 成人综合在线网站| 日本伊人色综合网| 亚洲柠檬福利资源导航| 欧美韩国日本一区| 久久久天堂av| 精品国产乱码91久久久久久网站| 欧美性猛片aaaaaaa做受| 99re成人精品视频| 成人黄色一级视频| 国产盗摄视频一区二区三区| 麻豆精品视频在线| 成人中文字幕合集| 成人小视频免费观看| 国产精品一区专区| 狠狠色综合日日| 美女视频网站黄色亚洲| 免费高清视频精品| 日本少妇一区二区| 蜜臀av一区二区三区| 日本欧美大码aⅴ在线播放| 三级欧美在线一区| 午夜精品久久久久久久久| 亚洲va在线va天堂| 亚洲va韩国va欧美va精品| 一区二区在线观看视频在线观看| 中文字幕在线不卡| 亚洲私人黄色宅男| 一区二区三区高清在线| 亚洲午夜电影网| 视频一区视频二区在线观看| 日韩av中文字幕一区二区| 日韩国产欧美在线视频| 奇米影视一区二区三区| 日韩制服丝袜先锋影音| 日本vs亚洲vs韩国一区三区 | 欧美精品在线一区二区三区| 99国产麻豆精品| 91美女在线观看| 亚洲国产日韩一级| 日韩黄色小视频| 蜜桃在线一区二区三区| 欧美在线小视频| 欧美久久久久久久久中文字幕| 欧美浪妇xxxx高跟鞋交| 精品精品国产高清a毛片牛牛| 久久久久久久网| 亚洲欧洲精品天堂一级| 亚洲第一综合色| 九九视频精品免费| 不卡一二三区首页| 欧美日韩日本视频| 亚洲精品在线电影| 亚洲欧美日韩在线| 五月天婷婷综合| 国产精品1区2区| 在线视频你懂得一区| 日韩欧美在线综合网| 中文字幕的久久| 亚洲高清免费观看| 国内精品伊人久久久久av一坑| 成人h精品动漫一区二区三区| 欧美这里有精品| 久久久亚洲高清| 亚洲综合色噜噜狠狠| 加勒比av一区二区| 色综合久久久久综合体桃花网| 337p亚洲精品色噜噜| 国产精品网曝门| 日韩影院在线观看| 久久久久99精品国产片| 亚洲一区二区综合| 国产高清精品久久久久| 欧美三级日韩三级| 国产精品网站在线观看| 美日韩一区二区三区| 色综合天天性综合| 久久在线观看免费| 天天影视色香欲综合网老头| 成人免费黄色在线| 欧美一区二区三区男人的天堂| 国产精品视频免费看| 日韩精品电影一区亚洲| 色狠狠av一区二区三区| 久久精品人人爽人人爽| 人禽交欧美网站| 欧美日韩视频一区二区| 亚洲精品国产一区二区三区四区在线| 久久精品国产亚洲高清剧情介绍 | 亚洲一区在线观看免费 | 有码一区二区三区| 丁香激情综合五月| 精品少妇一区二区三区| 日韩中文字幕av电影| 欧美午夜精品免费| 中文字幕一区二区在线播放| 国产一区二区三区四区在线观看| 欧美日韩免费高清一区色橹橹| 综合av第一页| jlzzjlzz亚洲女人18| 国产亚洲一区二区三区四区 | 国产精品久久久久久久久果冻传媒| 麻豆视频观看网址久久| 3d成人动漫网站| 亚洲地区一二三色| 欧美日韩中字一区| 亚洲一区二区三区精品在线| 91麻豆国产自产在线观看| 中文字幕亚洲欧美在线不卡| 大桥未久av一区二区三区中文| 欧美成人一级视频| 韩国精品一区二区| 久久亚洲精品国产精品紫薇| 国产精品一区免费视频| 五月激情综合色| 在线电影院国产精品| 首页亚洲欧美制服丝腿| 在线观看91精品国产麻豆| 日本不卡一二三| 精品久久久网站| 国产精品一二一区| 国产日韩v精品一区二区| 国产成人一级电影| 亚洲丝袜美腿综合| 欧美探花视频资源| 日本大胆欧美人术艺术动态| 日韩欧美一区二区不卡| 国产一区二区三区综合| 日本一区二区免费在线观看视频 | 精品中文字幕一区二区小辣椒 | 国产成人av电影在线播放| 国产色91在线| 97超碰欧美中文字幕| 亚洲资源在线观看| 538在线一区二区精品国产| 日韩高清不卡一区二区| 久久久久国产免费免费| 91免费看`日韩一区二区| 亚洲电影第三页| 久久久亚洲精品一区二区三区| 成人丝袜18视频在线观看| 一区二区三区在线视频观看 | 国产日韩欧美精品综合| 91女人视频在线观看| 午夜精品久久久久久久| 欧美精品一区二区高清在线观看|