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

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

?? ltmain.sh

?? ProFTPd 是一款基于GPL協議的可配置的FTP服務器
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    else      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object=noneEOF    fi    $run $mv "${libobj}T" "${libobj}"    # Unlock the critical section if it was locked    if test "$need_locks" != no; then      $run $rm "$lockfile"    fi    exit $EXIT_SUCCESS    ;;  # libtool link mode  link | relink)    modename="$modename: link"    case $host in    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)      # It is impossible to link a dll without this setting, and      # we shouldn't force the makefile maintainer to figure out      # which system we are compiling for in order to pass an extra      # flag for every libtool invocation.      # allow_undefined=no      # FIXME: Unfortunately, there are problems with the above when trying      # to make a dll which has undefined symbols, in which case not      # even a static library is built.  For now, we need to specify      # -no-undefined on the libtool link line when we can be certain      # that all symbols are satisfied, otherwise we get a static library.      allow_undefined=yes      ;;    *)      allow_undefined=yes      ;;    esac    libtool_args="$nonopt"    base_compile="$nonopt $@"    compile_command="$nonopt"    finalize_command="$nonopt"    compile_rpath=    finalize_rpath=    compile_shlibpath=    finalize_shlibpath=    convenience=    old_convenience=    deplibs=    old_deplibs=    compiler_flags=    linker_flags=    dllsearchpath=    lib_search_path=`pwd`    inst_prefix_dir=    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    non_pic_objects=    precious_files_regex=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    func_infer_tag $base_compile    # We need to know -static, to get the right output filenames.    for arg    do      case $arg in      -all-static | -static)	if test "X$arg" = "X-all-static"; then	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2	  fi	  if test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	else	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	fi	build_libtool_libs=no	build_old_libs=yes	prefer_static_libs=yes	break	;;      esac    done    # See if our shared archives depend on static archives.    test -n "$old_archive_from_new_cmds" && build_old_libs=yes    # Go through the arguments, transforming them on the way.    while test "$#" -gt 0; do      arg="$1"      shift      case $arg in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test	;;      *) qarg=$arg ;;      esac      libtool_args="$libtool_args $qarg"      # If the previous option needs an argument, assign it.      if test -n "$prev"; then	case $prev in	output)	  compile_command="$compile_command @OUTPUT@"	  finalize_command="$finalize_command @OUTPUT@"	  ;;	esac	case $prev in	dlfiles|dlprefiles)	  if test "$preload" = no; then	    # Add the symbol object into the linking commands.	    compile_command="$compile_command @SYMFILE@"	    finalize_command="$finalize_command @SYMFILE@"	    preload=yes	  fi	  case $arg in	  *.la | *.lo) ;;  # We handle these cases below.	  force)	    if test "$dlself" = no; then	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  self)	    if test "$prev" = dlprefiles; then	      dlself=yes	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then	      dlself=yes	    else	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  *)	    if test "$prev" = dlfiles; then	      dlfiles="$dlfiles $arg"	    else	      dlprefiles="$dlprefiles $arg"	    fi	    prev=	    continue	    ;;	  esac	  ;;	expsyms)	  export_symbols="$arg"	  if test ! -f "$arg"; then	    $echo "$modename: symbol file \`$arg' does not exist"	    exit $EXIT_FAILURE	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	inst_prefix)	  inst_prefix_dir="$arg"	  prev=	  continue	  ;;	precious_regex)	  precious_files_regex="$arg"	  prev=	  continue	  ;;	release)	  release="-$arg"	  prev=	  continue	  ;;	objectlist)	  if test -f "$arg"; then	    save_arg=$arg	    moreargs=	    for fil in `cat $save_arg`	    do#	      moreargs="$moreargs $fil"	      arg=$fil	      # A libtool-controlled object.	      # Check to see that this really is a libtool object.	      if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then		pic_object=		non_pic_object=		# Read the .lo file		# If there is no directory component, then add one.		case $arg in		*/* | *\\*) . $arg ;;		*) . ./$arg ;;		esac		if test -z "$pic_object" || \		   test -z "$non_pic_object" ||		   test "$pic_object" = none && \		   test "$non_pic_object" = none; then		  $echo "$modename: cannot find name of object for \`$arg'" 1>&2		  exit $EXIT_FAILURE		fi		# Extract subdirectory from the argument.		xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`		if test "X$xdir" = "X$arg"; then		  xdir=		else		  xdir="$xdir/"		fi		if test "$pic_object" != none; then		  # Prepend the subdirectory the object is found in.		  pic_object="$xdir$pic_object"		  if test "$prev" = dlfiles; then		    if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then		      dlfiles="$dlfiles $pic_object"		      prev=		      continue		    else		      # If libtool objects are unsupported, then we need to preload.		      prev=dlprefiles		    fi		  fi		  # CHECK ME:  I think I busted this.  -Ossama		  if test "$prev" = dlprefiles; then		    # Preload the old-style object.		    dlprefiles="$dlprefiles $pic_object"		    prev=		  fi		  # A PIC object.		  libobjs="$libobjs $pic_object"		  arg="$pic_object"		fi		# Non-PIC object.		if test "$non_pic_object" != none; then		  # Prepend the subdirectory the object is found in.		  non_pic_object="$xdir$non_pic_object"		  # A standard non-PIC object		  non_pic_objects="$non_pic_objects $non_pic_object"		  if test -z "$pic_object" || test "$pic_object" = none ; then		    arg="$non_pic_object"		  fi		fi	      else		# Only an error if not doing a dry-run.		if test -z "$run"; then		  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2		  exit $EXIT_FAILURE		else		  # Dry-run case.		  # Extract subdirectory from the argument.		  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`		  if test "X$xdir" = "X$arg"; then		    xdir=		  else		    xdir="$xdir/"		  fi		  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`		  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`		  libobjs="$libobjs $pic_object"		  non_pic_objects="$non_pic_objects $non_pic_object"		fi	      fi	    done	  else	    $echo "$modename: link input file \`$save_arg' does not exist"	    exit $EXIT_FAILURE	  fi	  arg=$save_arg	  prev=	  continue	  ;;	rpath | xrpath)	  # We need an absolute path.	  case $arg in	  [\\/]* | [A-Za-z]:[\\/]*) ;;	  *)	    $echo "$modename: only absolute run-paths are allowed" 1>&2	    exit $EXIT_FAILURE	    ;;	  esac	  if test "$prev" = rpath; then	    case "$rpath " in	    *" $arg "*) ;;	    *) rpath="$rpath $arg" ;;	    esac	  else	    case "$xrpath " in	    *" $arg "*) ;;	    *) xrpath="$xrpath $arg" ;;	    esac	  fi	  prev=	  continue	  ;;	xcompiler)	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	xlinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $wl$qarg"	  prev=	  compile_command="$compile_command $wl$qarg"	  finalize_command="$finalize_command $wl$qarg"	  continue	  ;;	xcclinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	shrext)  	  shrext_cmds="$arg"	  prev=	  continue	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi # test -n "$prev"      prevarg="$arg"      case $arg in      -all-static)	if test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -allow-undefined)	# FIXME: remove this flag sometime in the future.	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2	continue	;;      -avoid-version)	avoid_version=yes	continue	;;      -dlopen)	prev=dlfiles	continue	;;      -dlpreopen)	prev=dlprefiles	continue	;;      -export-dynamic)	export_dynamic=yes	continue	;;      -export-symbols | -export-symbols-regex)	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	  $echo "$modename: more than one -exported-symbols argument is not allowed"	  exit $EXIT_FAILURE	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	continue	;;      -inst-prefix-dir)	prev=inst_prefix	continue	;;      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*      # so, if we see these flags be careful not to treat them like -L      -L[A-Z][A-Z]*:*)	case $with_gcc/$host in	no/*-*-irix* | /*-*-irix*)	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  ;;	esac	continue	;;      -L*)	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`	# We need an absolute path.	case $dir in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  absdir=`cd "$dir" && pwd`	  if test -z "$absdir"; then	    $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2	    exit $EXIT_FAILURE	  fi	  dir="$absdir"	  ;;	esac	case "$deplibs " in	*" -L$dir "*) ;;	*)	  deplibs="$deplibs -L$dir"	  lib_search_path="$lib_search_path $dir"	  ;;	esac	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  case :$dllsearchpath: in	  *":$dir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dir";;	  esac	  ;;	esac	continue	;;      -l*)	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then	  case $host in	  *-*-cygwin* | *-*-pw32* | *-*-beos*)	    # These systems don't actually have a C or math library (as such)	    continue	    ;;	  *-*-mingw* | *-*-os2*)	    # These systems don't actually have a C library (as such)	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-openbsd* | *-*-freebsd*)	    # Do not include libc due to us having libc/libc_r.	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-rhapsody* | *-*-darwin1.[012])

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区女| 日韩一区二区电影在线| 一区在线中文字幕| 成人国产精品免费观看视频| 久久久.com| 成人免费毛片嘿嘿连载视频| 18欧美乱大交hd1984| 91热门视频在线观看| 亚洲欧美国产三级| 欧美日韩国产精品成人| 亚洲欧美日韩精品久久久久| 婷婷开心久久网| 国产一区二区三区综合| 欧美日产国产精品| 欧美国产一区视频在线观看| 精品88久久久久88久久久| 国产欧美日韩卡一| 亚洲一区影音先锋| 久久国产精品99精品国产| 国产乱淫av一区二区三区| 欧美色成人综合| 欧美aa在线视频| 欧美吞精做爰啪啪高潮| 秋霞午夜鲁丝一区二区老狼| 久久综合九色欧美综合狠狠| 成人精品高清在线| 亚洲v中文字幕| 久久久另类综合| 91久久精品一区二区三| 免费高清成人在线| 国产精品国产自产拍高清av王其| 欧美三区在线观看| 国产91丝袜在线播放| 亚洲在线成人精品| 久久综合九色综合97婷婷| 在线看国产一区二区| 国产乱人伦偷精品视频免下载 | 亚洲人成网站影音先锋播放| 欧美日韩在线直播| 国产成人aaa| 婷婷开心激情综合| 成人免费在线视频观看| 日韩午夜激情av| 91久久人澡人人添人人爽欧美| 精品亚洲国内自在自线福利| 亚洲欧美日韩久久| 久久久久国产精品免费免费搜索| 欧美男同性恋视频网站| 99在线精品视频| 国产一区二区三区在线观看免费| 亚洲一区二区三区四区五区中文| 国产精品私人影院| 欧美mv和日韩mv的网站| 欧美日韩国产高清一区二区| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 亚洲猫色日本管| 2021国产精品久久精品| 日本女人一区二区三区| 91精品国产综合久久久久久| 91在线视频网址| 亚洲成人免费影院| 欧美一二区视频| 国产在线麻豆精品观看| 亚洲午夜久久久久中文字幕久| 懂色中文一区二区在线播放| 国产精品伦理在线| 欧美日韩三级一区二区| 国产自产视频一区二区三区| 欧美激情综合五月色丁香小说| 99久久99久久免费精品蜜臀| 国产精品一二一区| 国产乱人伦精品一区二区在线观看 | 日本网站在线观看一区二区三区 | 亚洲国产成人porn| 亚洲激情第一区| 亚洲男人的天堂在线aⅴ视频| 久久视频一区二区| 国产午夜精品一区二区三区视频 | 亚洲精品成人少妇| 亚洲色图在线播放| 亚洲日本韩国一区| 一区二区免费在线| 亚洲国产精品一区二区久久| 一区二区三区免费观看| 亚洲一区二区3| 亚欧色一区w666天堂| 午夜激情一区二区三区| 秋霞成人午夜伦在线观看| 蜜桃视频在线一区| 韩国三级在线一区| 成人黄色av电影| 色综合久久综合网| 欧美日本视频在线| 日韩欧美中文字幕一区| 久久综合久久99| 国产精品乱码久久久久久| 一色桃子久久精品亚洲| 韩国一区二区三区| 亚洲一区二区影院| 国模娜娜一区二区三区| 蜜臀久久99精品久久久久宅男| 亚洲一二三四区不卡| 亚洲chinese男男1069| 日韩一区欧美二区| 亚洲国产乱码最新视频| 丝袜亚洲另类欧美综合| 免费成人在线观看视频| 美脚の诱脚舐め脚责91| 成人免费看片app下载| 婷婷综合另类小说色区| 亚洲第一av色| 国产精品夜夜嗨| 色av成人天堂桃色av| 555夜色666亚洲国产免| 久久久久综合网| 亚洲一区二区三区中文字幕在线| 日本午夜精品视频在线观看| 国产激情偷乱视频一区二区三区 | 亚洲男同性视频| 麻豆国产欧美一区二区三区| 波多野结衣亚洲| 欧美大片免费久久精品三p| 国产精品―色哟哟| 日日摸夜夜添夜夜添国产精品| 国产精品一二二区| 欧美日本韩国一区二区三区视频| 国产日韩综合av| 亚洲国产精品一区二区久久 | 国产日韩欧美在线一区| 亚洲国产人成综合网站| 国产成人欧美日韩在线电影| 欧美中文字幕不卡| 中文幕一区二区三区久久蜜桃| 天堂资源在线中文精品| 99久久婷婷国产| 久久日一线二线三线suv| 亚洲成av人影院在线观看网| 国产乱码精品一区二区三 | 91老司机福利 在线| 欧美一二三在线| 亚洲综合色噜噜狠狠| 成人中文字幕在线| 欧美xingq一区二区| 亚洲成人免费观看| 91香蕉国产在线观看软件| 日韩一级高清毛片| 天天av天天翘天天综合网| 91欧美一区二区| 国产精品视频一二三| 精品一区二区三区免费| 亚洲va韩国va欧美va| 97精品国产露脸对白| 国产精品人成在线观看免费 | 丁香另类激情小说| 欧美精品一区二区在线观看| 日韩高清欧美激情| 欧美性大战久久久久久久蜜臀| 亚洲日本成人在线观看| 成人av网站在线观看| 欧美激情艳妇裸体舞| 久久精品国产**网站演员| 欧美一区二区三区免费大片 | 精品一区二区三区在线播放| 67194成人在线观看| 亚洲不卡在线观看| 欧美日免费三级在线| 亚洲图片欧美色图| 7777精品伊人久久久大香线蕉最新版| 亚洲男同性恋视频| 欧美色老头old∨ideo| 亚洲国产视频在线| 9191成人精品久久| 秋霞电影一区二区| 精品久久久久久综合日本欧美| 狂野欧美性猛交blacked| 欧美sm美女调教| 国产综合久久久久久鬼色| 久久午夜国产精品| 成人app软件下载大全免费| 国产精品久久久久9999吃药| 97精品电影院| 亚洲国产一区二区a毛片| 制服.丝袜.亚洲.另类.中文| 天天影视涩香欲综合网| 精品国偷自产国产一区| 高清日韩电视剧大全免费| 亚洲欧美电影一区二区| 国产日韩三级在线| 91丨porny丨在线| 洋洋av久久久久久久一区| 7777精品伊人久久久大香线蕉的 | 亚洲欧美日韩国产中文在线| 色拍拍在线精品视频8848| 亚洲午夜精品在线| 日韩一区二区三区视频| 国产精品 日产精品 欧美精品| 中文字幕中文字幕中文字幕亚洲无线| 91亚洲大成网污www| 日韩电影免费一区| 国产精品视频一二三区|