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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ltmain.sh

?? PTP is the draft ptp protocol with all source under linux, can support most of usb still camera.
?? 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	;;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美日韩久久| 欧美日韩小视频| 亚洲精品一区二区三区在线观看| 亚洲小少妇裸体bbw| 在线视频你懂得一区| 亚洲精品视频一区二区| 日本福利一区二区| 一区二区成人在线观看| 欧美三级视频在线| 久久国产精品免费| 国产欧美精品日韩区二区麻豆天美| 成人午夜免费av| 亚洲裸体xxx| 777奇米成人网| 久热成人在线视频| 国产精品免费视频网站| 欧美无乱码久久久免费午夜一区| 日韩精品一级二级| 精品女同一区二区| 99久久精品免费看国产| 亚洲成人av一区二区三区| 欧美一区二区三区四区视频| 国产尤物一区二区| 亚洲美女屁股眼交3| 欧美日韩第一区日日骚| 狠狠色狠狠色综合系列| 自拍偷拍欧美精品| 在线不卡a资源高清| 国产精品一级片在线观看| 亚洲美女免费在线| 精品国产制服丝袜高跟| 91天堂素人约啪| 蜜桃一区二区三区在线| 自拍偷拍亚洲综合| 日韩色视频在线观看| 成人蜜臀av电影| 无吗不卡中文字幕| 国产精品午夜久久| 日韩亚洲欧美一区| 91免费看视频| 韩国理伦片一区二区三区在线播放 | jiyouzz国产精品久久| 亚洲午夜私人影院| 中文字幕成人网| 91精品国产免费| 色一情一伦一子一伦一区| 激情成人午夜视频| 天堂一区二区在线| 亚洲同性gay激情无套| 日韩美女视频在线| 在线观看欧美精品| 成人免费视频视频在线观看免费 | 久久久一区二区三区捆绑**| 91国产成人在线| 国产激情91久久精品导航| 亚洲大型综合色站| 亚洲欧美精品午睡沙发| 国产欧美一区二区三区沐欲| 欧美精品成人一区二区三区四区| 91丝袜高跟美女视频| 成人深夜视频在线观看| 国内精品在线播放| 日本欧美久久久久免费播放网| 亚洲女与黑人做爰| 国产精品色哟哟网站| 久久久一区二区| 精品1区2区在线观看| 日韩一区二区三区av| 欧美精品tushy高清| 欧美三级视频在线观看| 日本久久一区二区三区| 91在线视频在线| 成人动漫中文字幕| 国产91清纯白嫩初高中在线观看 | 伊人夜夜躁av伊人久久| 国产精品成人午夜| 欧美激情一区二区三区蜜桃视频| 精品99一区二区三区| 久久综合久久鬼色| 2023国产精品自拍| 久久亚洲欧美国产精品乐播| 亚洲精品在线观看网站| 精品电影一区二区| 国产人成一区二区三区影院| 久久久久国产精品麻豆ai换脸| 欧美mv日韩mv| 久久蜜臀中文字幕| 久久久久久97三级| 国产精品久线在线观看| 国产精品免费丝袜| 亚洲精品免费看| 午夜伊人狠狠久久| 日本网站在线观看一区二区三区| 蜜桃久久精品一区二区| 韩日欧美一区二区三区| 国产成人自拍网| av电影在线观看完整版一区二区| 91在线国产福利| 欧美天天综合网| 制服丝袜中文字幕亚洲| 精品电影一区二区三区| 久久久久久久久久久电影| 国产精品视频一区二区三区不卡| 中文字幕中文字幕中文字幕亚洲无线| 亚洲卡通欧美制服中文| 午夜一区二区三区视频| 国内精品伊人久久久久av一坑 | 日韩福利视频导航| 精品一区二区av| 成人免费毛片嘿嘿连载视频| 91高清视频免费看| 日韩午夜在线观看| 国产精品国产三级国产普通话99| 亚洲精品国产一区二区精华液| 亚洲bt欧美bt精品| 国产精品一区二区在线观看网站 | 精品一区二区在线视频| 高清久久久久久| 欧美日韩午夜在线视频| 精品久久人人做人人爱| 中文字幕在线播放不卡一区| 日韩精品免费专区| 高清不卡在线观看av| 欧美日韩三级一区| 欧美国产日韩亚洲一区| 日韩国产成人精品| 成人黄页毛片网站| 日韩欧美激情一区| 亚洲精品国产一区二区三区四区在线| 蜜桃视频在线观看一区二区| 99国产精品一区| 精品成a人在线观看| 亚洲一区二区在线免费看| 国产毛片精品视频| 欧美日韩视频在线观看一区二区三区| 久久一区二区三区国产精品| 亚洲国产视频直播| 成人在线一区二区三区| 日韩三级.com| 亚洲综合免费观看高清完整版在线| 国产一二三精品| 51午夜精品国产| 一区二区三区四区高清精品免费观看 | 国产拍揄自揄精品视频麻豆 | 日本在线观看不卡视频| 99久久精品国产导航| 精品国产乱码久久久久久久久| 亚洲国产精品视频| 99久久精品国产精品久久| 久久精品视频在线免费观看| eeuss国产一区二区三区| 精品日韩在线观看| 日韩电影在线观看电影| 欧美专区日韩专区| 亚洲视频 欧洲视频| 国产成人精品免费一区二区| 精品人伦一区二区色婷婷| 亚洲成av人片www| 欧洲亚洲国产日韩| 亚洲美女少妇撒尿| 99视频一区二区三区| 亚洲国产精华液网站w| 国产综合色视频| 久久亚洲精品国产精品紫薇| 麻豆成人在线观看| 精品少妇一区二区三区免费观看| 水蜜桃久久夜色精品一区的特点 | 欧美写真视频网站| 亚洲免费观看视频| 在线看日韩精品电影| 亚洲一区影音先锋| 欧美日韩国产大片| 亚洲第一综合色| 在线成人免费视频| 欧美a级一区二区| 日韩精品一区二区三区蜜臀| 美女视频第一区二区三区免费观看网站| 欧美欧美午夜aⅴ在线观看| 天天综合色天天综合色h| 欧美三级三级三级爽爽爽| 日韩精品一区第一页| 日韩一级片在线播放| 精品无人码麻豆乱码1区2区 | 欧美日韩国产综合一区二区| 丝袜亚洲精品中文字幕一区| 欧美一区二区三区日韩| 久久99国产精品成人| 精品乱人伦一区二区三区| 国产盗摄视频一区二区三区| 中文字幕欧美激情| 色综合久久久久| 日本成人在线看| 久久精品无码一区二区三区| 99国产精品久久久久久久久久| 一区二区三区欧美亚洲| 欧美日韩国产经典色站一区二区三区| 蜜臀91精品一区二区三区| 国产拍欧美日韩视频二区| 色欧美88888久久久久久影院| 日韩国产欧美三级|