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

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

?? ltmain.sh

?? RTP Proxy,用于Voip網絡數據的代理傳遞
?? 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* | *-*-freebsd4*)	   # 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	case $host in	*-*-freebsd*)	  # Do not build the useless static library	  build_old_libs=no	  ;;	esac	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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 免费成人av在线| 欧美一级片免费看| 蜜桃91丨九色丨蝌蚪91桃色| 欧美成人伊人久久综合网| 精品一区二区免费| 国产色综合久久| 99久久精品一区二区| 亚洲最色的网站| 91精品国产入口| 国产91高潮流白浆在线麻豆| 亚洲丝袜自拍清纯另类| 欧美色成人综合| 久久精品国产精品亚洲精品| 久久久国产精品麻豆| 成人av在线一区二区三区| 一区二区三区产品免费精品久久75| 欧美日韩一区二区在线视频| 日本不卡一区二区三区高清视频| 久久一夜天堂av一区二区三区| 成人福利在线看| 亚洲电影第三页| 久久网站最新地址| 日本伦理一区二区| 久久不见久久见免费视频7| 亚洲国产精品ⅴa在线观看| 91日韩在线专区| 久久99九九99精品| 亚洲精品国产一区二区精华液 | 亚洲超碰97人人做人人爱| 欧美大片顶级少妇| 菠萝蜜视频在线观看一区| 五月天激情综合网| 中文字幕一区二区三区乱码在线| 91精品国产一区二区三区| 不卡av免费在线观看| 蜜臀av一区二区三区| 日韩伦理免费电影| 精品美女被调教视频大全网站| 91免费精品国自产拍在线不卡| 理论片日本一区| 亚洲电影一级片| 亚洲欧美日本在线| 国产亚洲精品资源在线26u| 欧美天天综合网| 波多野结衣精品在线| 美女视频免费一区| 一区二区三区在线观看动漫| 亚洲婷婷综合久久一本伊一区 | 国内成人免费视频| 亚洲高清不卡在线| 亚洲精品免费在线观看| 国产日韩高清在线| 欧美精品一区视频| 欧美精品在线一区二区三区| 色噜噜偷拍精品综合在线| 高清视频一区二区| 国产在线播放一区三区四| 日本sm残虐另类| 午夜精品久久一牛影视| 一区二区三区国产精品| 欧美高清在线一区| 久久久不卡网国产精品二区| 欧美一区二区美女| 欧美精品18+| 欧美日韩在线亚洲一区蜜芽| 91日韩精品一区| 99精品国产视频| 成人久久18免费网站麻豆| 国产99久久久国产精品潘金网站| 国模套图日韩精品一区二区| 久久99精品国产| 另类中文字幕网| 捆绑调教一区二区三区| 免费久久精品视频| 久久99国产精品尤物| 精品一二三四区| 久久99国产精品免费网站| 蜜桃av噜噜一区| 久久丁香综合五月国产三级网站| 免费黄网站欧美| 久久电影网站中文字幕| 久久成人免费日本黄色| 激情图片小说一区| 激情五月激情综合网| 高清在线不卡av| 97se亚洲国产综合自在线不卡| 色一区在线观看| 欧美福利视频导航| 日韩三级视频中文字幕| 久久久久久久久久电影| 国产精品丝袜91| 一区二区三区在线视频免费 | 成人一区二区三区视频| 国产成人av电影在线观看| 韩国av一区二区三区在线观看| 国内外成人在线视频| 高清不卡一二三区| 色一情一乱一乱一91av| 欧美在线观看一二区| 777亚洲妇女| 久久蜜桃av一区二区天堂| 国产亲近乱来精品视频| 亚洲色图欧美在线| 男女男精品视频| 国产成人亚洲综合色影视 | 色婷婷久久久综合中文字幕 | 国产麻豆精品在线观看| 91在线你懂得| 欧美一区午夜视频在线观看 | 91精品国产综合久久精品图片| 日韩三级.com| 成人免费在线视频| 日韩**一区毛片| 国产69精品久久777的优势| 91成人国产精品| 2欧美一区二区三区在线观看视频| 国产精品高潮呻吟| 奇米一区二区三区av| 处破女av一区二区| 欧美一a一片一级一片| 欧美mv和日韩mv的网站| 亚洲色图欧美在线| 久久福利视频一区二区| 色欧美日韩亚洲| 久久先锋影音av| 日韩制服丝袜先锋影音| 福利一区二区在线观看| 91精品国产综合久久久久久久久久 | 蜜臀av国产精品久久久久 | 亚洲欧美日韩系列| 久久66热偷产精品| 欧美三级日韩在线| 国产精品免费丝袜| 国产一区二区在线视频| 91官网在线免费观看| 欧美国产精品一区二区三区| 美女一区二区久久| 欧美在线观看一二区| 国产欧美一区二区三区网站| 日韩av中文在线观看| 欧美亚洲愉拍一区二区| 国产精品国产a级| 国产成人免费视频 | 精品国产乱码久久久久久老虎| 洋洋av久久久久久久一区| av在线综合网| 久久蜜桃av一区二区天堂| 免费成人你懂的| 91麻豆精品国产91久久久更新时间| 欧美精品日韩精品| 久久综合九色综合欧美98| 国产精品乱人伦中文| 国产一本一道久久香蕉| 日韩欧美成人激情| 日本aⅴ亚洲精品中文乱码| 欧美日韩综合在线免费观看| 伊人一区二区三区| 色先锋久久av资源部| 亚洲人成在线播放网站岛国| 波多野结衣中文字幕一区二区三区 | 91丨九色丨蝌蚪富婆spa| 中文字幕制服丝袜一区二区三区| 国产乱一区二区| 久久免费视频色| 风流少妇一区二区| 国产亲近乱来精品视频| 岛国精品一区二区| 国产精品人成在线观看免费| av电影一区二区| 亚洲人成在线观看一区二区| 在线免费不卡电影| 一区二区三区免费网站| 欧美色电影在线| 青青草成人在线观看| 欧美videossexotv100| 极品少妇一区二区三区精品视频| 精品欧美乱码久久久久久| 久99久精品视频免费观看| 久久久久久免费毛片精品| 国产黄色成人av| 亚洲视频在线观看三级| 欧美色图一区二区三区| 午夜精品一区二区三区免费视频| 这里只有精品99re| 久草这里只有精品视频| 国产精品视频线看| 91免费视频网| 日韩电影免费在线看| 久久先锋影音av| 99久久99久久精品免费观看 | 美女久久久精品| 国产午夜亚洲精品不卡| 色综合久久久久久久久| 日韩精品三区四区| 国产亚洲1区2区3区| 欧美在线一二三四区| 蜜桃视频在线一区| 久久久激情视频| 在线一区二区三区做爰视频网站|