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

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

?? ltmain.sh

?? ProFTPd 是一款基于GPL協議的可配置的FTP服務器
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	    # Rhapsody C and math libraries are in the System framework	    deplibs="$deplibs -framework System"	    continue	  esac	elif test "X$arg" = "X-lc_r"; then	 case $host in	 *-*-openbsd* | *-*-freebsd*)	   # Do not include libc_r directly, use -pthread flag.	   continue	   ;;	 esac	fi	deplibs="$deplibs $arg"	continue	;;     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	deplibs="$deplibs $arg"	continue	;;      -module)	module=yes	continue	;;      # gcc -m* arguments should be passed to the linker via $compiler_flags      # in order to pass architecture information to the linker      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo      # but this is not reliable with gcc because gcc may use -mfoo to      # select a different linker, different libraries, etc, while      # -Wl,-mfoo simply passes -mfoo to the linker.      -m*)	# 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        compile_command="$compile_command $arg"        finalize_command="$finalize_command $arg"        if test "$with_gcc" = "yes" ; then          compiler_flags="$compiler_flags $arg"        fi        continue        ;;      -shrext)	prev=shrext	continue	;;      -no-fast-install)	fast_install=no	continue	;;      -no-install)	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  # The PATH hackery in wrapper scripts is required on Windows	  # in order for the loader to find any dlls it needs.	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2	  fast_install=no	  ;;	*) no_install=yes ;;	esac	continue	;;      -no-undefined)	allow_undefined=no	continue	;;      -objectlist)	prev=objectlist	continue	;;      -o) prev=output ;;      -precious-files-regex)	prev=precious_regex	continue	;;      -release)	prev=release	continue	;;      -rpath)	prev=rpath	continue	;;      -R)	prev=xrpath	continue	;;      -R*)	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`	# We need an absolute path.	case $dir in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  $echo "$modename: only absolute run-paths are allowed" 1>&2	  exit $EXIT_FAILURE	  ;;	esac	case "$xrpath " in	*" $dir "*) ;;	*) xrpath="$xrpath $dir" ;;	esac	continue	;;      -static)	# The effects of -static are defined in a previous loop.	# We used to do the same as -all-static on platforms that	# didn't have a PIC flag, but the assumption that the effects	# would be equivalent was wrong.  It would break on at least	# Digital Unix and AIX.	continue	;;      -thread-safe)	thread_safe=yes	continue	;;      -version-info)	prev=vinfo	continue	;;      -version-number)	prev=vinfo	vinfo_number=yes	continue	;;      -Wc,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Wl,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $wl$flag"	  linker_flags="$linker_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Xcompiler)	prev=xcompiler	continue	;;      -Xlinker)	prev=xlinker	continue	;;      -XCClinker)	prev=xcclinker	continue	;;      # Some other compiler flag.      -* | +*)	# 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	;;      *.$objext)	# A standard object.	objs="$objs $arg"	;;      *.lo)	# 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	;;      *.$libext)	# An archive.	deplibs="$deplibs $arg"	old_deplibs="$old_deplibs $arg"	continue	;;      *.la)	# A libtool-controlled library.	if test "$prev" = dlfiles; then	  # This library was specified with -dlopen.	  dlfiles="$dlfiles $arg"	  prev=	elif test "$prev" = dlprefiles; then	  # The library was specified with -dlpreopen.	  dlprefiles="$dlprefiles $arg"	  prev=	else	  deplibs="$deplibs $arg"	fi	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 # arg      # 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 # argument parsing loop    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    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"    if test -n "$shlibpath_var"; then      # get the directories listed in $shlibpath_var      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`    else      shlib_search_path=    fi    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      status=$?      if test "$status" -ne 0 && test ! -d "$output_objdir"; then	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    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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一区二区在线播放| 亚洲午夜在线视频| 自拍av一区二区三区| 亚洲日本丝袜连裤袜办公室| 国产自产v一区二区三区c| 成人性生交大片免费看中文 | 本田岬高潮一区二区三区| 91在线码无精品| 欧美一区二视频| 亚洲激情男女视频| 极品尤物av久久免费看| 国产乱人伦偷精品视频不卡| 9191久久久久久久久久久| 国产午夜久久久久| 激情五月婷婷综合| 欧美性感一类影片在线播放| 久久久蜜臀国产一区二区| 香蕉成人啪国产精品视频综合网| 国产精品1区2区3区在线观看| 日韩一区二区三区三四区视频在线观看| 精品国产成人系列| 亚洲综合免费观看高清在线观看| 成人免费观看视频| 日韩区在线观看| 国产精品乱人伦一区二区| 欧美a一区二区| 在线视频欧美精品| 亚洲精品中文在线观看| 国产ts人妖一区二区| 911精品国产一区二区在线| 综合久久一区二区三区| 国产麻豆精品95视频| 精品国产亚洲在线| 日韩高清不卡一区| 成人激情动漫在线观看| 欧美国产精品中文字幕| 久久99久久99| 国产亚洲综合性久久久影院| 麻豆国产精品官网| 欧美日韩久久一区| 亚洲综合网站在线观看| 色天天综合久久久久综合片| 夜夜亚洲天天久久| 色乱码一区二区三区88| 中文字幕精品在线不卡| 99久久精品国产一区| 成人欧美一区二区三区| 色偷偷成人一区二区三区91| 国产精品久久久久桃色tv| av午夜一区麻豆| 最近日韩中文字幕| voyeur盗摄精品| 亚洲香肠在线观看| 欧美人与禽zozo性伦| 久久激情综合网| 538在线一区二区精品国产| 日韩不卡免费视频| 欧美年轻男男videosbes| 日韩中文字幕区一区有砖一区 | 国产999精品久久| 国产欧美日韩在线看| 99国产精品国产精品毛片| 亚洲少妇屁股交4| 91成人网在线| 免费av成人在线| 久久只精品国产| 91麻豆.com| 性久久久久久久| 欧美大肚乱孕交hd孕妇| av男人天堂一区| 一区二区三区久久| 26uuu久久天堂性欧美| 成人午夜精品在线| 国产精品全国免费观看高清| 欧美人成免费网站| 国产一区二区三区美女| 亚洲人成网站影音先锋播放| 在线免费观看一区| 亚洲视频1区2区| 精品成人在线观看| av不卡在线观看| 精品一区中文字幕| 亚洲日本在线视频观看| 精品不卡在线视频| 日本高清成人免费播放| 亚洲 欧美综合在线网络| 国产精品久久久久久久午夜片| 日本乱码高清不卡字幕| 国产99久久久久久免费看农村| 亚洲一区中文日韩| 欧美激情在线免费观看| 91精品婷婷国产综合久久竹菊| 精品一区二区三区在线播放| 亚洲欧美色图小说| 欧美亚洲国产一区二区三区va| 久久爱www久久做| 亚洲欧美日韩小说| 国产精品美女久久久久高潮| 欧美日韩亚洲综合| 在线日韩一区二区| av网站一区二区三区| 国产一区二区电影| 综合久久综合久久| 国产亚洲成aⅴ人片在线观看| 91精品国产91久久久久久一区二区| 高清在线不卡av| 精品午夜久久福利影院| 亚洲国产一区二区视频| 亚洲色图制服诱惑| 欧美激情一区在线| 欧美日韩日日摸| 欧美视频在线观看一区| 成人免费av网站| 成人免费视频视频在线观看免费 | 色呦呦网站一区| 青青草97国产精品免费观看 | 91美女片黄在线观看91美女| 久久av资源站| 视频精品一区二区| 日本不卡高清视频| 午夜激情久久久| 日韩高清电影一区| 日韩综合在线视频| 日韩电影在线免费| 丝袜美腿亚洲综合| 久久综合久色欧美综合狠狠| 精品美女在线观看| 欧美mv日韩mv国产| 国产偷国产偷精品高清尤物 | 日本不卡的三区四区五区| 免费观看久久久4p| 麻豆精品新av中文字幕| 国模冰冰炮一区二区| 国内精品伊人久久久久av一坑 | 亚洲夂夂婷婷色拍ww47 | |精品福利一区二区三区| 国产日韩精品一区二区三区| 国产精品久久网站| 亚洲视频在线观看一区| 久久久美女艺术照精彩视频福利播放| 国产欧美精品一区二区三区四区 | 捆绑调教美女网站视频一区| 日本vs亚洲vs韩国一区三区| 国产一区二区福利视频| 国产成人精品aa毛片| 成人激情开心网| 在线精品视频免费观看| 欧美日韩免费高清一区色橹橹 | 欧美一区二区三区人| 久久免费精品国产久精品久久久久| 精品第一国产综合精品aⅴ| 国产精品理论在线观看| 亚洲午夜三级在线| 亚洲成精国产精品女| 国产精品中文欧美| 成人激情图片网| 欧美日韩aaa| 久久精品夜夜夜夜久久| 性久久久久久久久久久久| 久久爱www久久做| 在线不卡免费欧美| 精品久久久久久久人人人人传媒 | 亚洲高清免费观看| 老司机精品视频导航| 成人激情动漫在线观看| 日韩欧美亚洲国产另类 | 久久综合一区二区| 亚洲欧美另类图片小说| 韩国精品主播一区二区在线观看| 成人97人人超碰人人99| 91黄色激情网站| 欧美精品一区二| 成人免费在线视频| 国产高清久久久久| 欧美艳星brazzers| 中文字幕在线一区二区三区| 午夜亚洲福利老司机| 成人av在线电影| 欧美精品亚洲一区二区在线播放| 欧美激情综合网| 免费精品视频最新在线| av高清久久久| 欧美一区二区人人喊爽| 亚洲少妇中出一区| 国产一区二区视频在线播放| 欧美顶级少妇做爰| 亚洲丝袜制服诱惑| 国产91精品免费| 精品精品欲导航| 蜜臀av性久久久久av蜜臀妖精| 99精品视频一区二区| 国产欧美一区视频| 精品影视av免费| 一本久道久久综合中文字幕| 中文字幕在线不卡一区二区三区| 看电视剧不卡顿的网站| 日韩欧美高清dvd碟片| 一区二区在线观看视频在线观看| 99国产精品99久久久久久| 久久精品一级爱片|