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

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

?? libtool

?? oracle引用庫
??
?? 第 1 頁 / 共 5 頁
字號:
	  if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then	    prev=	    continue	  else	    # If libtool objects are unsupported, then we need to preload.	    prev=dlprefiles	  fi	fi	if test "$prev" = dlprefiles; then	  # Preload the old-style object.	  dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`	  prev=	fi	libobjs="$libobjs $arg"	;;      *.la)	# A libtool-controlled library.	dlname=	libdir=	library_names=	old_library=	# Check to see that this really is a libtool archive.	if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2	  exit 1	fi	# If the library was installed with an old release of libtool,	# it will not redefine variable installed.	installed=yes	# Read the .la file	# If there is no directory component, then add one.	case "$arg" in	*/* | *\\*) . $arg ;;	*) . ./$arg ;;	esac	# 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 \`$arg'" 1>&2	  exit 1	fi	# Find the relevant object directory and library name.	name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'`	if test "X$installed" = Xyes; then	  dir="$libdir"	else	  dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$dir" = "X$arg"; then	    dir="$objdir"	  else	    dir="$dir/$objdir"	  fi	fi	if test -n "$dependency_libs"; then	  # Extract -R and -L from dependency_libs	  temp_deplibs=	  for deplib in $dependency_libs; do	    case "$deplib" in	    -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'`		 case " $rpath $xrpath " in		 *" $temp_xrpath "*) ;;		 *) xrpath="$xrpath $temp_xrpath";;		 esac;;	    -L*) case "$compile_command $temp_deplibs " in		 *" $deplib "*) ;;		 *) temp_deplibs="$temp_deplibs $deplib";;		 esac		 temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'`		 case " $lib_search_path " in		 *" $temp_dir "*) ;;		 *) lib_search_path="$lib_search_path $temp_dir";;		 esac		 ;;	    *) temp_deplibs="$temp_deplibs $deplib";;	    esac	  done	  dependency_libs="$temp_deplibs"	fi	if test -z "$libdir"; then	  # It is a libtool convenience library, so add in its objects.	  convenience="$convenience $dir/$old_library"	  old_convenience="$old_convenience $dir/$old_library"	  deplibs="$deplibs$dependency_libs"	  compile_command="$compile_command $dir/$old_library$dependency_libs"	  finalize_command="$finalize_command $dir/$old_library$dependency_libs"	  continue	fi	# This library was specified with -dlopen.	if test "$prev" = dlfiles; then	  dlfiles="$dlfiles $arg"	  if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking statically,	    # we need to preload.	    prev=dlprefiles	  else	    # We should not create a dependency on this library, but we	    # may need any libraries it requires.	    compile_command="$compile_command$dependency_libs"	    finalize_command="$finalize_command$dependency_libs"	    prev=	    continue	  fi	fi	# The library was specified with -dlpreopen.	if test "$prev" = dlprefiles; then	  # Prefer using a static library (so that no silly _DYNAMIC symbols	  # are required to link).	  if test -n "$old_library"; then	    dlprefiles="$dlprefiles $dir/$old_library"	  else	    dlprefiles="$dlprefiles $dir/$linklib"	  fi	  prev=	fi	if test -n "$library_names" &&	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	  link_against_libtool_libs="$link_against_libtool_libs $arg"	  if test -n "$shlibpath_var"; then	    # Make sure the rpath contains only unique directories.	    case "$temp_rpath " in	    *" $dir "*) ;;	    *) temp_rpath="$temp_rpath $dir" ;;	    esac	  fi	  # 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	      $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	      absdir="$dir"	    fi	    ;;	  esac	  	  # This is the magic to use -rpath.	  # Skip directories that are in the system default run-time	  # search path, unless they have been requested with -R.	  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	  lib_linked=yes	  case "$hardcode_action" in	  immediate | unsupported)	    if test "$hardcode_direct" = no; then	      compile_command="$compile_command $dir/$linklib"	      deplibs="$deplibs $dir/$linklib"	      case "$host" in	      *-*-cygwin* | *-*-mingw* | *-*-os2*)		dllsearchdir=`cd "$dir" && pwd || echo "$dir"`		if test -n "$dllsearchpath"; then		  dllsearchpath="$dllsearchpath:$dllsearchdir"		else		  dllsearchpath="$dllsearchdir"		fi		;;	      esac	    elif test "$hardcode_minus_L" = no; then	      case "$host" in	      *-*-sunos*)		compile_shlibpath="$compile_shlibpath$dir:"		;;	      esac	      case "$compile_command " in	      *" -L$dir "*) ;;	      *) compile_command="$compile_command -L$dir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$dir -l$name"	    elif test "$hardcode_shlibpath_var" = no; then	      case ":$compile_shlibpath:" in	      *":$dir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$dir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -l$name"	    else	      lib_linked=no	    fi	    ;;	  relink)	    if test "$hardcode_direct" = yes; then	      compile_command="$compile_command $absdir/$linklib"	      deplibs="$deplibs $absdir/$linklib"	    elif test "$hardcode_minus_L" = yes; then	      case "$compile_command " in	      *" -L$absdir "*) ;;	      *) compile_command="$compile_command -L$absdir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$absdir -l$name"	    elif test "$hardcode_shlibpath_var" = yes; then	      case ":$compile_shlibpath:" in	      *":$absdir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$absdir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -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	  # Finalize command for both is simple: just hardcode it.	  if test "$hardcode_direct" = yes; then	    finalize_command="$finalize_command $libdir/$linklib"	  elif test "$hardcode_minus_L" = yes; then	    case "$finalize_command " in	    *" -L$libdir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  elif test "$hardcode_shlibpath_var" = yes; then	    case ":$finalize_shlibpath:" in	    *":$libdir:"*) ;;	    *) finalize_shlibpath="$finalize_shlibpath$libdir:";;	    esac	    finalize_command="$finalize_command -l$name"	  else	    # We cannot seem to hardcode it, guess we'll fake it.	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	else	  # Transform directly to old archives if we don't build new libraries.	  if test -n "$pic_flag" && test -z "$old_library"; then	    $echo "$modename: cannot find static library for \`$arg'" 1>&2	    exit 1	  fi	  # 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_command="$compile_command $dir/$linklib"	    finalize_command="$finalize_command $dir/$linklib"	  else	    case "$compile_command " in	    *" -L$dir "*) ;;	    *) compile_command="$compile_command -L$dir";;	    esac	    compile_command="$compile_command -l$name"	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$dir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	fi	# Add in any libraries that this one depends upon.	compile_command="$compile_command$dependency_libs"	finalize_command="$finalize_command$dependency_libs"	continue	;;      # Some other compiler argument.      *)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case "$arg" in	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)	  arg="\"$arg\""	  ;;	esac	;;      esac      # Now actually substitute the argument into the commands.      if test -n "$arg"; then	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"      fi    done    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit 1    fi    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then      eval arg=\"$export_dynamic_flag_spec\"      compile_command="$compile_command $arg"      finalize_command="$finalize_command $arg"    fi    oldlibs=    # calculate the name of the file, without its directory    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`    libobjs_save="$libobjs"    case "$output" in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit 1      ;;    *.a | *.lib)      if test -n "$link_against_libtool_libs"; then	$echo "$modename: error: cannot link libtool libraries into archives" 1>&2	exit 1      fi      if test -n "$deplibs"; then	$echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2      fi      if test -n "$rpath"; then	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2      fi      if test -n "$xrpath"; then	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2      fi      if test -n "$vinfo"; then	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2      fi      if test -n "$release"; then	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2      fi      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2      fi      # Now set the variables for building old libraries.      build_libtool_libs=no      oldlibs="$output"      ;;    *.la)      # Make sure we only generate libraries of the form `libNAME.la'.      case "$outputname" in      lib*)	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	eval libname=\"$libname_spec\"	;;      *)	if test "$module" = no; then	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	if test "$need_lib_prefix" != no; then	  # Add the "lib" prefix for modules if required	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	  eval libname=\"$libname_spec\"	else	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	fi	;;      esac      output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`      if test "X$output_objdir" = "X$output"; then	output_objdir="$objdir"      else	output_objdir="$output_objdir/$objdir"      fi      if test -n "$objs"; then	$echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1	exit 1      fi      # How the heck are we supposed to write a wrapper for a shared library?      if test -n "$link_against_libtool_libs"; then	 $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2	 exit 1      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2      fi      set dummy $rpath      if test $# -gt 2; then	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2      fi      install_libdir="$2"      oldlibs=      if test -z "$rpath"; then	if test "$build_libtool_libs" = yes; then	  # Building a libtool convenience library.	  libext=al	  oldlibs="$output_objdir/$libname.$libext $oldlibs"	  build_libtool_libs=convenience	  build_old_libs=yes	fi	dependency_libs="$deplibs"	if test -n "$vinfo"; then	  $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2	fi	if test -n "$release"; then	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2	fi      else	# Parse the version information argument.	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'	set dummy $vinfo 0 0 0	IFS="$save_ifs"	if test -n "$8"; then	  $echo "$modename: too many parameters to \`-version-info'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	current="$2"	revision="$3"	age="$4"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人成精品久久久久| 久久成人免费网| 成人精品gif动图一区| 国产人伦精品一区二区| 国产精品1024| 成人欧美一区二区三区黑人麻豆 | 大胆欧美人体老妇| 国产精品五月天| 91色porny蝌蚪| 亚洲不卡一区二区三区| 欧美高清www午色夜在线视频| 午夜精品久久久久久不卡8050| 欧美日韩精品系列| 精品在线一区二区| 中文字幕一区二区三区在线播放| 欧美主播一区二区三区| 国内精品伊人久久久久影院对白| 国产精品美女www爽爽爽| 欧美在线免费播放| 国产一区二区三区免费| 自拍视频在线观看一区二区| 777亚洲妇女| 国产91精品久久久久久久网曝门| 亚洲精品日韩专区silk| 欧美大尺度电影在线| proumb性欧美在线观看| 亚洲成人777| 欧美国产成人精品| 51精品秘密在线观看| 粉嫩av一区二区三区粉嫩| 亚洲一区中文日韩| 欧美电影免费观看高清完整版在线| 九色综合国产一区二区三区| 日本一区二区免费在线 | 日本成人在线视频网站| 日韩欧美第一区| 成人伦理片在线| 亚洲女爱视频在线| 日韩一区二区视频| 石原莉奈一区二区三区在线观看| 7777精品伊人久久久大香线蕉经典版下载 | 欧美视频一区二区在线观看| 日韩在线卡一卡二| 久久久www成人免费无遮挡大片| 成人激情小说乱人伦| 亚洲自拍偷拍综合| 26uuu国产日韩综合| 99精品桃花视频在线观看| 首页综合国产亚洲丝袜| 国产亚洲综合av| 欧美性猛交xxxx黑人交| 久久精工是国产品牌吗| 国产精品久久二区二区| 8x8x8国产精品| 成人性色生活片| 日韩二区三区在线观看| 国产精品―色哟哟| 欧美一区二区三区在线电影| 久久精品国产网站| 日本一区二区电影| 久久老女人爱爱| 欧美无砖砖区免费| 大胆亚洲人体视频| 美女任你摸久久| 亚洲精品免费看| 国产无人区一区二区三区| 在线观看欧美日本| 成人性生交大片免费看在线播放| 男女性色大片免费观看一区二区| 亚洲视频一区在线观看| 日韩三级电影网址| 欧美性xxxxxx少妇| 成人午夜精品在线| 国产一区二区三区香蕉| 婷婷综合久久一区二区三区| 日韩伦理电影网| 亚洲国产精品激情在线观看| 精品国产乱码久久久久久免费 | 中文字幕 久热精品 视频在线 | 欧美夫妻性生活| 99国产精品久久久久久久久久 | 婷婷夜色潮精品综合在线| 综合激情网...| 国产精品免费丝袜| 日本一区二区三区视频视频| 精品久久久久久久人人人人传媒| 欧美老年两性高潮| 欧美日韩欧美一区二区| 色呦呦日韩精品| 99久久国产综合色|国产精品| 国产福利91精品| 国产乱一区二区| 国产综合色在线| 国产精品一级黄| 久久精品国产77777蜜臀| 亚洲成人动漫精品| 国产精品久久久久久久久果冻传媒| 国产日产欧美一区二区视频| www国产亚洲精品久久麻豆| 精品999久久久| 久久综合九色综合97婷婷| 2020国产精品自拍| 久久久无码精品亚洲日韩按摩| 欧美变态凌虐bdsm| 国产视频911| 国产精品久久久久久久午夜片| 国产精品第13页| 一区二区三区日韩精品视频| 国产精品白丝在线| 一区二区久久久久| 一区二区三区四区在线播放| 一区二区三区丝袜| 石原莉奈在线亚洲二区| 蜜臀a∨国产成人精品| 久久99精品久久久久久久久久久久| 黑人巨大精品欧美一区| 成人性视频网站| 91福利在线看| 91精品欧美久久久久久动漫| 亚洲综合久久久| 丝袜美腿一区二区三区| 蜜桃精品视频在线观看| 国产suv精品一区二区883| 成人黄色网址在线观看| 在线观看网站黄不卡| 在线视频欧美精品| 欧美二区在线观看| 国产日产欧美精品一区二区三区| 亚洲黄色尤物视频| 日韩电影在线免费看| 国产成人在线免费观看| 97久久久精品综合88久久| 欧美色男人天堂| 精品国产一二三区| 亚洲欧美视频在线观看视频| 奇米四色…亚洲| a4yy欧美一区二区三区| 91精品国产一区二区| 国产精品二区一区二区aⅴ污介绍| 国产精品久久久久一区| 亚洲午夜私人影院| 福利一区在线观看| 欧美美女喷水视频| 亚洲欧洲日本在线| 久久精品国产免费| 欧美性大战久久久久久久蜜臀| 久久免费精品国产久精品久久久久| 一区二区三区在线视频观看58| 韩国v欧美v亚洲v日本v| 欧美视频日韩视频在线观看| 欧美高清在线精品一区| 日本色综合中文字幕| 国产成+人+日韩+欧美+亚洲| 亚洲精品一区二区三区在线观看| 亚洲女同一区二区| 福利电影一区二区| 精品国产凹凸成av人导航| 亚洲综合视频在线| 成人v精品蜜桃久久一区| 日韩精品一区二区三区视频 | 久久99国产精品免费| 精品视频1区2区| 综合色天天鬼久久鬼色| 免费不卡在线观看| 91精品免费观看| 午夜欧美2019年伦理| 色国产精品一区在线观看| 亚洲国产成人私人影院tom| 奇米精品一区二区三区在线观看一| 99在线精品观看| 久久久久久久久久久电影| 亚洲大片精品永久免费| 欧美午夜片在线观看| 亚洲精品高清视频在线观看| 成人avav影音| 中文字幕乱码日本亚洲一区二区| 精品一区二区国语对白| 日韩一区二区三区av| 男女男精品视频| 日韩欧美一区二区在线视频| 一区二区三区欧美日| 成人丝袜高跟foot| 2023国产精华国产精品| 韩国欧美国产1区| 日韩欧美国产一区在线观看| 免费美女久久99| 精品国产成人系列| 国产精品一卡二卡| 国产精品欧美久久久久无广告| 国产成人精品免费在线| 国产清纯美女被跳蛋高潮一区二区久久w| 欧美色综合天天久久综合精品| 一区二区三区精品| 在线亚洲一区观看| 亚洲视频 欧洲视频| 在线观看不卡一区| 天堂蜜桃91精品| 日韩一区二区三区四区| 久草这里只有精品视频| 国产亚洲精品中文字幕|