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

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

?? ltmain.sh

?? 相當優秀的 UNIX 進程管理工具
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	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 variable installed.	installed=yes	# Read the .la file	case $lib in	*/* | *\\*) . $lib ;;	*) . ./$lib ;;	esac	if test "$linkmode,$pass" = "lib,link" ||	   test "$linkmode,$pass" = "prog,scan" ||	   { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then	   # Add dl[pre]opened files of deplib	  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 1	    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"	      case "$tmp_libs " in	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	      esac	      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 1	  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 1	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 1	  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.	    dlprefiles="$dlprefiles $lib"	  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	else	  dir="$ladir/$objdir"	  absdir="$abs_ladir/$objdir"	  # Remove this search path later	  notinst_path="$notinst_path $abs_ladir"	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 1	  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"	  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	    case "$tmp_libs " in	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	    esac	    tmp_libs="$tmp_libs $deplib"	  done # for deplib	  continue	fi # $linkmode = prog...	link_static=no # Whether the deplib will be linked statically	if test -n "$library_names" &&	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	  # Link against this shared library	  if test "$linkmode,$pass" = "prog,link" ||	   { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then	    # 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	    if test "$linkmode" = prog; then	      # We need to hardcode the library path	      if test -n "$shlibpath_var"; then		# Make sure the rpath contains only unique directories.		case "$temp_rpath " in		*" $dir "*) ;;		*" $absdir "*) ;;		*) temp_rpath="$temp_rpath $dir" ;;		esac	      fi	    fi	  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 libraries	    continue	  fi	  if test "$installed" = no; then	    notinst_deplibs="$notinst_deplibs $lib"	    need_relink=yes	  fi	  if test -n "$old_archive_from_expsyms_cmds"; then	    # figure out the soname	    set dummy $library_names	    realname="$2"	    shift; shift	    libname=`eval \\$echo \"$libname_spec\"`	    # use dlname if we got it. it's perfectly good, no?	    if test -n "$dlname"; then	      soname="$dlname"	    elif test -n "$soname_spec"; then	      # bleh windows	      case $host in	      *cygwin*)		major=`expr $current - $age`		versuffix="-$major"		;;	      esac	      eval soname=\"$soname_spec\"	    else	      soname="$realname"	    fi	    # Make a new name for the extract_expsyms_cmds to use	    soroot="$soname"	    soname=`echo $soroot | sed -e 's/^.*\///'`	    newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"	    # If the library has no export list, then create one now	    if test -f "$output_objdir/$soname-def"; then :	    else	      $show "extracting exported symbol list from \`$soname'"	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'	      eval cmds=\"$extract_expsyms_cmds\"	      for cmd in $cmds; do		IFS="$save_ifs"		$show "$cmd"		$run eval "$cmd" || exit $?	      done	      IFS="$save_ifs"	    fi	    # Create $newlib	    if test -f "$output_objdir/$newlib"; then :; else	      $show "generating import library for \`$soname'"	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'	      eval cmds=\"$old_archive_from_expsyms_cmds\"	      for cmd in $cmds; do		IFS="$save_ifs"		$show "$cmd"		$run eval "$cmd" || exit $?	      done	      IFS="$save_ifs"	    fi	    # make sure the library variables are pointing to the new library	    dir=$output_objdir	    linklib=$newlib	  fi # test -n $old_archive_from_expsyms_cmds	  if test "$linkmode" = prog || test "$mode" != relink; then	    add_shlibpath=	    add_dir=	    add=	    lib_linked=yes	    case $hardcode_action in	    immediate | unsupported)	      if test "$hardcode_direct" = no; then		add="$dir/$linklib"	      elif test "$hardcode_minus_L" = no; then		case $host in		*-*-sunos*) add_shlibpath="$dir" ;;		esac		add_dir="-L$dir"		add="-l$name"	      elif test "$hardcode_shlibpath_var" = no; then		add_shlibpath="$dir"		add="-l$name"	      else		lib_linked=no	      fi	      ;;	    relink)	      if test "$hardcode_direct" = yes; then		add="$dir/$linklib"	      elif test "$hardcode_minus_L" = yes; then		add_dir="-L$dir"		add="-l$name"	      elif test "$hardcode_shlibpath_var" = yes; then		add_shlibpath="$dir"		add="-l$name"	      else		lib_linked=no	      fi	      ;;	    *) lib_linked=no ;;	    esac	    if test "$lib_linked" != yes; then	      $echo "$modename: configuration error: unsupported hardcode properties"	      exit 1	    fi	    if test -n "$add_shlibpath"; then	      case :$compile_shlibpath: in	      *":$add_shlibpath:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;	      esac	    fi	    if test "$linkmode" = prog; then	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"	      test -n "$add" && compile_deplibs="$add $compile_deplibs"	    else	      test -n "$add_dir" && deplibs="$add_dir $deplibs"	      test -n "$add" && deplibs="$add $deplibs"	      if test "$hardcode_direct" != yes && \		 test "$hardcode_minus_L" != yes && \		 test "$hardcode_shlibpath_var" = yes; then		case :$finalize_shlibpath: in		*":$libdir:"*) ;;		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;		esac	      fi	    fi	  fi	  if test "$linkmode" = prog || test "$mode" = relink; then	    add_shlibpath=	    add_dir=	    add=	    # Finalize command for both is simple: just hardcode it.	    if test "$hardcode_direct" = yes; then	      add="$libdir/$linklib"	    elif test "$hardcode_minus_L" = yes; then	      add_dir="-L$libdir"	      add="-l$name"	    elif test "$hardcode_shlibpath_var" = yes; then	      case :$finalize_shlibpath: in	      *":$libdir:"*) ;;	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;	      esac	      add="-l$name"	    else	      # We cannot seem to hardcode it, guess we'll fake it.	      add_dir="-L$libdir"	      add="-l$name"	    fi	    if test "$linkmode" = prog; then	      test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"	      test -n "$add" && finalize_deplibs="$add $finalize_deplibs"	    else	      test -n "$add_dir" && deplibs="$add_dir $deplibs"	      test -n "$add" && deplibs="$add $deplibs"	    fi	  fi	elif test "$linkmode" = prog; then	  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 libraries	    continue	  fi	  # Try to link the static library	  # Here we assume that one of hardcode_direct or hardcode_minus_L	  # is not unsupported.  This is valid on all known static and	  # shared platforms.	  if test "$hardcode_direct" != unsupported; then	    test -n "$old_library" && linklib="$old_library"	    compile_deplibs="$dir/$linklib $compile_deplibs"	    finalize_deplibs="$dir/$linklib $finalize_deplibs"	  else	    compile_deplibs="-l$name -L$dir $compile_deplibs"	    finalize_deplibs="-l$name -L$dir $finalize_deplibs"	  fi	elif test "$build_libtool_libs" = yes; then	  # Not a shared library	  if test "$deplibs_check_method" != pass_all; then	    # We're trying link a shared library against a static one	    # but the system doesn't support it.	    # Just print a warning and add the library to dependency_libs so	    # that the program can be linked against the static library.	    echo	    echo "*** Warning: This library needs some functionality provided by $lib."	    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."	    if test "$module" = yes; then	      echo "*** Therefore, libtool will create a static module, that should work "	      echo "*** as long as the dlopening application is linked with the -dlopen flag."	      if test -z "$global_symbol_pipe"; then	        echo	        echo "*** However, this would only work if libtool was able to extract symbol"	        echo "*** lists from a program, using \`nm' or equivalent, but libtool could"	        echo "*** not find such a program.  So, this module is probably useless."	        echo "*** \`nm' from GNU binutils and a full rebuild may help."	      fi	      if test "$build_old_libs" = no; then	        build_libtool_libs=module	        build_old_libs=yes	      else	        build_libtool_libs=no	      fi	    fi	  else	    convenience="$convenience $dir/$old_library"	    old_convenience="$old_convenience $dir/$old_library"	    deplibs="$dir/$old_library $deplibs"	    link_static=yes	  fi	fi # link shared/static library?	if test "$linkmode" = lib; then	  if test -n "$dependency_libs" &&	     { test "$hardcode_into_libs" != yes || test $build_old_libs = yes ||	       test $link_static = yes; }; then	    # Extract -R from dependency_libs	    temp_deplibs=	    for libdir in $dependency_libs; do	      case $libdir in	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`		   case " $xrpath " in		   *" $temp_xrpath "*) ;;		   *) xrpath="$xrpath $temp_xrpath";;		   esac;;	      *) temp_deplibs="$temp_deplibs $libdir";;	      esac	    done	    dependency_libs="$temp_deplibs"	  fi	  newlib_search_path="$newlib_search_path $absdir"	  # Link against this library	  test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"	  # ... and its dependency_libs	  tmp_libs=	  for deplib in $dependency_libs; do	    newdependency_libs="$deplib $newdependency_libs"	    case "$tmp_libs " in	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	    esac	    tmp_libs="$tmp_libs $deplib"	  done	  if test "$link_all_deplibs" != no; then	    # Add the search paths of all dependency libraries	    for deplib in $dependency_libs; do	      case $deplib in	      -L*) path="$deplib" ;;	      *.la)		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`		test "X$dir" = "X$deplib" && dir="."		# We need an absolute path.		case $dir in		[\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;		*)		  absdir=`cd "$dir" && pwd`		  if test -z "$absdir"; then		    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2		    absdir="$dir"		  fi		  ;;		esac		if grep "^installed=no" $deplib > /dev/null; then		  path="-L$absdir/$objdir"		else

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲黄网站在线观看| 亚洲精品高清在线| 久久久.com| 国产午夜亚洲精品羞羞网站| 国产精品久久久久aaaa| 亚洲伊人色欲综合网| 美女视频一区二区三区| 不卡av电影在线播放| 欧美日韩黄色一区二区| 精品精品国产高清a毛片牛牛| 欧美国产在线观看| 日韩精品一级中文字幕精品视频免费观看 | 成人性生交大片免费| 在线免费视频一区二区| 久久中文娱乐网| 亚洲精品视频自拍| 激情综合亚洲精品| 欧美色视频一区| 国产日韩av一区| 亚洲成a人片在线观看中文| 国产福利一区二区| 91精品国产入口在线| 中文字幕一区在线| 日本午夜一区二区| 国产一区在线观看视频| 欧美亚洲动漫制服丝袜| 国产精品乱码人人做人人爱| 蜜臂av日日欢夜夜爽一区| 91成人看片片| 亚洲欧洲国产专区| 激情成人午夜视频| 欧美人妇做爰xxxⅹ性高电影| 欧美精品一区二区三| 日本三级亚洲精品| 欧美影院精品一区| 亚洲丝袜自拍清纯另类| 国产精品自拍毛片| 日韩欧美第一区| 日本不卡高清视频| 99久久精品免费看国产免费软件| 精品国产伦一区二区三区观看体验| 婷婷成人综合网| 欧美日韩一区成人| 亚洲一级二级三级| 色婷婷精品大视频在线蜜桃视频| 国产精品色噜噜| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美在线视频你懂得| 伊人色综合久久天天| av欧美精品.com| 国产精品二三区| 99精品一区二区三区| 中文在线免费一区三区高中清不卡| 美女久久久精品| 精品国产乱码久久久久久1区2区| 蜜臀精品一区二区三区在线观看| 日韩精品一区二区在线观看| 看电影不卡的网站| 久久久影视传媒| www.色精品| 日韩一区欧美一区| 91黄视频在线观看| 天天色天天操综合| 日韩精品一区二区三区老鸭窝| 美国三级日本三级久久99| 久久久影院官网| 成人精品电影在线观看| 成人欧美一区二区三区在线播放| 色诱亚洲精品久久久久久| 亚洲国产成人91porn| 日韩欧美一区在线观看| 激情六月婷婷久久| 亚洲欧洲精品一区二区三区 | 亚洲国产成人va在线观看天堂| 欧美色男人天堂| 天天做天天摸天天爽国产一区| 日韩色在线观看| 粉嫩欧美一区二区三区高清影视| 亚洲六月丁香色婷婷综合久久| 欧美精品丝袜中出| 国内精品久久久久影院一蜜桃| 精品久久一区二区三区| av福利精品导航| 香蕉成人伊视频在线观看| 精品久久人人做人人爰| 高清不卡一二三区| 亚洲女人****多毛耸耸8| 91精品福利在线一区二区三区| 国产福利视频一区二区三区| 亚洲午夜精品久久久久久久久| 亚洲精品一线二线三线无人区| caoporm超碰国产精品| 亚洲蜜臀av乱码久久精品蜜桃| 91精品欧美福利在线观看| 国产成人免费在线| 日韩在线a电影| 国产精品福利一区二区| 91精品国产一区二区三区香蕉| 丰满少妇久久久久久久| 免费久久99精品国产| 中文字幕日韩一区| 欧美一卡二卡在线| 色婷婷综合视频在线观看| 亚洲国产精品欧美一二99| 国产丝袜在线精品| 91精品国产综合久久福利| 91小宝寻花一区二区三区| 美脚の诱脚舐め脚责91| 亚洲欧美日韩在线不卡| 久久蜜桃一区二区| 日韩一级免费观看| 欧美中文一区二区三区| 成人激情电影免费在线观看| 免费在线观看一区二区三区| 尤物视频一区二区| 国产精品毛片久久久久久久| 日韩欧美成人午夜| 91精品国产一区二区三区香蕉| 大胆亚洲人体视频| 福利电影一区二区| 亚洲高清视频在线| 国产精品久久久久婷婷| 国产色产综合色产在线视频| 久久一日本道色综合| 欧美精品一区二区三区在线 | 免费成人av在线播放| 一区二区三区免费网站| 亚洲精品菠萝久久久久久久| 一区二区三区美女视频| 亚洲国产精品久久久男人的天堂| 亚洲午夜羞羞片| 日韩av一区二区三区四区| 美女视频黄免费的久久| 国产高清不卡一区二区| www.99精品| 欧美日韩精品一区二区三区蜜桃| 日本韩国精品在线| 欧美高清你懂得| 久久久另类综合| 亚洲视频网在线直播| 亚洲国产精品久久久久秋霞影院| 日韩主播视频在线| 国产一区二区在线免费观看| 国产.精品.日韩.另类.中文.在线.播放| 99精品黄色片免费大全| 欧美日韩国产影片| 久久综合色婷婷| 亚洲日本va在线观看| 免费人成在线不卡| 99久久精品国产麻豆演员表| 777久久久精品| 中文天堂在线一区| 亚洲无人区一区| 国产精品一区二区三区乱码| 一本大道av伊人久久综合| 日韩精品专区在线影院观看| 国产精品美女久久久久av爽李琼| 亚洲国产裸拍裸体视频在线观看乱了| 免费观看30秒视频久久| 99久久精品费精品国产一区二区| 欧美丝袜丝交足nylons| 久久久精品免费免费| 亚洲sss视频在线视频| 国产成人精品午夜视频免费| 欧美三级三级三级爽爽爽| 亚洲国产成人一区二区三区| 日精品一区二区| 一本色道a无线码一区v| 精品国产一区二区三区四区四| 一区二区三区在线免费观看 | 欧美大片在线观看一区二区| 亚洲欧美国产三级| 国产盗摄精品一区二区三区在线| 欧美三级一区二区| 亚洲色图欧洲色图| 国产成人午夜高潮毛片| 91精品国产一区二区| 亚洲欧美偷拍卡通变态| 国产精品一二三在| 欧美肥妇bbw| 亚洲一二三四区不卡| 成人18视频在线播放| 精品久久久久久久久久久院品网 | 亚洲色图19p| 成人短视频下载| 久久综合色天天久久综合图片| 日本系列欧美系列| 欧美三级韩国三级日本一级| 亚洲视频综合在线| youjizz久久| 国产精品久久久久国产精品日日| 国产一区二区三区美女| 精品少妇一区二区三区免费观看 | 日韩三级免费观看| 亚洲成人在线网站| 欧美少妇性性性| 亚洲精品视频自拍| 99视频一区二区三区| 国产精品久久久久久久午夜片| 国产99久久久久久免费看农村|