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

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

?? ltmain.sh

?? ProFTPd 是一款基于GPL協議的可配置的FTP服務器
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    ;;  -*)    $echo "$modename: unrecognized option \`$arg'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE    ;;  *)    nonopt="$arg"    break    ;;  esacdoneif test -n "$prevopt"; then  $echo "$modename: option \`$prevopt' requires an argument" 1>&2  $echo "$help" 1>&2  exit $EXIT_FAILUREfi# If this variable is set in any of the actions, the command in it# will be execed at the end.  This prevents here-documents from being# left over by shells.exec_cmd=if test -z "$show_help"; then  # Infer the operation mode.  if test -z "$mode"; then    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2    $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2    case $nonopt in    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)      mode=link      for arg      do	case $arg in	-c)	   mode=compile	   break	   ;;	esac      done      ;;    *db | *dbx | *strace | *truss)      mode=execute      ;;    *install*|cp|mv)      mode=install      ;;    *rm)      mode=uninstall      ;;    *)      # If we have no mode, but dlfiles were specified, then do execute mode.      test -n "$execute_dlfiles" && mode=execute      # Just use the default operation mode.      if test -z "$mode"; then	if test -n "$nonopt"; then	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2	else	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2	fi      fi      ;;    esac  fi  # Only execute mode is allowed to have -dlopen flags.  if test -n "$execute_dlfiles" && test "$mode" != execute; then    $echo "$modename: unrecognized option \`-dlopen'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE  fi  # Change the help message to a mode-specific one.  generic_help="$help"  help="Try \`$modename --help --mode=$mode' for more information."  # These modes are in order of execution frequency so that they run quickly.  case $mode in  # libtool compile mode  compile)    modename="$modename: compile"    # Get the compilation command and the source file.    base_compile=    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"    suppress_opt=yes    suppress_output=    arg_mode=normal    libobj=    later=    for arg    do      case "$arg_mode" in      arg  )	# do not "continue".  Instead, add this to base_compile	lastarg="$arg"	arg_mode=normal	;;      target )	libobj="$arg"	arg_mode=normal	continue	;;      normal )	# Accept any command-line options.	case $arg in	-o)	  if test -n "$libobj" ; then	    $echo "$modename: you cannot specify \`-o' more than once" 1>&2	    exit $EXIT_FAILURE	  fi	  arg_mode=target	  continue	  ;;	-static | -prefer-pic | -prefer-non-pic)	  later="$later $arg"	  continue	  ;;	-no-suppress)	  suppress_opt=no	  continue	  ;;	-Xcompiler)	  arg_mode=arg  #  the next one goes into the "base_compile" arg list	  continue      #  The current "srcfile" will either be retained or	  ;;            #  replaced later.  I would guess that would be a bug.	-Wc,*)	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`	  lastarg=	  save_ifs="$IFS"; IFS=',' 	  for arg in $args; do	    IFS="$save_ifs"	    # Double-quote args containing other shell metacharacters.	    # Many Bourne shells cannot handle close brackets correctly	    # in scan sets, so we specify it separately.	    case $arg in	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	      arg="\"$arg\""	      ;;	    esac	    lastarg="$lastarg $arg"	  done	  IFS="$save_ifs"	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`	  # Add the arguments to base_compile.	  base_compile="$base_compile $lastarg"	  continue	  ;;	* )	  # Accept the current argument as the source file.	  # The previous "srcfile" becomes the current argument.	  #	  lastarg="$srcfile"	  srcfile="$arg"	  ;;	esac  #  case $arg	;;      esac    #  case $arg_mode      # Aesthetically quote the previous argument.      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`      case $lastarg in      # Double-quote args containing other shell metacharacters.      # Many Bourne shells cannot handle close brackets correctly      # in scan sets, so we specify it separately.      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	lastarg="\"$lastarg\""	;;      esac      base_compile="$base_compile $lastarg"    done # for arg    case $arg_mode in    arg)      $echo "$modename: you must specify an argument for -Xcompile"      exit $EXIT_FAILURE      ;;    target)      $echo "$modename: you must specify a target with \`-o'" 1>&2      exit $EXIT_FAILURE      ;;    *)      # Get the name of the library object.      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`      ;;    esac    # Recognize several different file suffixes.    # If the user specifies -o file.o, it is replaced with file.lo    xform='[cCFSifmso]'    case $libobj in    *.ada) xform=ada ;;    *.adb) xform=adb ;;    *.ads) xform=ads ;;    *.asm) xform=asm ;;    *.c++) xform=c++ ;;    *.cc) xform=cc ;;    *.ii) xform=ii ;;    *.class) xform=class ;;    *.cpp) xform=cpp ;;    *.cxx) xform=cxx ;;    *.f90) xform=f90 ;;    *.for) xform=for ;;    *.java) xform=java ;;    esac    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`    case $libobj in    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;    *)      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2      exit $EXIT_FAILURE      ;;    esac    func_infer_tag $base_compile    for arg in $later; do      case $arg in      -static)	build_old_libs=yes	continue	;;      -prefer-pic)	pic_mode=yes	continue	;;      -prefer-non-pic)	pic_mode=no	continue	;;      esac    done    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`    if test "X$xdir" = "X$obj"; then      xdir=    else      xdir=$xdir/    fi    lobj=${xdir}$objdir/$objname    if test -z "$base_compile"; then      $echo "$modename: you must specify a compilation command" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    fi    # Delete any leftover library objects.    if test "$build_old_libs" = yes; then      removelist="$obj $lobj $libobj ${libobj}T"    else      removelist="$lobj $libobj ${libobj}T"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    # On Cygwin there's no "real" PIC flag so we must build both object types    case $host_os in    cygwin* | mingw* | pw32* | os2*)      pic_mode=default      ;;    esac    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then      # non-PIC code in shared libraries is not supported      pic_mode=default    fi    # Calculate the filename of the output object if compiler does    # not support -o with -c    if test "$compiler_c_o" = no; then      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}      lockfile="$output_obj.lock"      removelist="$removelist $output_obj $lockfile"      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    else      output_obj=      need_locks=no      lockfile=    fi    # Lock this critical section if it is needed    # We use this script file to make the link, it avoids creating a new file    if test "$need_locks" = yes; then      until $run ln "$progpath" "$lockfile" 2>/dev/null; do	$show "Waiting for $lockfile to be removed"	sleep 2      done    elif test "$need_locks" = warn; then      if test -f "$lockfile"; then	$echo "\*** ERROR, $lockfile exists and contains:`cat $lockfile 2>/dev/null`This indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      $echo $srcfile > "$lockfile"    fi    if test -n "$fix_srcfile_path"; then      eval srcfile=\"$fix_srcfile_path\"    fi    $run $rm "$libobj" "${libobj}T"    # Create a libtool object file (analogous to a ".la" file),    # but don't create it if we're doing a dry run.    test -z "$run" && cat > ${libobj}T <<EOF# $libobj - a libtool object file# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP## Please DO NOT delete this file!# It is necessary for linking the library.# Name of the PIC object.EOF    # Only build a PIC object if we are building libtool libraries.    if test "$build_libtool_libs" = yes; then      # Without this assignment, base_compile gets emptied.      fbsd_hideous_sh_bug=$base_compile      if test "$pic_mode" != no; then	command="$base_compile $srcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	status=$?	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $status	fi      fi      if test -z "$output_obj"; then	# Place PIC objects in $objdir	command="$command -o $lobj"      fi      $run $rm "$lobj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	test -n "$output_obj" && $run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed, then go on to compile the next one      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then	$show "$mv $output_obj $lobj"	if $run $mv $output_obj $lobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the PIC object to the libtool object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object='$objdir/$objname'EOF      # Allow error messages only from the first compilation.      if test "$suppress_opt" = yes; then        suppress_output=' >/dev/null 2>&1'      fi    else      # No PIC object so indicate it doesn't exist in the libtool      # object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object=noneEOF    fi    # Only build a position-dependent object if we build old libraries.    if test "$build_old_libs" = yes; then      if test "$pic_mode" != yes; then	# Don't build PIC code	command="$base_compile $srcfile"      else	command="$base_compile $srcfile $pic_flag"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$obj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	$run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then	$show "$mv $output_obj $obj"	if $run $mv $output_obj $obj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # 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='$objname'EOF

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜免费电影| 在线免费av一区| 成人av在线资源网| 成人午夜私人影院| 99久久综合狠狠综合久久| 一本大道av伊人久久综合| 色综合久久久网| 欧美精品日韩综合在线| 欧美成人精品福利| 国产精品美女久久久久久久网站| 国产精品国产三级国产普通话三级 | 国产一区二区三区观看| 国产91精品精华液一区二区三区 | 国产精品乱子久久久久| 亚洲福利电影网| 韩国三级中文字幕hd久久精品| 91免费观看视频在线| 欧美一个色资源| 一区二区三区美女视频| 国产一区二区三区四| 欧美无人高清视频在线观看| 国产拍揄自揄精品视频麻豆| 青草国产精品久久久久久| 91美女福利视频| 国产女人aaa级久久久级| 偷拍与自拍一区| 日本道色综合久久| 国产精品色一区二区三区| 国产精品综合二区| 91视频精品在这里| 久久婷婷色综合| 国产一区三区三区| 精品sm在线观看| 久久精品国产澳门| 欧美三级欧美一级| 亚洲成人手机在线| 欧美日韩亚洲另类| 日韩中文欧美在线| 欧美一区二区在线视频| 日一区二区三区| 一区二区三区在线看| 亚洲主播在线观看| 欧美无人高清视频在线观看| 亚洲成人一区在线| 欧美一区二区三区精品| 麻豆精品精品国产自在97香蕉 | 欧美一区二区三区在线观看视频| 亚洲电影中文字幕在线观看| 欧美一区二区三区在线看| 国产一区二区免费看| 国产精品福利一区二区三区| 色婷婷综合五月| 午夜精品国产更新| 久久久噜噜噜久久中文字幕色伊伊 | 午夜视频在线观看一区二区 | 国产精品1区2区| 亚洲黄色尤物视频| xvideos.蜜桃一区二区| 99视频精品在线| 经典一区二区三区| 亚洲综合视频在线观看| 久久久www免费人成精品| 色综合久久88色综合天天免费| 免费在线观看一区二区三区| 日韩伦理av电影| 久久精品在这里| 欧美夫妻性生活| 91精品福利在线| 成人免费看黄yyy456| 国产一区二区中文字幕| 青青青伊人色综合久久| 亚洲一区二区三区视频在线| 国产亚洲美州欧州综合国| 欧美日韩精品综合在线| 色老汉一区二区三区| 成人免费高清视频在线观看| 国产在线日韩欧美| 久久精品国产999大香线蕉| 婷婷一区二区三区| 性做久久久久久| 一区二区三区美女| 亚洲成人动漫在线观看| 亚洲综合一二三区| 亚洲香蕉伊在人在线观| 亚洲成人av一区| 午夜精品一区二区三区三上悠亚| 性感美女久久精品| 日韩精品高清不卡| 久久精品国产澳门| 国产精品18久久久久| av一二三不卡影片| 91影视在线播放| 欧美一区日本一区韩国一区| 日韩欧美亚洲国产另类| 国产精品久久久一区麻豆最新章节| 国产女人水真多18毛片18精品视频| 亚洲欧洲日韩在线| 日日摸夜夜添夜夜添国产精品 | 欧美国产综合一区二区| 亚洲激情男女视频| 国内精品嫩模私拍在线| 99国产欧美另类久久久精品| 91精品在线免费观看| 国产女主播一区| 亚洲成人黄色影院| 国产91露脸合集magnet| 日本高清不卡在线观看| 欧美videos中文字幕| 一区二区三区美女| 国产精品亚洲成人| 制服丝袜亚洲网站| 亚洲另类在线一区| 国模冰冰炮一区二区| 欧美亚洲另类激情小说| 国产精品伦一区| 国产美女精品在线| 日韩欧美精品三级| 亚洲成av人片在线| 色天天综合色天天久久| 中文字幕在线观看一区二区| 激情综合色丁香一区二区| 欧美日韩不卡一区| 亚洲电影激情视频网站| 在线观看亚洲精品视频| 中文字幕亚洲电影| 一本大道久久a久久精二百 | 成人深夜福利app| 中文字幕精品一区二区精品绿巨人| 韩国在线一区二区| 中文字幕精品—区二区四季| 99久久婷婷国产综合精品电影| 中文一区一区三区高中清不卡| 成人性色生活片免费看爆迷你毛片| 国产欧美综合在线观看第十页| 国产成a人亚洲| 亚洲免费在线观看| 欧美精品粉嫩高潮一区二区| 免费观看91视频大全| 国产精品国产三级国产aⅴ入口| 久久久久久久国产精品影院| 亚洲成人午夜电影| 精品嫩草影院久久| 91丨九色丨蝌蚪富婆spa| 偷拍一区二区三区四区| 久久综合色一综合色88| 97精品久久久午夜一区二区三区| 一片黄亚洲嫩模| 欧美一区二区私人影院日本| 激情文学综合丁香| 夜色激情一区二区| 2020国产精品久久精品美国| 91视视频在线观看入口直接观看www| 亚瑟在线精品视频| 国产欧美一区二区精品忘忧草| 欧美色精品天天在线观看视频| 九九在线精品视频| 亚洲国产精品嫩草影院| 亚洲国产精品精华液2区45| 欧美精品第1页| 91网站最新地址| 国产精品亚洲午夜一区二区三区 | 日韩美女一区二区三区| 欧美色窝79yyyycom| www.欧美.com| 丁香五精品蜜臀久久久久99网站 | 国产精品911| 日本美女一区二区三区视频| 一区二区欧美在线观看| 中文字幕字幕中文在线中不卡视频| 日韩精品一区二区三区在线播放| 欧亚一区二区三区| 色综合天天综合色综合av | 日韩小视频在线观看专区| 欧美色老头old∨ideo| 欧美亚日韩国产aⅴ精品中极品| www.久久久久久久久| 99久精品国产| 91网站在线观看视频| 91免费在线看| 欧美性色欧美a在线播放| 日本久久一区二区三区| 91高清在线观看| 欧美日韩精品欧美日韩精品一 | 亚洲欧美日韩在线播放| 久久久久久久性| 亚洲免费观看高清完整版在线观看熊| 亚洲欧洲日韩综合一区二区| 亚洲日本电影在线| 国产精品嫩草久久久久| 亚洲精选一二三| 久久精品国产一区二区| 99视频精品在线| 欧美一区二区三区免费| 国产精品女同互慰在线看| 一区二区三区日韩欧美| 久久国产福利国产秒拍| 91在线播放网址| 欧美精品一区二区三区高清aⅴ | 欧美裸体bbwbbwbbw| 国产欧美综合在线观看第十页|