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

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

?? ltmain.sh

?? visca lib, for camera control
?? 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 1	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	inst_prefix)	  inst_prefix_dir="$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 1		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 1		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 1	  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 1	    ;;	  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	  ;;	*)	  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 1	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 1	  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 ;;      -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 1	  ;;	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,*)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本一区二区免费在线观看视频 | 日韩av电影免费观看高清完整版在线观看| 国产成人精品三级麻豆| 久久蜜臀精品av| 国产精品18久久久久久vr| 久久综合给合久久狠狠狠97色69| 另类中文字幕网| 久久久亚洲精品石原莉奈 | 国产精品亚洲人在线观看| 欧美精品一区二区三区在线| 国产精品亚洲一区二区三区在线 | 日韩女优毛片在线| 国产一区不卡视频| 中文字幕精品在线不卡| 色婷婷精品大在线视频| 亚洲成av人片在线观看无码| 91精品国产aⅴ一区二区| 激情五月激情综合网| 国产精品美女久久久久av爽李琼| 色综合色综合色综合 | 亚洲视频免费观看| 在线观看一区二区精品视频| 美美哒免费高清在线观看视频一区二区| 日韩欧美国产成人一区二区| 成人激情黄色小说| 日韩和欧美一区二区| 久久综合久久综合久久综合| a亚洲天堂av| 亚洲丰满少妇videoshd| 久久久精品日韩欧美| 色婷婷亚洲一区二区三区| 日日摸夜夜添夜夜添国产精品 | 成人av在线一区二区三区| 亚洲精品ww久久久久久p站| 91精品午夜视频| 国产成人午夜精品影院观看视频 | 韩国女主播一区| 亚洲欧美日韩国产成人精品影院 | 欧美影院午夜播放| 精品一区二区三区在线观看国产| 国产精品久久久久久久久动漫 | 久久亚洲私人国产精品va媚药| 成人精品高清在线| 视频一区欧美精品| 国产精品不卡一区| 欧美成人一区二区| 欧美日韩mp4| 一本大道久久a久久综合| 国产一区不卡在线| 青青草精品视频| 一区二区视频在线| 国产日韩欧美在线一区| 制服丝袜中文字幕一区| 91偷拍与自偷拍精品| 国产一区二区看久久| 日本欧美一区二区三区乱码| 亚洲女同女同女同女同女同69| 久久午夜羞羞影院免费观看| 欧美精品少妇一区二区三区| 91理论电影在线观看| 国产大陆a不卡| 久久电影网电视剧免费观看| 亚洲va在线va天堂| 亚洲激情在线激情| 亚洲图片你懂的| 日本一区二区视频在线观看| 精品区一区二区| 欧美一区二区网站| 在线不卡一区二区| 欧美久久一二三四区| 欧美亚洲禁片免费| 欧美亚洲动漫精品| 色噜噜夜夜夜综合网| 91亚洲大成网污www| 成人网页在线观看| av不卡在线播放| 99久久婷婷国产综合精品| 国产iv一区二区三区| 国产精品资源在线看| 国产精品一卡二卡| 成人免费的视频| 91亚洲精品久久久蜜桃| 99精品视频在线播放观看| heyzo一本久久综合| 99精品视频中文字幕| 97精品国产97久久久久久久久久久久| 成人动漫在线一区| 色综合网色综合| 在线观看免费亚洲| 欧美久久久一区| 欧美刺激午夜性久久久久久久| 91精选在线观看| 久久在线观看免费| 国产精品无人区| 亚洲人成网站色在线观看| 一区二区在线观看视频| 亚洲国产精品嫩草影院| 亚洲在线视频网站| 日本女人一区二区三区| 久久99国产精品成人| 国产传媒欧美日韩成人| 91视频国产资源| 在线观看一区二区视频| 在线不卡一区二区| 国产三级久久久| 一区二区三区四区国产精品| 午夜精品久久久| 精品一区二区免费| 一本一道综合狠狠老| 91精品国产综合久久精品| 国产亚洲制服色| 亚洲精品视频在线观看网站| 婷婷国产v国产偷v亚洲高清| 久久91精品久久久久久秒播| 成人美女视频在线观看18| 色综合激情久久| 欧美大胆人体bbbb| 亚洲免费观看高清| 麻豆91精品视频| 91在线国产福利| 日韩欧美国产麻豆| 亚洲人精品一区| 国产一区在线看| 欧美性感一区二区三区| 久久―日本道色综合久久| 亚洲摸摸操操av| 国产尤物一区二区| 欧美日韩夫妻久久| 国产精品网站导航| 免费成人性网站| 99精品视频免费在线观看| 日韩欧美成人午夜| 亚洲国产一区二区视频| 成人综合在线观看| 日韩欧美电影在线| 亚洲成人免费影院| 成人av集中营| 久久久无码精品亚洲日韩按摩| 一区二区日韩电影| 成人av免费网站| 久久一区二区三区四区| 99天天综合性| 久久综合九色综合97_久久久| 亚洲一二三专区| 91色乱码一区二区三区| 国产性做久久久久久| 精东粉嫩av免费一区二区三区| 日本二三区不卡| 中文字幕一区二区三区四区| 精品一区二区三区av| 911精品国产一区二区在线| 亚洲欧美一区二区三区孕妇| 高清不卡一区二区在线| 亚洲精品一区在线观看| 日韩av在线发布| 欧美精品v国产精品v日韩精品| 亚洲欧美日韩人成在线播放| 成人在线视频一区| 国产亚洲欧洲997久久综合| 久久99精品国产麻豆婷婷洗澡| 欧美一区日本一区韩国一区| 午夜欧美一区二区三区在线播放| 91丝袜呻吟高潮美腿白嫩在线观看| 国产日韩欧美一区二区三区综合| 韩国一区二区视频| www欧美成人18+| 国产一区三区三区| 欧美精品一区二| 国产成人在线视频网站| 久久天天做天天爱综合色| 久久精品国内一区二区三区| 欧美成人三级在线| 国产乱码字幕精品高清av| 国产欧美1区2区3区| 国产福利91精品一区二区三区| 国产欧美日韩三级| 国产在线播放一区二区三区| 久久久精品蜜桃| 成人动漫一区二区在线| 一区二区三区免费| 欧美日韩亚洲另类| 在线观看亚洲专区| 丝袜诱惑制服诱惑色一区在线观看 | 久久精品日产第一区二区三区高清版| 国产一区二区三区黄视频 | 欧美视频一区二区三区在线观看| 亚洲柠檬福利资源导航| 欧美日韩在线精品一区二区三区激情| 亚洲综合久久av| 91超碰这里只有精品国产| 亚洲高清免费观看高清完整版在线观看 | 26uuu色噜噜精品一区| 美女任你摸久久| 国产免费观看久久| 91小宝寻花一区二区三区| 午夜精品免费在线| 精品免费日韩av| 不卡电影一区二区三区| 一区二区三区高清在线| 欧美成人性战久久|