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

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

?? ltmain.sh

?? MPEG-4編解碼的實現(包括MPEG4視音頻編解碼)
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	;;

      -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
	;;

      # 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*)
	  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*)
	    # Do not include libc due to us having libc/libc_r.
	    test "X$arg" = "X-lc" && continue
	    ;;
	  esac
	 elif test "X$arg" = "X-lc_r"; then
	  case $host in
	  *-*-openbsd*)
	    # Do not include libc_r directly, use -pthread flag.
	    continue
	    ;;
	  esac
	fi
	deplibs="$deplibs $arg"
	continue
	;;

      -module)
	module=yes
	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
	;;

      -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
	;;

      -Wc,*)
	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
	;;

      # 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
	;;

      *.lo | *.$objext)
	# A library or standard object.
	if test "$prev" = dlfiles; then
	  # This file was specified with -dlopen.
	  if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
	    dlfiles="$dlfiles $arg"
	    prev=
	    continue
	  else
	    # If libtool objects are unsupported, then we need to preload.
	    prev=dlprefiles
	  fi
	fi

	if test "$prev" = dlprefiles; then
	  # Preload the old-style object.
	  dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
	  prev=
	else
	  case $arg in
	  *.lo) libobjs="$libobjs $arg" ;;
	  *) objs="$objs $arg" ;;
	  esac
	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

    # 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

    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
      case "$libs " in
      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
      esac
      libs="$libs $deplib"
    done
    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" = prog; then
	# Determine which files to process
	case $pass in
	dlopen)
	  libs="$dlfiles"
	  save_deplibs="$deplibs" # Collect dlpreopened libraries
	  deplibs=
	  ;;
	dlpreopen) libs="$dlprefiles" ;;
	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
	esac
      fi
      for deplib in $libs; do
	lib=
	found=no
	case $deplib in
	-l*)
	  if test "$linkmode" = oldlib && test "$linkmode" = obj; then
	    $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 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
	    # Search the libtool library
	    lib="$searchdir/lib${name}.la"
	    if test -f "$lib"; then
	      found=yes
	      break
	    fi
	  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
	  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: $deplib" 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)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲日本在线视频观看| 制服.丝袜.亚洲.中文.综合| 亚洲一区在线播放| 日韩精品一区二区三区swag| 成人高清免费观看| 亚洲一卡二卡三卡四卡无卡久久| 欧美日韩精品欧美日韩精品一| 亚洲女厕所小便bbb| 在线不卡一区二区| 国产福利一区二区三区| 亚洲成a人v欧美综合天堂下载| 欧美一卡2卡三卡4卡5免费| 成人午夜电影网站| 肉丝袜脚交视频一区二区| 国产视频亚洲色图| 7777精品伊人久久久大香线蕉的 | 亚洲一区二区免费视频| 亚洲精品一区二区在线观看| 成人免费毛片嘿嘿连载视频| 日韩中文字幕不卡| 亚洲视频每日更新| www久久精品| 欧美性感一类影片在线播放| 国产传媒日韩欧美成人| 天堂蜜桃一区二区三区| 亚洲色图丝袜美腿| 久久久www免费人成精品| 777精品伊人久久久久大香线蕉| 成人国产一区二区三区精品| 亚洲成人tv网| 亚洲精品一区在线观看| 欧美人xxxx| 一本到一区二区三区| 国产精品一级黄| 蜜臀av亚洲一区中文字幕| 一区二区日韩av| 国产精品少妇自拍| 久久综合精品国产一区二区三区| 欧美日韩成人激情| 91豆麻精品91久久久久久| 春色校园综合激情亚洲| 天天免费综合色| 国产性天天综合网| 国产亚洲自拍一区| 日韩美女主播在线视频一区二区三区| 精品视频在线免费看| 91蝌蚪porny| 不卡av在线免费观看| 成人免费视频一区二区| 国产精品456| 国产九色sp调教91| 国产成人av电影| 国产精品一区二区男女羞羞无遮挡 | av午夜一区麻豆| 成人综合婷婷国产精品久久免费| 丝袜亚洲另类欧美| 亚洲免费在线电影| 亚洲欧美日韩一区二区| 亚洲女子a中天字幕| 亚洲人成小说网站色在线| 日韩伦理av电影| 亚洲素人一区二区| 亚洲欧美另类小说视频| 一区二区三区.www| 亚洲国产日韩a在线播放性色| 亚洲一区二区综合| 亚洲午夜久久久久中文字幕久| 一区二区三区四区五区视频在线观看| 亚洲欧美综合色| 亚洲色图另类专区| 樱桃视频在线观看一区| 亚洲午夜免费电影| 亚洲成人动漫在线免费观看| 免费一级片91| 狠狠色综合日日| 国产乱对白刺激视频不卡| 六月婷婷色综合| 国产高清不卡二三区| 高清不卡一区二区| 国产大陆精品国产| 91免费视频观看| 欧美性感一类影片在线播放| 欧美日韩aaa| 4438亚洲最大| 欧美一区二区三区在线| 欧美岛国在线观看| 国产欧美日韩亚州综合| 一区二区三区在线视频观看| 日韩国产欧美三级| 国产成人激情av| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 亚洲sss视频在线视频| 精品一区二区国语对白| 成人av电影在线观看| 成人网男人的天堂| 欧美日韩国产一二三| 久久久久久久免费视频了| 亚洲欧美日本韩国| 老司机精品视频线观看86 | 一区二区高清在线| 男男成人高潮片免费网站| 久久99久久精品| 91色九色蝌蚪| 精品久久久久久最新网址| 亚洲欧美日韩系列| 亚洲综合另类小说| 国产精品一线二线三线| 欧美日韩一区高清| 久久精品视频在线看| 亚洲成人一二三| av男人天堂一区| 久久亚洲免费视频| 亚洲成av人影院| 成人av动漫在线| 久久综合九色综合久久久精品综合| 亚洲另类在线一区| 国产精品一区二区果冻传媒| 欧美三级电影网| 中文字幕一区二区5566日韩| 美国一区二区三区在线播放| 91美女片黄在线| 欧美激情一区三区| 国产乱码一区二区三区| 日韩一二三区视频| 欧美xingq一区二区| 亚洲精品免费在线观看| 成人爱爱电影网址| 欧美tickle裸体挠脚心vk| 亚洲黄色片在线观看| 色婷婷综合五月| 国产午夜精品福利| 国产乱理伦片在线观看夜一区| 91国偷自产一区二区开放时间| 欧美激情一二三区| 国产乱码精品一区二区三区五月婷| 8v天堂国产在线一区二区| 亚洲电影一区二区三区| 日本道在线观看一区二区| 国产精品家庭影院| av亚洲精华国产精华精华| 国产精品五月天| 国产美女在线观看一区| 日韩亚洲欧美高清| 亚洲福利视频三区| 欧美写真视频网站| 亚洲乱码国产乱码精品精可以看 | 在线观看免费一区| 亚洲欧美二区三区| 色综合久久综合网| 亚洲女人****多毛耸耸8| av午夜精品一区二区三区| 国产天堂亚洲国产碰碰| 国产真实乱子伦精品视频| 欧美mv和日韩mv国产网站| 久久av老司机精品网站导航| 日韩美一区二区三区| 精品一二三四区| 26uuu久久天堂性欧美| 国内精品国产三级国产a久久| 欧美精品一区二区三区四区| 久久国产视频网| 99久久精品国产一区二区三区| 欧美久久久一区| 久久99最新地址| 国产精品三级av| 欧美在线视频你懂得| 麻豆精品一区二区综合av| 国产网站一区二区三区| 一本一道综合狠狠老| 免费在线看一区| 中文字幕亚洲一区二区av在线| 欧美性色综合网| 韩国中文字幕2020精品| 中文字幕一区不卡| 91精品国产免费| 粉嫩欧美一区二区三区高清影视| 亚洲日本青草视频在线怡红院| 欧美日韩一本到| 国产成人精品午夜视频免费| 亚洲国产你懂的| 久久久亚洲午夜电影| 欧美在线免费播放| 国产在线播精品第三| 亚洲精品第一国产综合野| 欧美精品一区二区不卡| 在线免费观看一区| 国产成人免费av在线| 婷婷综合五月天| 国产精品第13页| 日韩一区二区三区免费看| 99re热这里只有精品视频| 久久99日本精品| 一区二区三区四区视频精品免费 | 久久综合色综合88| 欧美在线一区二区三区| 成人高清视频在线| 精品一区二区三区欧美| 亚洲高清一区二区三区| 国产精品麻豆网站| 久久伊人蜜桃av一区二区|