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

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

?? ltmain.sh

?? speex 1.1.12 編碼 穩定版本
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      # 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])	    # 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	;;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91富婆露脸刺激对白| 欧美刺激脚交jootjob| 亚洲高清视频在线| 国产精品区一区二区三区| 日韩一区二区三区四区| 欧美吻胸吃奶大尺度电影| 99在线视频精品| 成人性生交大片免费看在线播放| 国产一区二区三区久久久| 久久精品国产免费| 久久国产精品99久久久久久老狼| av电影天堂一区二区在线观看| 欧美一区二区三区视频免费播放| 日韩精品一区二区在线| 久久久亚洲欧洲日产国码αv| 久久综合成人精品亚洲另类欧美| 中文字幕不卡一区| 亚洲欧美视频一区| 亚洲国产精品自拍| 91丝袜高跟美女视频| 欧美亚洲图片小说| 亚洲天堂a在线| 亚洲在线视频网站| 久久精品免费观看| 91麻豆精品国产91久久久久久久久 | 91影院在线免费观看| 精品久久免费看| 日韩电影一区二区三区| 六月丁香婷婷久久| 欧美一区二区视频网站| 亚洲福利视频三区| 欧美日韩一区国产| 精品国产凹凸成av人网站| 中文字幕av一区二区三区| 国产乱一区二区| 在线观看免费成人| 日韩欧美色电影| 免费欧美在线视频| www.视频一区| 国产精品国产a级| 五月综合激情婷婷六月色窝| 久久国内精品自在自线400部| 欧美绝品在线观看成人午夜影视| 久久综合狠狠综合久久综合88| 日本亚洲一区二区| 日韩欧美资源站| 精品一区二区三区影院在线午夜 | 日韩一区欧美小说| 麻豆成人综合网| 日本久久精品电影| 日韩一区二区高清| 奇米亚洲午夜久久精品| 日韩免费高清电影| 国产高清一区日本| 3d动漫精品啪啪1区2区免费 | 国产在线观看一区二区| 国产亚洲综合色| 日本怡春院一区二区| 日韩欧美另类在线| 床上的激情91.| 亚洲男女一区二区三区| 欧美日韩五月天| 蜜桃av噜噜一区| 亚洲国产精品ⅴa在线观看| 成人18精品视频| 久久九九久精品国产免费直播| 成人a免费在线看| 亚洲一区二区三区四区五区中文| 91精品国产高清一区二区三区| 狠狠色丁香婷婷综合| 欧美精品少妇一区二区三区| 九色综合狠狠综合久久| 国产精品视频一区二区三区不卡| 色婷婷精品久久二区二区蜜臀av| 国产日韩欧美麻豆| 国产成人在线网站| 夜夜亚洲天天久久| 欧美影视一区在线| 国产一区二区三区四区在线观看| 亚洲婷婷在线视频| 欧美变态口味重另类| av亚洲精华国产精华精华 | 成人激情综合网站| 日韩黄色片在线观看| 欧美日本国产一区| 肉色丝袜一区二区| 一区在线中文字幕| 日韩精品中文字幕一区二区三区| 91首页免费视频| 国内精品在线播放| 亚洲成a人片在线观看中文| 欧美日韩中文一区| a亚洲天堂av| 紧缚奴在线一区二区三区| 亚洲曰韩产成在线| 中文字幕国产精品一区二区| 日韩一级二级三级精品视频| 成人一区二区三区视频| 日本欧美肥老太交大片| 亚洲自拍偷拍欧美| 亚洲国产精品成人综合色在线婷婷| 欧美日本在线看| 在线中文字幕一区二区| 成人理论电影网| 国产一区美女在线| 免费一级片91| 日韩av在线播放中文字幕| 一区二区三区四区中文字幕| 亚洲国产精品黑人久久久| 欧美精品一区二区三区四区| 欧美精选在线播放| 欧美性受xxxx黑人xyx性爽| 成人av集中营| 不卡一区二区三区四区| 国产精品资源网| 久久爱www久久做| 青娱乐精品在线视频| 午夜成人免费电影| 日韩高清不卡一区| 日韩制服丝袜av| 日韩激情视频在线观看| 日韩制服丝袜先锋影音| 免费看欧美女人艹b| 麻豆精品一区二区三区| 久久99久国产精品黄毛片色诱| 人妖欧美一区二区| 久久成人久久鬼色| 国产一区二区美女诱惑| 国产精品亚洲综合一区在线观看| 韩国精品主播一区二区在线观看 | 麻豆成人在线观看| 久久精品国产一区二区三 | 亚洲制服丝袜av| 亚洲v日本v欧美v久久精品| 爽好多水快深点欧美视频| 青青草97国产精品免费观看无弹窗版| 亚洲高清在线视频| 久久精品国产色蜜蜜麻豆| 国产一区免费电影| av色综合久久天堂av综合| 一本大道久久a久久综合| 在线观看视频91| 欧美一区在线视频| 国产亚洲视频系列| 亚洲卡通欧美制服中文| 久久久久久久久伊人| 中文字幕在线观看一区二区| 亚洲综合视频在线观看| 美女视频网站黄色亚洲| 岛国av在线一区| 欧美色区777第一页| 精品电影一区二区| 国产精品国产三级国产普通话三级 | 在线综合+亚洲+欧美中文字幕| 91精品国产91久久综合桃花| 国产欧美日韩综合| 一区二区高清视频在线观看| 另类欧美日韩国产在线| www.亚洲色图| 日韩午夜激情视频| 亚洲丝袜另类动漫二区| 免费成人av在线播放| av成人动漫在线观看| 91精品国产aⅴ一区二区| 国产精品区一区二区三区| 视频一区在线播放| av网站免费线看精品| 欧美大片在线观看一区二区| 《视频一区视频二区| 精品一区在线看| 欧美色图一区二区三区| 久久久久久久网| 日韩—二三区免费观看av| 波多野结衣一区二区三区| 欧美r级在线观看| 亚洲午夜影视影院在线观看| 国产成人亚洲综合色影视| 欧美夫妻性生活| 亚洲欧美日韩一区| 国产精品系列在线观看| 欧美电影在线免费观看| 亚洲男人电影天堂| 成人影视亚洲图片在线| 精品欧美乱码久久久久久1区2区| 亚洲一区欧美一区| av日韩在线网站| 亚洲国产高清不卡| 激情文学综合插| 欧美一级视频精品观看| 亚洲一区二区中文在线| 91色porny在线视频| 国产精品婷婷午夜在线观看| 国产美女在线观看一区| 日韩色在线观看| 日韩不卡一区二区三区| 欧美日韩国产经典色站一区二区三区| 136国产福利精品导航| 波多野结衣精品在线| 国产女人18水真多18精品一级做| 精品综合免费视频观看|