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

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

?? ltmain.sh

?? 最新的libusb庫
?? SH
?? 第 1 頁 / 共 5 頁
字號:
test "$mode" = finish && func_mode_finish ${1+"$@"}# func_mode_install arg...func_mode_install (){    $opt_debug    # There may be an optional sh(1) argument at the beginning of    # install_prog (especially on Windows NT).    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||       # Allow the use of GNU shtool's install command.       $ECHO "X$nonopt" | $GREP shtool >/dev/null; then      # Aesthetically quote it.      func_quote_for_eval "$nonopt"      install_prog="$func_quote_for_eval_result "      arg=$1      shift    else      install_prog=      arg=$nonopt    fi    # The real first argument should be the name of the installation program.    # Aesthetically quote it.    func_quote_for_eval "$arg"    install_prog="$install_prog$func_quote_for_eval_result"    # We need to accept at least all the BSD install flags.    dest=    files=    opts=    prev=    install_type=    isdir=no    stripme=    for arg    do      if test -n "$dest"; then	files="$files $dest"	dest=$arg	continue      fi      case $arg in      -d) isdir=yes ;;      -f)	case " $install_prog " in	*[\\\ /]cp\ *) ;;	*) prev=$arg ;;	esac	;;      -g | -m | -o)	prev=$arg	;;      -s)	stripme=" -s"	continue	;;      -*)	;;      *)	# If the previous option needed an argument, then skip it.	if test -n "$prev"; then	  prev=	else	  dest=$arg	  continue	fi	;;      esac      # Aesthetically quote the argument.      func_quote_for_eval "$arg"      install_prog="$install_prog $func_quote_for_eval_result"    done    test -z "$install_prog" && \      func_fatal_help "you must specify an install program"    test -n "$prev" && \      func_fatal_help "the \`$prev' option requires an argument"    if test -z "$files"; then      if test -z "$dest"; then	func_fatal_help "no file or destination specified"      else	func_fatal_help "you must specify a destination"      fi    fi    # Strip any trailing slash from the destination.    func_stripname '' '/' "$dest"    dest=$func_stripname_result    # Check to see that the destination is a directory.    test -d "$dest" && isdir=yes    if test "$isdir" = yes; then      destdir="$dest"      destname=    else      func_dirname_and_basename "$dest" "" "."      destdir="$func_dirname_result"      destname="$func_basename_result"      # Not a directory, so check to see that there is only one file specified.      set dummy $files; shift      test "$#" -gt 1 && \	func_fatal_help "\`$dest' is not a directory"    fi    case $destdir in    [\\/]* | [A-Za-z]:[\\/]*) ;;    *)      for file in $files; do	case $file in	*.lo) ;;	*)	  func_fatal_help "\`$destdir' must be an absolute directory name"	  ;;	esac      done      ;;    esac    # This variable tells wrapper scripts just to set variables rather    # than running their programs.    libtool_install_magic="$magic"    staticlibs=    future_libdirs=    current_libdirs=    for file in $files; do      # Do each installation.      case $file in      *.$libext)	# Do the static libraries later.	staticlibs="$staticlibs $file"	;;      *.la)	# Check to see that this really is a libtool archive.	func_lalib_unsafe_p "$file" \	  || func_fatal_help "\`$file' is not a valid libtool archive"	library_names=	old_library=	relink_command=	func_source "$file"	# Add the libdir to current_libdirs if it is the destination.	if test "X$destdir" = "X$libdir"; then	  case "$current_libdirs " in	  *" $libdir "*) ;;	  *) current_libdirs="$current_libdirs $libdir" ;;	  esac	else	  # Note the libdir as a future libdir.	  case "$future_libdirs " in	  *" $libdir "*) ;;	  *) future_libdirs="$future_libdirs $libdir" ;;	  esac	fi	func_dirname "$file" "/" ""	dir="$func_dirname_result"	dir="$dir$objdir"	if test -n "$relink_command"; then	  # Determine the prefix the user has applied to our future dir.	  inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"`	  # Don't allow the user to place us outside of our expected	  # location b/c this prevents finding dependent libraries that	  # are installed to the same prefix.	  # At present, this check doesn't affect windows .dll's that	  # are installed into $libdir/../bin (currently, that works fine)	  # but it's something to keep an eye on.	  test "$inst_prefix_dir" = "$destdir" && \	    func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"	  if test -n "$inst_prefix_dir"; then	    # Stick the inst_prefix_dir data into the link command.	    relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`	  else	    relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"`	  fi	  func_warning "relinking \`$file'"	  func_show_eval "$relink_command" \	    'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'	fi	# See the names of the shared library.	set dummy $library_names; shift	if test -n "$1"; then	  realname="$1"	  shift	  srcname="$realname"	  test -n "$relink_command" && srcname="$realname"T	  # Install the shared library and build the symlinks.	  func_show_eval "$install_prog $dir/$srcname $destdir/$realname" \	      'exit $?'	  tstripme="$stripme"	  case $host_os in	  cygwin* | mingw* | pw32*)	    case $realname in	    *.dll.a)	      tstripme=""	      ;;	    esac	    ;;	  esac	  if test -n "$tstripme" && test -n "$striplib"; then	    func_show_eval "$striplib $destdir/$realname" 'exit $?'	  fi	  if test "$#" -gt 0; then	    # Delete the old symlinks, and create new ones.	    # Try `ln -sf' first, because the `ln' binary might depend on	    # the symlink we replace!  Solaris /bin/ln does not understand -f,	    # so we also need to try rm && ln -s.	    for linkname	    do	      test "$linkname" != "$realname" \		&& func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"	    done	  fi	  # Do each command in the postinstall commands.	  lib="$destdir/$realname"	  func_execute_cmds "$postinstall_cmds" 'exit $?'	fi	# Install the pseudo-library for information purposes.	func_basename "$file"	name="$func_basename_result"	instname="$dir/$name"i	func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'	# Maybe install the static library, too.	test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"	;;      *.lo)	# Install (i.e. copy) a libtool object.	# Figure out destination file name, if it wasn't already specified.	if test -n "$destname"; then	  destfile="$destdir/$destname"	else	  func_basename "$file"	  destfile="$func_basename_result"	  destfile="$destdir/$destfile"	fi	# Deduce the name of the destination old-style object file.	case $destfile in	*.lo)	  func_lo2o "$destfile"	  staticdest=$func_lo2o_result	  ;;	*.$objext)	  staticdest="$destfile"	  destfile=	  ;;	*)	  func_fatal_help "cannot copy a libtool object to \`$destfile'"	  ;;	esac	# Install the libtool object if requested.	test -n "$destfile" && \	  func_show_eval "$install_prog $file $destfile" 'exit $?'	# Install the old object if enabled.	if test "$build_old_libs" = yes; then	  # Deduce the name of the old-style object file.	  func_lo2o "$file"	  staticobj=$func_lo2o_result	  func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'	fi	exit $EXIT_SUCCESS	;;      *)	# Figure out destination file name, if it wasn't already specified.	if test -n "$destname"; then	  destfile="$destdir/$destname"	else	  func_basename "$file"	  destfile="$func_basename_result"	  destfile="$destdir/$destfile"	fi	# If the file is missing, and there is a .exe on the end, strip it	# because it is most likely a libtool script we actually want to	# install	stripped_ext=""	case $file in	  *.exe)	    if test ! -f "$file"; then	      func_stripname '' '.exe' "$file"	      file=$func_stripname_result	      stripped_ext=".exe"	    fi	    ;;	esac	# Do a test to see if this is really a libtool program.	case $host in	*cygwin*|*mingw*)	    if func_ltwrapper_executable_p "$file"; then	      func_ltwrapper_scriptname "$file"	      wrapper=$func_ltwrapper_scriptname_result	    else	      func_stripname '' '.exe' "$file"	      wrapper=$func_stripname_result	    fi	    ;;	*)	    wrapper=$file	    ;;	esac	if func_ltwrapper_script_p "$wrapper"; then	  notinst_deplibs=	  relink_command=	  func_source "$wrapper"	  # Check the variables that should have been set.	  test -z "$generated_by_libtool_version" && \	    func_fatal_error "invalid libtool wrapper script \`$wrapper'"	  finalize=yes	  for lib in $notinst_deplibs; do	    # Check to see that each library is installed.	    libdir=	    if test -f "$lib"; then	      func_source "$lib"	    fi	    libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test	    if test -n "$libdir" && test ! -f "$libfile"; then	      func_warning "\`$lib' has not been installed in \`$libdir'"	      finalize=no	    fi	  done	  relink_command=	  func_source "$wrapper"	  outputname=	  if test "$fast_install" = no && test -n "$relink_command"; then	    $opt_dry_run || {	      if test "$finalize" = yes; then	        tmpdir=`func_mktempdir`		func_basename "$file$stripped_ext"		file="$func_basename_result"	        outputname="$tmpdir/$file"	        # Replace the output file specification.	        relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`	        $opt_silent || {	          func_quote_for_expand "$relink_command"		  eval "func_echo $func_quote_for_expand_result"	        }	        if eval "$relink_command"; then :	          else		  func_error "error: relink \`$file' with the above command before installing it"		  $opt_dry_run || ${RM}r "$tmpdir"		  continue	        fi	        file="$outputname"	      else	        func_warning "cannot relink \`$file'"	      fi	    }	  else	    # Install the binary that we compiled earlier.	    file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`	  fi	fi	# remove .exe since cygwin /usr/bin/install will append another	# one anyway	case $install_prog,$host in	*/usr/bin/install*,*cygwin*)	  case $file:$destfile in	  *.exe:*.exe)	    # this is ok	    ;;	  *.exe:*)	    destfile=$destfile.exe	    ;;	  *:*.exe)	    func_stripname '' '.exe' "$destfile"	    destfile=$func_stripname_result	    ;;	  esac	  ;;	esac	func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'	$opt_dry_run || if test -n "$outputname"; then	  ${RM}r "$tmpdir"	fi	;;      esac    done    for file in $staticlibs; do      func_basename "$file"      name="$func_basename_result"      # Set up the ranlib parameters.      oldlib="$destdir/$name"      func_show_eval "$install_prog \$file \$oldlib" 'exit $?'      if test -n "$stripme" && test -n "$old_striplib"; then	func_show_eval "$old_striplib $oldlib" 'exit $?'      fi      # Do each command in the postinstall commands.      func_execute_cmds "$old_postinstall_cmds" 'exit $?'    done    test -n "$future_libdirs" && \      func_warning "remember to run \`$progname --finish$future_libdirs'"    if test -n "$current_libdirs"; then      # Maybe just do a dry run.      $opt_dry_run && current_libdirs=" -n$current_libdirs"      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'    else      exit $EXIT_SUCCESS    fi}test "$mode" = install && func_mode_install ${1+"$@"}# func_generate_dlsyms outputname originator pic_p# Extract symbols from dlprefiles and create ${outputname}S.o with# a dlpreopen symbol table.func_generate_dlsyms (){    $opt_debug    my_outputname="$1"    my_originator="$2"    my_pic_p="${3-no}"    my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`    my_dlsyms=    if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then      if test -n "$NM" && test -n "$global_symbol_pipe"; then	my_dlsyms="${my_outputname}S.c"      else	func_error "not configured to extract global symbols f

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品色在线观看| 国产日韩三级在线| 国产精品18久久久久久久久 | 在线一区二区视频| 卡一卡二国产精品| 最新久久zyz资源站| 精品国产区一区| 在线免费不卡视频| 波多野结衣在线一区| 日本亚洲天堂网| 亚洲乱码一区二区三区在线观看| 精品国一区二区三区| 欧美性色黄大片| eeuss鲁片一区二区三区 | 在线免费亚洲电影| 国产精品一卡二| 蜜臀精品久久久久久蜜臀| 一区视频在线播放| 久久日韩精品一区二区五区| 欧美美女视频在线观看| 91久久精品国产91性色tv| 成人激情午夜影院| 国产成人免费在线| 精品一区二区三区免费观看| 婷婷中文字幕一区三区| 亚洲摸摸操操av| 1000精品久久久久久久久| 欧美经典一区二区| 久久日韩精品一区二区五区| 日韩免费看网站| 日韩一区二区三区四区| 在线不卡欧美精品一区二区三区| 91成人在线免费观看| 99国产欧美另类久久久精品| 成人国产精品视频| 成人一级视频在线观看| 国产成人精品免费看| 国产精品77777| 大胆欧美人体老妇| 成人免费看黄yyy456| 国产成人免费网站| 丁香婷婷深情五月亚洲| 粉嫩在线一区二区三区视频| 国产mv日韩mv欧美| 国产成人精品一区二区三区网站观看| 国产呦萝稀缺另类资源| 国产精品伊人色| 懂色av一区二区在线播放| 成人三级在线视频| 成a人片亚洲日本久久| 色婷婷激情一区二区三区| 久久久久国产精品厨房| wwwwww.欧美系列| 久久综合久久久久88| 精品国产乱码久久| 国产欧美日韩在线看| 国产精品久久久久一区| 亚洲欧美另类小说| 亚洲一区中文在线| 青娱乐精品视频在线| 国产又黄又大久久| av成人免费在线| 欧美视频一区二区三区| 91精品国产色综合久久| 欧美成人高清电影在线| 国产精品久久久久久福利一牛影视| 国产精品福利一区| 亚洲网友自拍偷拍| 久久99这里只有精品| 成人影视亚洲图片在线| 91社区在线播放| 这里只有精品99re| 国产欧美日本一区视频| 亚洲综合网站在线观看| 老司机精品视频一区二区三区| 国产综合久久久久影院| aaa亚洲精品| 欧美久久高跟鞋激| 国产亚洲婷婷免费| 亚洲激情在线播放| 日韩黄色免费网站| 国产九色精品成人porny| 91色在线porny| 日韩一级片网址| 国产精品第五页| 麻豆91免费观看| 色婷婷狠狠综合| 精品国产乱码久久久久久牛牛| 一区二区中文视频| 精品一区免费av| 色8久久精品久久久久久蜜| 欧美成人a视频| 亚洲综合清纯丝袜自拍| 国产曰批免费观看久久久| 欧美综合一区二区三区| 久久九九国产精品| 手机精品视频在线观看| 99在线精品视频| 午夜久久久久久久久久一区二区| 悠悠色在线精品| av在线播放不卡| 欧美日韩www| 亚洲制服丝袜在线| 丁香激情综合国产| 亚洲高清在线精品| 亚洲一区二区精品久久av| 一区二区三区欧美日| 亚洲人成精品久久久久久| 欧美人牲a欧美精品| 欧美aaaaa成人免费观看视频| 成人午夜电影久久影院| 国产精品午夜在线观看| 欧美一级高清大全免费观看| 99精品视频在线观看| 亚洲一区精品在线| 99re热视频精品| 久久这里只有精品视频网| 精品粉嫩aⅴ一区二区三区四区 | 成人理论电影网| 国产欧美一区二区精品忘忧草| 日本aⅴ免费视频一区二区三区| 欧美三区免费完整视频在线观看| 另类小说综合欧美亚洲| 欧美日韩国产精选| 老司机精品视频在线| 亚洲综合精品自拍| 中文字幕在线播放不卡一区| 欧美一级夜夜爽| gogogo免费视频观看亚洲一| 国产精品色婷婷| 在线视频一区二区三区| 久久成人羞羞网站| 国产精品网站在线观看| 日韩国产欧美在线播放| 日韩精品在线一区二区| 久久疯狂做爰流白浆xx| 欧美大肚乱孕交hd孕妇| 成人精品视频一区二区三区| 8x8x8国产精品| 蜜臀久久99精品久久久画质超高清| www亚洲一区| 99久久免费视频.com| 日本一区二区不卡视频| 欧美优质美女网站| 免费看黄色91| 国产喂奶挤奶一区二区三区| 91丨porny丨户外露出| 亚洲乱码精品一二三四区日韩在线| 欧美曰成人黄网| 精品久久一二三区| 91精品国产综合久久香蕉的特点 | 亚洲午夜电影在线| 日韩欧美成人激情| 成人夜色视频网站在线观看| 亚洲乱码国产乱码精品精可以看 | 亚洲电影在线免费观看| 亚洲丰满少妇videoshd| 99riav久久精品riav| ...xxx性欧美| 日本韩国欧美在线| 亚洲777理论| 精品免费一区二区三区| 国产精品一区在线观看你懂的| 国产精品情趣视频| 成人黄色av电影| 五月天一区二区| 精品福利二区三区| 色综合久久中文综合久久97| 婷婷成人综合网| 久久久精品综合| 日本高清不卡视频| 青青草97国产精品免费观看无弹窗版 | 欧美日韩中文一区| 久久国产精品露脸对白| 国产精品午夜电影| 2021国产精品久久精品| 国产成人精品综合在线观看| 亚洲综合男人的天堂| 2023国产精品| 在线观看av不卡| 国产一区二区成人久久免费影院| 成人免费小视频| 日韩精品专区在线影院观看| 成人午夜激情片| 免费成人美女在线观看.| 国产精品女人毛片| 日韩一级高清毛片| 91在线观看美女| 麻豆精品视频在线观看视频| 亚洲婷婷在线视频| 日韩欧美国产综合一区| 色狠狠av一区二区三区| 国产一区二区三区黄视频 | 欧美日韩三级在线| 成人免费视频视频在线观看免费 | 成人久久久精品乱码一区二区三区| 亚洲妇熟xx妇色黄| 国产精品每日更新| 精品国产乱码久久久久久牛牛| 欧美视频一区在线观看|