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

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

?? ltmain.sh

?? jrtplib3.3.0的實現
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    deplibs=    newdependency_libs=    newlib_search_path=    need_relink=no # whether we're linking any uninstalled libtool libraries    notinst_deplibs= # not-installed libtool libraries    notinst_path= # paths that contain not-installed libtool libraries    case $linkmode in    lib)	passes="conv link"	for file in $dlfiles $dlprefiles; do	  case $file in	  *.la) ;;	  *)	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2	    exit $EXIT_FAILURE	    ;;	  esac	done	;;    prog)	compile_deplibs=	finalize_deplibs=	alldeplibs=no	newdlfiles=	newdlprefiles=	passes="conv scan dlopen dlpreopen link"	;;    *)  passes="conv"	;;    esac    for pass in $passes; do      if test "$linkmode,$pass" = "lib,link" ||	 test "$linkmode,$pass" = "prog,scan"; then	libs="$deplibs"	deplibs=      fi      if test "$linkmode" = prog; then	case $pass in	dlopen) libs="$dlfiles" ;;	dlpreopen) libs="$dlprefiles" ;;	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;	esac      fi      if test "$pass" = dlopen; then	# Collect dlpreopened libraries	save_deplibs="$deplibs"	deplibs=      fi      for deplib in $libs; do	lib=	found=no	case $deplib in	-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	  if test "$linkmode,$pass" = "prog,link"; then	    compile_deplibs="$deplib $compile_deplibs"	    finalize_deplibs="$deplib $finalize_deplibs"	  else	    compiler_flags="$compiler_flags $deplib"	  fi	  continue	  ;;	-l*)	  if test "$linkmode" != lib && test "$linkmode" != prog; then	    $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2	    continue	  fi	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do	    for search_ext in .la $std_shrext .so .a; do	      # Search the libtool library	      lib="$searchdir/lib${name}${search_ext}"	      if test -f "$lib"; then		if test "$search_ext" = ".la"; then		  found=yes		else		  found=no		fi		break 2	      fi	    done	  done	  if test "$found" != yes; then	    # deplib doesn't seem to be a libtool library	    if test "$linkmode,$pass" = "prog,link"; then	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      deplibs="$deplib $deplibs"	      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"	    fi	    continue	  else # deplib is a libtool library	    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,	    # We need to do some special things here, and not later.	    if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then	      case " $predeps $postdeps " in	      *" $deplib "*)		if (${SED} -e '2q' $lib |                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then		  library_names=		  old_library=		  case $lib in		  */* | *\\*) . $lib ;;		  *) . ./$lib ;;		  esac		  for l in $old_library $library_names; do		    ll="$l"		  done		  if test "X$ll" = "X$old_library" ; then # only static version available		    found=no		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`		    test "X$ladir" = "X$lib" && ladir="."		    lib=$ladir/$old_library		    if test "$linkmode,$pass" = "prog,link"; then		      compile_deplibs="$deplib $compile_deplibs"		      finalize_deplibs="$deplib $finalize_deplibs"		    else		      deplibs="$deplib $deplibs"		      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"		    fi		    continue		  fi		fi	        ;;	      *) ;;	      esac	    fi	  fi	  ;; # -l	-L*)	  case $linkmode in	  lib)	    deplibs="$deplib $deplibs"	    test "$pass" = conv && continue	    newdependency_libs="$deplib $newdependency_libs"	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  prog)	    if test "$pass" = conv; then	      deplibs="$deplib $deplibs"	      continue	    fi	    if test "$pass" = scan; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  *)	    $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2	    ;;	  esac # linkmode	  continue	  ;; # -L	-R*)	  if test "$pass" = link; then	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`	    # Make sure the xrpath contains only unique directories.	    case "$xrpath " in	    *" $dir "*) ;;	    *) xrpath="$xrpath $dir" ;;	    esac	  fi	  deplibs="$deplib $deplibs"	  continue	  ;;	*.la) lib="$deplib" ;;	*.$libext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  case $linkmode in	  lib)	    valid_a_lib=no	    case $deplibs_check_method in	      match_pattern*)		set dummy $deplibs_check_method	        match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`		if eval $echo \"$deplib\" 2>/dev/null \		    | $SED 10q \		    | $EGREP "$match_pattern_regex" > /dev/null; then		  valid_a_lib=yes		fi		;;	      pass_all)		valid_a_lib=yes		;;            esac	    if test "$valid_a_lib" != yes; then	      $echo	      $echo "*** Warning: Trying to link with static lib archive $deplib."	      $echo "*** I have the capability to make that library automatically link in when"	      $echo "*** you link to this library.  But I can only do this if you have a"	      $echo "*** shared version of the library, which you do not appear to have"	      $echo "*** because the file extensions .$libext of this argument makes me believe"	      $echo "*** that it is just a static archive that I should not used here."	    else	      $echo	      $echo "*** Warning: Linking the shared library $output against the"	      $echo "*** static library $deplib is not portable!"	      deplibs="$deplib $deplibs"	    fi	    continue	    ;;	  prog)	    if test "$pass" != link; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    continue	    ;;	  esac # linkmode	  ;; # *.$libext	*.lo | *.$objext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	  elif test "$linkmode" = prog; then	    if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	      # If there is no dlopen support or we're linking statically,	      # we need to preload.	      newdlprefiles="$newdlprefiles $deplib"	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      newdlfiles="$newdlfiles $deplib"	    fi	  fi	  continue	  ;;	%DEPLIBS%)	  alldeplibs=yes	  continue	  ;;	esac # case $deplib	if test "$found" = yes || test -f "$lib"; then :	else	  $echo "$modename: cannot find the library \`$lib'" 1>&2	  exit $EXIT_FAILURE	fi	# Check to see that this really is a libtool archive.	if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2	  exit $EXIT_FAILURE	fi	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`	test "X$ladir" = "X$lib" && ladir="."	dlname=	dlopen=	dlpreopen=	libdir=	library_names=	old_library=	# If the library was installed with an old release of libtool,	# it will not redefine variables installed, or shouldnotlink	installed=yes	shouldnotlink=no	avoidtemprpath=	# Read the .la file	case $lib in	*/* | *\\*) . $lib ;;	*) . ./$lib ;;	esac	if test "$linkmode,$pass" = "lib,link" ||	   test "$linkmode,$pass" = "prog,scan" ||	   { test "$linkmode" != prog && test "$linkmode" != lib; }; then	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"	fi	if test "$pass" = conv; then	  # Only check for convenience libraries	  deplibs="$lib $deplibs"	  if test -z "$libdir"; then	    if test -z "$old_library"; then	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	      exit $EXIT_FAILURE	    fi	    # It is a libtool convenience library, so add in its objects.	    convenience="$convenience $ladir/$objdir/$old_library"	    old_convenience="$old_convenience $ladir/$objdir/$old_library"	    tmp_libs=	    for deplib in $dependency_libs; do	      deplibs="$deplib $deplibs"              if test "X$duplicate_deps" = "Xyes" ; then	        case "$tmp_libs " in	        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	        esac              fi	      tmp_libs="$tmp_libs $deplib"	    done	  elif test "$linkmode" != prog && test "$linkmode" != lib; then	    $echo "$modename: \`$lib' is not a convenience library" 1>&2	    exit $EXIT_FAILURE	  fi	  continue	fi # $pass = conv	# Get the name of the library we link against.	linklib=	for l in $old_library $library_names; do	  linklib="$l"	done	if test -z "$linklib"; then	  $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	  exit $EXIT_FAILURE	fi	# This library was specified with -dlopen.	if test "$pass" = dlopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2	    exit $EXIT_FAILURE	  fi	  if test -z "$dlname" ||	     test "$dlopen_support" != yes ||	     test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking	    # statically, we need to preload.  We also need to preload any	    # dependent libraries so libltdl's deplib preloader doesn't	    # bomb out in the load deplibs phase.	    dlprefiles="$dlprefiles $lib $dependency_libs"	  else	    newdlfiles="$newdlfiles $lib"	  fi	  continue	fi # $pass = dlopen	# We need an absolute path.	case $ladir in	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;	*)	  abs_ladir=`cd "$ladir" && pwd`	  if test -z "$abs_ladir"; then	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	    abs_ladir="$ladir"	  fi	  ;;	esac	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`	# Find the relevant object directory and library name.	if test "X$installed" = Xyes; then	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then	    $echo "$modename: warning: library \`$lib' was moved." 1>&2	    dir="$ladir"	    absdir="$abs_ladir"	    libdir="$abs_ladir"	  else	    dir="$libdir"	    absdir="$libdir"	  fi	  test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes	else	  if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then	    dir="$ladir"	    absdir="$abs_ladir"	    # Remove this search path later	    notinst_path="$notinst_path $abs_ladir"	  else	    dir="$ladir/$objdir"	    absdir="$abs_ladir/$objdir"	    # Remove this search path later	    notinst_path="$notinst_path $abs_ladir"	  fi	fi # $installed = yes	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	# This library was specified with -dlpreopen.	if test "$pass" = dlpreopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2	    exit $EXIT_FAILURE	  fi	  # Prefer using a static library (so that no silly _DYNAMIC symbols	  # are required to link).	  if test -n "$old_library"; then	    newdlprefiles="$newdlprefiles $dir/$old_library"	  # Otherwise, use the dlname, so that lt_dlopen finds it.	  elif test -n "$dlname"; then	    newdlprefiles="$newdlprefiles $dir/$dlname"	  else	    newdlprefiles="$newdlprefiles $dir/$linklib"	  fi	fi # $pass = dlpreopen	if test -z "$libdir"; then	  # Link the convenience library	  if test "$linkmode" = lib; then	    deplibs="$dir/$old_library $deplibs"	  elif test "$linkmode,$pass" = "prog,link"; then	    compile_deplibs="$dir/$old_library $compile_deplibs"	    finalize_deplibs="$dir/$old_library $finalize_deplibs"	  else	    deplibs="$lib $deplibs" # used for prog,scan pass	  fi	  continue	fi	if test "$linkmode" = prog && test "$pass" != link; then	  newlib_search_path="$newlib_search_path $ladir"	  deplibs="$lib $deplibs"	  linkalldeplibs=no	  if test "$link_all_deplibs" != no || test -z "$library_names" ||	     test "$build_libtool_libs" = no; then	    linkalldeplibs=yes	  fi	  tmp_libs=	  for deplib in $dependency_libs; do	    case $deplib in	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test	    esac	    # Need to link against all dependency_libs?	    if test "$linkalldeplibs" = yes; then	      deplibs="$deplib $deplibs"	    else	      # Need to hardcode shared library paths	      # or/and link against static libraries	      newdependency_libs="$deplib $newdependency_libs"	    fi	    if test "X$duplicate_deps" = "Xyes" ; then	      case "$tmp_libs " in	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	      esac	    fi	    tmp_libs="$tmp_libs $deplib"	  done # for deplib	  continue	fi # $linkmode = prog...	if test "$linkmode,$pass" = "prog,link"; then	  if test -n "$library_names" &&	     { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	    # We need to hardcode the library path	    if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then	      # Make sure the rpath contains only unique directories.	      case "$temp_rpath " in	      *" $dir "*) ;;	      *" $absdir "*) ;;	      *) temp_rpath="$temp_rpath $dir" ;;	      esac	    fi	    # Hardcode the library path.	    # Skip directories that are in the system default run-time	    # search path.	    case " $sys_lib_dlsearch_path " in	    *" $absdir "*) ;;	    *)	      case "$compile_rpath " in	      *" $absdir "*) ;;	      *) compile_rpath="$compile_rpath $absdir"	      esac	      ;;	    esac	    case " $sys_lib_dlsearch_path " in	    *" $libdir "*) ;;	    *)	      case "$finalize_rpath " in	      *" $libdir "*) ;;	      *) finalize_rpath="$finalize_rpath $libdir"	      esac	      ;;	    esac	  fi # $linkmode,$pass = prog,link...	  if test "$alldeplibs" = yes &&	     { test "$deplibs_check_method" = pass_all ||	       { test "$build_libtool_libs" = yes &&		 test -n "$library_names"; }; }; then	    # We only need to search for static l

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成a人片在线观看中文| 国产精品看片你懂得| 不卡的电影网站| 亚洲bdsm女犯bdsm网站| 久久精品视频在线看| 欧美色区777第一页| 国产不卡视频一区二区三区| 日韩精品国产精品| **网站欧美大片在线观看| 日韩精品一区二区三区在线| 在线观看亚洲精品视频| 不卡区在线中文字幕| 精品一区二区三区视频在线观看| 亚洲主播在线观看| 中文字幕五月欧美| 精品国产sm最大网站免费看| 欧美群妇大交群中文字幕| 91玉足脚交白嫩脚丫在线播放| 激情偷乱视频一区二区三区| 午夜精品久久久| 亚洲最大成人综合| 亚洲欧美自拍偷拍| 中文一区二区完整视频在线观看 | 欧美美女一区二区在线观看| 9人人澡人人爽人人精品| 国产老妇另类xxxxx| 美女视频黄 久久| 热久久久久久久| 亚洲第一综合色| 亚洲国产精品影院| 一级精品视频在线观看宜春院| 国产精品欧美经典| 欧美激情一区二区三区蜜桃视频| 精品对白一区国产伦| 日韩欧美亚洲国产精品字幕久久久 | 日韩午夜电影av| 欧美日韩电影在线播放| 欧美日韩精品免费观看视频| 日本精品视频一区二区| 色综合视频在线观看| 色综合天天综合网国产成人综合天| www.久久精品| 91丨国产丨九色丨pron| 91麻豆精品在线观看| 欧美性色黄大片手机版| 欧美亚洲动漫精品| 91.com在线观看| 精品免费一区二区三区| 精品成a人在线观看| 国产婷婷色一区二区三区四区| 欧美激情艳妇裸体舞| 国产精品不卡一区二区三区| 亚洲激情一二三区| 亚洲成人一区在线| 美日韩一区二区| 国产精品一区二区久久不卡| 成人av动漫网站| 色狠狠综合天天综合综合| 欧美性大战久久久久久久蜜臀| 欧美日韩在线观看一区二区| 在线91免费看| 久久蜜桃av一区精品变态类天堂 | 欧美国产精品v| 亚洲欧美一区二区三区极速播放 | 色视频一区二区| 欧美日韩中文另类| 日韩欧美一区二区视频| 亚洲国产高清不卡| 亚洲一区二区三区四区的| 青娱乐精品视频在线| 国产在线播放一区| 91老师片黄在线观看| 欧美日韩成人综合在线一区二区| 日韩午夜激情电影| 亚洲视频综合在线| 男人操女人的视频在线观看欧美| 激情综合色综合久久综合| 9l国产精品久久久久麻豆| 欧美日韩一区 二区 三区 久久精品| 欧美不卡在线视频| 亚洲免费在线看| 精品亚洲国产成人av制服丝袜| 成人黄色软件下载| 欧美一区二区三区系列电影| 国产精品色在线观看| 亚洲h精品动漫在线观看| 国产毛片一区二区| 欧美日韩三级视频| 国产精品女同一区二区三区| 午夜视频在线观看一区二区 | 免费高清在线视频一区·| aa级大片欧美| 日韩午夜三级在线| 亚洲精品老司机| 国产福利不卡视频| 欧美一区二区三区小说| 亚洲日韩欧美一区二区在线| 狠狠色狠狠色综合日日91app| 欧美影院一区二区三区| 国产女主播在线一区二区| 亚洲国产精品一区二区久久| 成人免费va视频| 精品国产乱码久久久久久浪潮| 亚洲午夜激情网页| 成人国产精品视频| 精品国内片67194| 视频在线观看91| 99国产一区二区三精品乱码| 精品久久久久久亚洲综合网| 天天综合网 天天综合色| 91麻豆蜜桃一区二区三区| 国产欧美一区二区在线观看| 极品销魂美女一区二区三区| 欧美精品在线一区二区| 亚洲精品视频在线| 成人国产视频在线观看| 日本一区二区在线不卡| 精品亚洲免费视频| 精品少妇一区二区三区免费观看| 亚洲国产中文字幕| 在线一区二区三区| 一区二区三区在线观看网站| 91视频你懂的| 中文字幕中文字幕在线一区 | 亚洲午夜免费福利视频| 99久久精品免费看| 国产精品久久毛片av大全日韩| 国产精品综合二区| 久久视频一区二区| 国内不卡的二区三区中文字幕| 欧美一区二区在线观看| 免费在线看成人av| 日韩一区二区免费视频| 青草国产精品久久久久久| 欧美高清hd18日本| 石原莉奈在线亚洲三区| 91.com在线观看| 麻豆一区二区三| 欧美tickling网站挠脚心| 精品综合免费视频观看| 欧美va亚洲va在线观看蝴蝶网| 精品一区二区三区久久| ww久久中文字幕| 国产a级毛片一区| 中文字幕在线一区免费| 99精品视频一区| 亚洲在线观看免费| 91精品国产91久久久久久最新毛片 | 国产精品一卡二| 中文字幕一区视频| 欧洲另类一二三四区| 亚洲国产欧美另类丝袜| 在线观看91av| 国产成人综合在线观看| 中日韩av电影| 欧美中文字幕不卡| 美腿丝袜亚洲综合| 中文子幕无线码一区tr| 91福利在线看| 蜜桃视频一区二区三区在线观看| 久久久亚洲欧洲日产国码αv| 国产成人av一区二区三区在线| 亚洲特黄一级片| 91精品国产全国免费观看 | www.欧美精品一二区| 亚洲一区在线播放| 精品国产一区二区三区不卡| 高清av一区二区| 亚洲高清免费在线| 2022国产精品视频| 91免费看片在线观看| 天堂影院一区二区| 国产精品久久毛片a| 欧美美女bb生活片| 国产成人精品三级| 天天操天天综合网| 国产精品婷婷午夜在线观看| 在线观看av一区二区| 国内精品国产成人| 一区二区三区丝袜| 久久这里都是精品| 欧美系列一区二区| 国产91露脸合集magnet| 日韩电影一二三区| 国产精品久久毛片| 精品精品国产高清一毛片一天堂| 91麻豆.com| 国产成人精品免费视频网站| 亚洲成av人片一区二区三区 | 亚洲免费av高清| 精品福利在线导航| 欧美嫩在线观看| aaa欧美日韩| 国产中文一区二区三区| 午夜精品福利久久久| 亚洲欧美综合色| 国产午夜亚洲精品不卡| 欧美人xxxx| 欧美伊人久久久久久午夜久久久久| 国产成人在线视频网站|