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

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

?? ltmain.sh

?? USB Host 開發中支持數碼相機的源碼。即Picture To Picture協議的完整實現
?? 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一区二区三区免费野_久草精品视频
中文字幕一区三区| 欧美性大战久久| 色婷婷综合激情| 久久久精品欧美丰满| 亚洲三级在线看| 国模少妇一区二区三区| 欧美精品欧美精品系列| 亚洲日本青草视频在线怡红院| 久久综合资源网| 精品日韩欧美一区二区| 国产乱码精品一区二区三| 欧美蜜桃一区二区三区| 一区二区三区产品免费精品久久75| 经典三级一区二区| 精品国产乱码久久久久久浪潮| 亚洲女子a中天字幕| eeuss鲁一区二区三区| 国产亚洲精品久| 久久电影网站中文字幕| 91精品国产综合久久福利 | 国产欧美日韩视频在线观看| 免费精品视频最新在线| 欧美精品丝袜中出| 午夜婷婷国产麻豆精品| 不卡免费追剧大全电视剧网站| 欧美网站一区二区| 久久久五月婷婷| 美女一区二区久久| 欧美日韩免费在线视频| 亚洲不卡一区二区三区| 欧美日本不卡视频| 亚洲成人tv网| 欧美日韩国产高清一区| 日本视频中文字幕一区二区三区| 欧美久久久一区| 亚洲一区二区三区影院| 欧美一区二区网站| 奇米精品一区二区三区四区| 日韩一区二区在线观看视频| 麻豆精品在线观看| 久久精品人人做人人综合| 国产麻豆一精品一av一免费 | 青青青伊人色综合久久| 欧美午夜影院一区| 亚洲成人免费在线观看| 欧美精品日韩精品| 捆绑变态av一区二区三区| 久久网站热最新地址| 粉嫩嫩av羞羞动漫久久久| 国产丝袜欧美中文另类| 成人永久aaa| 久久精品一区蜜桃臀影院| 99久久精品免费看国产 | 亚洲精品日产精品乱码不卡| 欧美在线视频不卡| 欧美aⅴ一区二区三区视频| 国产午夜久久久久| 色菇凉天天综合网| 视频一区二区不卡| 3d动漫精品啪啪一区二区竹菊 | 精品久久久三级丝袜| 国产精品综合av一区二区国产馆| 欧洲国内综合视频| 天堂午夜影视日韩欧美一区二区| 91精品国产综合久久蜜臀| 日韩成人一区二区| 国产三级一区二区三区| 色狠狠综合天天综合综合| 日韩国产欧美在线视频| 国产日产精品一区| 国产在线视视频有精品| 91国产丝袜在线播放| 久久国产生活片100| 亚洲激情在线播放| 91精品国产品国语在线不卡| 首页国产丝袜综合| 欧美成人在线直播| 色婷婷国产精品| 国产一区在线看| 午夜欧美一区二区三区在线播放| 精品999久久久| 久久99久久99小草精品免视看| 日韩西西人体444www| 日本丶国产丶欧美色综合| av激情亚洲男人天堂| 国内精品写真在线观看| 亚洲综合清纯丝袜自拍| 日韩视频在线你懂得| 在线免费av一区| 成人性视频免费网站| 亚洲亚洲精品在线观看| 久久久久国产精品厨房| 欧美电影免费观看高清完整版在线观看| 在线观看www91| 欧美性色综合网| 欧美亚洲精品一区| 国产精品一区二区不卡| 精品第一国产综合精品aⅴ| 国产99久久精品| 风间由美性色一区二区三区| 国产精品伊人色| 国产乱子伦视频一区二区三区| 精品一区二区三区不卡| 韩日欧美一区二区三区| 久久综合色之久久综合| 精品一区二区在线观看| 韩国一区二区三区| 国产精品18久久久久久久网站| 国产91富婆露脸刺激对白| 成人网在线免费视频| 91在线一区二区| 17c精品麻豆一区二区免费| 亚洲国产精品精华液ab| 亚洲婷婷在线视频| 亚洲午夜精品17c| 日韩精品免费专区| 激情欧美日韩一区二区| 精品福利视频一区二区三区| 黄色日韩网站视频| 国产亚洲美州欧州综合国| 欧美极品美女视频| 国产精品日韩成人| 中文字幕一区二区三| 国产精品国产三级国产aⅴ中文| 久久夜色精品国产噜噜av| 久久亚洲综合色一区二区三区| 精品91自产拍在线观看一区| 91网站最新地址| 国产91精品久久久久久久网曝门| 国产一区在线不卡| 91视频一区二区三区| 欧美二区在线观看| 国产亚洲欧美色| 国产日产亚洲精品系列| 国产喷白浆一区二区三区| 日韩一区二区三区视频在线| 日韩精品一区在线观看| 久久亚洲免费视频| 国产精品美女久久久久高潮 | 精品日产卡一卡二卡麻豆| 欧美日韩免费观看一区二区三区| 日本欧美在线观看| 亚洲精品视频一区二区| 国产欧美日韩在线看| 亚洲你懂的在线视频| 精品一区二区免费看| 在线视频一区二区三区| 欧美一区二区国产| 国产欧美视频一区二区| 97超碰欧美中文字幕| 色视频欧美一区二区三区| www激情久久| 日韩精品一二三| 91伊人久久大香线蕉| 26uuu精品一区二区| 欧美tickling网站挠脚心| 国产女人aaa级久久久级| 久久影院午夜论| 一本久久精品一区二区| 欧美日韩一卡二卡| 亚洲精品乱码久久久久久久久 | 91精品欧美综合在线观看最新| 国产精品美日韩| 激情欧美一区二区三区在线观看| 成人精品亚洲人成在线| 青草av.久久免费一区| 国产aⅴ精品一区二区三区色成熟| 另类的小说在线视频另类成人小视频在线| 中文字幕亚洲电影| 洋洋成人永久网站入口| 欧美精品一二三| 1024精品合集| 国产精品88av| 在线播放91灌醉迷j高跟美女| 99国产精品国产精品久久| 国产无遮挡一区二区三区毛片日本| 三级欧美在线一区| 色呦呦一区二区三区| 91丝袜美腿高跟国产极品老师| 91精品国产乱码久久蜜臀| 亚瑟在线精品视频| 欧美色老头old∨ideo| 亚洲激情在线激情| 久久久99久久| 精品国产第一区二区三区观看体验 | 日韩三级电影网址| 日韩av一区二区三区四区| 538在线一区二区精品国产| 日韩在线一区二区三区| 宅男噜噜噜66一区二区66| 亚洲免费av网站| 91免费精品国自产拍在线不卡| 亚洲欧美在线视频| 91猫先生在线| 五月天一区二区三区| 欧美一级一区二区| 国产一区二区三区在线观看精品| 精品国产91洋老外米糕| 久久精品久久99精品久久| 欧美精品一区二|