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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? ltmain.sh

?? libnxml-no-curl-簡(jiǎn)化版2007-07-01,一個(gè)別很不錯(cuò)的XML生成和解析程序。
?? SH
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"    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    # Create the object directory.    if test ! -d "$output_objdir"; then      $show "$mkdir $output_objdir"      $run $mkdir $output_objdir      exit_status=$?      if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then	exit $exit_status      fi    fi    # Determine the type of output    case $output in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE      ;;    *.$libext) linkmode=oldlib ;;    *.lo | *.$objext) linkmode=obj ;;    *.la) linkmode=lib ;;    *) linkmode=prog ;; # Anything else should be a program.    esac    case $host in    *cygwin* | *mingw* | *pw32*)      # don't eliminate duplications in $postdeps and $predeps      duplicate_compiler_generated_deps=yes      ;;    *)      duplicate_compiler_generated_deps=$duplicate_deps      ;;    esac    specialdeplibs=    libs=    # Find all interdependent deplibs by searching for libraries    # that are linked more than once (e.g. -la -lb -la)    for deplib in $deplibs; do      if test "X$duplicate_deps" = "Xyes" ; then	case "$libs " in	*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	esac      fi      libs="$libs $deplib"    done    if test "$linkmode" = lib; then      libs="$predeps $libs $compiler_lib_search_path $postdeps"      # Compute libraries that are listed more than once in $predeps      # $postdeps and mark them as special (i.e., whose duplicates are      # not to be eliminated).      pre_post_deps=      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then	for pre_post_dep in $predeps $postdeps; do	  case "$pre_post_deps " in	  *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;	  esac	  pre_post_deps="$pre_post_deps $pre_post_dep"	done      fi      pre_post_deps=    fi    deplibs=    newdependency_libs=    newlib_search_path=    need_relink=no # whether we're linking any uninstalled libtool libraries    notinst_deplibs= # 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%"	  test "X$link_all_deplibs" != Xno && libs="$libs $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' or unhandled argument \`$deplib'" 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" != li

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美嫩在线观看| 日韩精品一区第一页| 国产精品亚洲视频| 亚洲福利国产精品| 国产欧美视频一区二区| 欧洲av一区二区嗯嗯嗯啊| 欧美大黄免费观看| 蜜桃精品在线观看| 韩国v欧美v亚洲v日本v| 欧美日韩国产天堂| 成人精品小蝌蚪| 国产自产高清不卡| 亚洲第一主播视频| 国产日本欧美一区二区| 欧美变态凌虐bdsm| 91麻豆精品国产| 色吊一区二区三区| 99久久精品免费| av在线这里只有精品| 国产成人午夜精品5599| 久久 天天综合| 麻豆视频一区二区| 亚州成人在线电影| 亚洲成人动漫在线观看| 亚洲电影中文字幕在线观看| 综合网在线视频| 日韩理论片网站| 国产精品久久毛片av大全日韩| 精品粉嫩aⅴ一区二区三区四区| 欧美精品三级在线观看| 欧美日韩免费观看一区三区| 一本到高清视频免费精品| 在线观看网站黄不卡| 91九色最新地址| 日韩一级高清毛片| 精品国一区二区三区| 2024国产精品| 中文字幕一区二区三区四区不卡 | 91香蕉视频mp4| 91黄色免费版| 在线播放中文一区| 国产午夜亚洲精品羞羞网站| 亚洲欧美日韩国产中文在线| 午夜精品福利一区二区三区蜜桃| 日日嗨av一区二区三区四区| 久久99精品久久久久久国产越南 | 色综合天天在线| 欧美天天综合网| 久久影视一区二区| 亚洲超丰满肉感bbw| 欧美精品v国产精品v日韩精品| 3atv在线一区二区三区| 欧美日韩成人一区| 琪琪一区二区三区| 26uuu久久天堂性欧美| eeuss鲁一区二区三区| 91精品国产91久久久久久一区二区 | 国产拍欧美日韩视频二区| 亚洲免费观看高清| 国产成人精品免费看| 欧美精品一卡两卡| 国产精品久久久久久户外露出| 日韩精彩视频在线观看| 日本大香伊一区二区三区| 久久综合色婷婷| 丝袜美腿一区二区三区| 在线观看成人小视频| 精品一区二区三区欧美| 91国模大尺度私拍在线视频| 国产精品高潮呻吟| 日本韩国一区二区三区视频| 国产精品久久777777| a级精品国产片在线观看| 国产精品久久久久久久久免费相片 | 亚洲欧洲av一区二区三区久久| 成人妖精视频yjsp地址| 国产欧美一区二区精品忘忧草| 成人黄页在线观看| 亚洲高清免费在线| 精品国产91亚洲一区二区三区婷婷| 国产另类ts人妖一区二区| 成人欧美一区二区三区| 日本视频一区二区三区| 国产一区二区电影| 国产女主播一区| 欧美国产日产图区| 亚洲日本在线视频观看| 国产精品免费丝袜| 国产精品毛片高清在线完整版| 亚洲免费在线观看视频| 无吗不卡中文字幕| 久久精品日产第一区二区三区高清版 | 欧美亚洲综合在线| 99国产精品久| 国产福利一区在线观看| 国产一区二区不卡老阿姨| 亚洲第一主播视频| 一本大道久久a久久精二百| 午夜一区二区三区在线观看| 久久精品一区蜜桃臀影院| 欧美v国产在线一区二区三区| 欧美色国产精品| 欧美中文字幕一二三区视频| 99综合电影在线视频| 国产最新精品免费| 高清在线观看日韩| 成人精品国产免费网站| 成人av网站免费观看| 国产91综合一区在线观看| 国产成人亚洲综合a∨婷婷图片| 久久99国产精品免费网站| 九色porny丨国产精品| 国产麻豆一精品一av一免费 | 亚洲一区二区三区精品在线| 亚洲男人电影天堂| 亚洲h在线观看| 婷婷激情综合网| 99视频一区二区| 2017欧美狠狠色| 丝袜诱惑制服诱惑色一区在线观看| 国产一区二区不卡在线| 欧美电影一区二区三区| 亚洲激情网站免费观看| 国产成a人无v码亚洲福利| 国产一区二区毛片| 久久99精品一区二区三区| 国产成人精品午夜视频免费| 一本久久综合亚洲鲁鲁五月天| 欧美日产在线观看| 国产精品三级电影| 天天av天天翘天天综合网 | 国产精品第13页| 日韩精品成人一区二区三区| 欧美性色黄大片手机版| 日韩视频123| 亚洲日本电影在线| 狠狠色丁香久久婷婷综| 欧美在线观看视频在线| 久久久久9999亚洲精品| 亚洲成在人线免费| 99久久精品国产毛片| 精品国产免费视频| 免费久久99精品国产| 色噜噜狠狠成人中文综合 | 精品久久久三级丝袜| 亚洲一区二区美女| av福利精品导航| 日韩免费电影网站| 亚洲成人综合视频| 日韩午夜激情av| 日本不卡123| 欧美一区二区啪啪| 麻豆精品在线看| 日韩欧美电影一区| 国产又黄又大久久| 久久精品一区二区三区四区| 激情五月婷婷综合网| 久久久久亚洲蜜桃| 风流少妇一区二区| 一级女性全黄久久生活片免费| av在线不卡免费看| 亚洲国产精品尤物yw在线观看| 欧美日韩国产电影| 日韩av中文字幕一区二区三区| 精品国产一二三| 国产成人8x视频一区二区| 中文字幕在线一区| 91福利区一区二区三区| 日本不卡视频一二三区| 久久久美女毛片| 欧美日韩国产美| 国产91精品久久久久久久网曝门| 一区二区在线观看视频| 精品少妇一区二区三区日产乱码| 成人18视频日本| 日本不卡的三区四区五区| 中文字幕一区二区三区四区不卡| 欧美专区在线观看一区| 国产一区二区伦理片| 亚洲一区二区三区视频在线| 国产女人水真多18毛片18精品视频| 欧美日韩一区在线观看| 成人综合婷婷国产精品久久蜜臀 | 亚洲欧美日韩电影| 久久久综合视频| 欧美伦理电影网| 欧美中文字幕一二三区视频| 99综合影院在线| 成人综合在线观看| 国产精品中文字幕一区二区三区| 免费在线观看一区二区三区| 亚洲成av人片在线| 亚洲国产日韩一区二区| 亚洲国产成人91porn| 午夜日韩在线电影| 日产精品久久久久久久性色| 日韩高清不卡在线| 九九视频精品免费| 国产美女视频一区| 国产成人精品网址|