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

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

?? ltmain.sh

?? 比較早的MPEG-2的解碼源程序
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	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 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	;;      *.$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 1    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 1      ;;    *.$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 duplcations 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 1	    ;;	  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	case $pass in	dlopen) libs="$dlfiles" ;;	dlpreopen) libs="$dlprefiles" ;;	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;	esac      fi      if test "$pass" = dlopen; then	# Collect dlpreopened libraries	save_deplibs="$deplibs"	deplibs=      fi      for deplib in $libs; do	lib=	found=no	case $deplib in	-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	  if test "$linkmode,$pass" = "prog,link"; then	    compile_deplibs="$deplib $compile_deplibs"	    finalize_deplibs="$deplib $finalize_deplibs"	  else	    deplibs="$deplib $deplibs"	  fi	  continue	  ;;	-l*)	  if test "$linkmode" != lib && test "$linkmode" != prog; then	    $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2	    continue	  fi	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do	    for search_ext in .la $shrext .so .a; do	      # Search the libtool library	      lib="$searchdir/lib${name}${search_ext}"	      if test -f "$lib"; then		if test "$search_ext" = ".la"; then		  found=yes		else		  found=no		fi		break 2	      fi	    done	  done	  if test "$found" != yes; then	    # deplib doesn't seem to be a libtool library	    if test "$linkmode,$pass" = "prog,link"; then	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      deplibs="$deplib $deplibs"	      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"	    fi	    continue	  else # deplib is a libtool library	    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,	    # We need to do some special things here, and not later.	    if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then	      case " $predeps $postdeps " in	      *" $deplib "*)		if (${SED} -e '2q' $lib |                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then		  library_names=		  old_library=		  case $lib in		  */* | *\\*) . $lib ;;		  *) . ./$lib ;;		  esac		  for l in $old_library $library_names; do		    ll="$l"		  done		  if test "X$ll" = "X$old_library" ; then # only static version available		    found=no		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`		    test "X$ladir" = "X$lib" && ladir="."		    lib=$ladir/$old_library		    if test "$linkmode,$pass" = "prog,link"; then		      compile_deplibs="$deplib $compile_deplibs"		      finalize_deplibs="$deplib $finalize_deplibs"		    else		      deplibs="$deplib $deplibs"		      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"		    fi		    continue		  fi		fi	        ;;	      *) ;;	      esac	    fi	  fi	  ;; # -l	-L*)	  case $linkmode in	  lib)	    deplibs="$deplib $deplibs"	    test "$pass" = conv && continue	    newdependency_libs="$deplib $newdependency_libs"	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  prog)	    if test "$pass" = conv; then	      deplibs="$deplib $deplibs"	      continue	    fi	    if test "$pass" = scan; then	      deplibs="$deplib $deplibs"	      newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    ;;	  *)	    $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2	    ;;	  esac # linkmode	  continue	  ;; # -L	-R*)	  if test "$pass" = link; then	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`	    # Make sure the xrpath contains only unique directories.	    case "$xrpath " in	    *" $dir "*) ;;	    *) xrpath="$xrpath $dir" ;;	    esac	  fi	  deplibs="$deplib $deplibs"	  continue	  ;;	*.la) lib="$deplib" ;;	*.$libext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  case $linkmode in	  lib)	    if test "$deplibs_check_method" != pass_all; then	      $echo	      $echo "*** Warning: Trying to link with static lib archive $deplib."	      $echo "*** I have the capability to make that library automatically link in when"	      $echo "*** you link to this library.  But I can only do this if you have a"	      $echo "*** shared version of the library, which you do not appear to have"	      $echo "*** because the file extensions .$libext of this argument makes me believe"	      $echo "*** that it is just a static archive that I should not used here."	    else	      $echo	      $echo "*** Warning: Linking the shared library $output against the"	      $echo "*** static library $deplib is not portable!"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
秋霞电影网一区二区| 亚洲欧洲www| 欧美影院一区二区三区| 欧美性猛交xxxx乱大交退制版| 日韩一区二区视频| 久久久高清一区二区三区| 亚洲图片激情小说| 九九国产精品视频| 99re在线视频这里只有精品| 制服丝袜av成人在线看| 精品福利二区三区| 亚洲va韩国va欧美va精品| 国内精品视频666| 欧美午夜一区二区三区免费大片| 91精品国产综合久久精品麻豆 | 国产在线精品视频| 欧美日韩国产综合一区二区三区| 久久亚洲二区三区| 日韩精品电影一区亚洲| 在线亚洲一区二区| 亚洲视频在线一区观看| 久久国产精品色婷婷| 91久色porny | 国产成人在线免费观看| 91久久久免费一区二区| 亚洲欧美一区二区三区久本道91 | 91精品国产一区二区| 亚洲国产va精品久久久不卡综合| 91偷拍与自偷拍精品| 国产精品理论片| 国产传媒欧美日韩成人| 精品久久人人做人人爰| 激情综合五月婷婷| 亚洲欧美日韩中文字幕一区二区三区| 国产乱码精品一区二区三区忘忧草| 欧洲视频一区二区| 午夜精品福利一区二区三区蜜桃| 日韩美一区二区三区| 国产精品自拍毛片| 另类小说图片综合网| 精品精品欲导航| 成人动漫在线一区| 日本午夜精品一区二区三区电影| 日韩欧美成人激情| 色8久久人人97超碰香蕉987| 亚洲成人精品一区二区| 中文字幕日韩av资源站| 欧美日韩的一区二区| 成人av先锋影音| 麻豆91在线播放| 国产精品激情偷乱一区二区∴| 欧美性受xxxx黑人xyx性爽| 精品无码三级在线观看视频| 日本一区二区不卡视频| 欧洲精品视频在线观看| 不卡在线观看av| 国产精品系列在线播放| 日本大胆欧美人术艺术动态| 亚洲色图清纯唯美| 国产精品私人自拍| 国产视频一区二区在线| 精品国产乱码久久久久久牛牛 | 国产成人在线视频网站| 国产一区二区福利视频| 免费人成黄页网站在线一区二区 | 欧美群妇大交群中文字幕| 国产精品一区二区免费不卡| 国产一区二区三区免费播放| 一区二区欧美国产| 中文字幕一区二区三区乱码在线| 久久老女人爱爱| 国产精品不卡视频| 日韩二区在线观看| 午夜精品国产更新| 日韩激情视频在线观看| 青青草成人在线观看| 狠狠色狠狠色综合| 一本到不卡免费一区二区| 欧美网站大全在线观看| 欧美日韩在线一区二区| 欧美精品三级在线观看| 日韩欧美精品在线| 精品不卡在线视频| 亚洲一区二区三区精品在线| 久久er精品视频| 一本久久a久久免费精品不卡| 在线播放一区二区三区| 亚洲国产精品激情在线观看| 亚洲1区2区3区视频| 91蜜桃免费观看视频| 国产日本欧洲亚洲| 日本美女视频一区二区| 欧美三区免费完整视频在线观看| 精品久久久久久久一区二区蜜臀| 国产精品国产a| 成人精品视频.| 久久久五月婷婷| 久草在线在线精品观看| 欧美成人a∨高清免费观看| 日本欧美一区二区三区乱码| 在线视频一区二区三| 亚洲欧美日韩小说| 国产传媒欧美日韩成人| 91精品国产综合久久精品麻豆| 国产精品情趣视频| 99精品久久只有精品| 亚洲四区在线观看| 99久久免费精品| 一区二区三区蜜桃网| 在线视频国内自拍亚洲视频| 一区二区三区四区亚洲| 日韩午夜在线播放| 久久爱www久久做| 欧美疯狂性受xxxxx喷水图片| 日韩高清中文字幕一区| 国产精品理论片在线观看| 成人免费视频视频| 天堂av在线一区| 国产亚洲欧美激情| 99久久婷婷国产精品综合| 亚洲成人在线免费| 精品国产成人在线影院 | 欧美色男人天堂| 高清国产一区二区| 亚洲一区免费在线观看| 久久综合视频网| 欧美最猛性xxxxx直播| 亚洲国产欧美日韩另类综合 | 欧美韩日一区二区三区| 午夜精品福利在线| 亚洲精品一二三区| 欧美午夜电影一区| 色诱视频网站一区| 韩国中文字幕2020精品| 三级精品在线观看| 亚洲一区二区三区四区在线 | 中文天堂在线一区| 久久久国产综合精品女国产盗摄| 欧美日韩中文精品| 欧美乱妇23p| 91精品国产综合久久久蜜臀图片| 91免费版在线| 欧美日韩精品一区二区天天拍小说| www.亚洲色图.com| av亚洲精华国产精华精| 99久久精品一区| 欧美日韩日日骚| 日韩精品中文字幕一区二区三区 | 成人精品一区二区三区中文字幕 | 在线观看视频91| 8v天堂国产在线一区二区| 欧美性猛片aaaaaaa做受| 亚洲精品一区二区三区在线观看 | 国产亚洲污的网站| 中文字幕av免费专区久久| 国产精品传媒入口麻豆| 亚洲国产欧美在线人成| 激情五月播播久久久精品| 亚洲1区2区3区视频| 久久99热狠狠色一区二区| 国产精品1024| 欧美午夜免费电影| 国产日产欧美精品一区二区三区| 综合自拍亚洲综合图不卡区| 亚洲激情中文1区| 久草这里只有精品视频| 国产成人精品一区二| 91久久免费观看| 国产精品久久免费看| 午夜av电影一区| 一本一本大道香蕉久在线精品| 国产传媒日韩欧美成人| 一本到不卡免费一区二区| 久久久久久97三级| 精品一区二区在线视频| 国产成人av网站| 亚洲国产精品精华液ab| 国产剧情av麻豆香蕉精品| 91精品国产91久久综合桃花| 美女在线视频一区| 亚洲麻豆国产自偷在线| 国产精品正在播放| 精品国产一区二区三区四区四| 亚洲精品你懂的| 欧美剧在线免费观看网站| 色菇凉天天综合网| 亚洲国产另类av| 欧美日韩在线播放三区四区| 一区二区三区资源| 欧美精品在线观看播放| 日本不卡123| 欧美日韩国产系列| 国产视频亚洲色图| 五月天久久比比资源色| 日韩精品在线一区二区| 秋霞午夜av一区二区三区| 精品国产91亚洲一区二区三区婷婷| 精品在线免费观看| 91精品婷婷国产综合久久性色| 日韩精品成人一区二区三区|