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

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

?? ltmain.sh

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

    # Lock this critical section if it is needed
    # We use this script file to make the link, it avoids creating a new file
    if test "$need_locks" = yes; then
      until $run ln "$0" "$lockfile" 2>/dev/null; do
	$show "Waiting for $lockfile to be removed"
	sleep 2
      done
    elif test "$need_locks" = warn; then
      if test -f "$lockfile"; then
	echo "\
*** ERROR, $lockfile exists and contains:
`cat $lockfile 2>/dev/null`

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi
      echo $srcfile > "$lockfile"
    fi

    if test -n "$fix_srcfile_path"; then
      eval srcfile=\"$fix_srcfile_path\"
    fi

    # Only build a PIC object if we are building libtool libraries.
    if test "$build_libtool_libs" = yes; then
      # Without this assignment, base_compile gets emptied.
      fbsd_hideous_sh_bug=$base_compile

      if test "$pic_mode" != no; then
	# All platforms use -DPIC, to notify preprocessed assembler code.
	command="$base_compile $srcfile $pic_flag -DPIC"
      else
	# Don't build PIC code
	command="$base_compile $srcfile"
      fi
      if test "$build_old_libs" = yes; then
	lo_libobj="$libobj"
	dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
	if test "X$dir" = "X$libobj"; then
	  dir="$objdir"
	else
	  dir="$dir/$objdir"
	fi
	libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`

	if test -d "$dir"; then
	  $show "$rm $libobj"
	  $run $rm $libobj
	else
	  $show "$mkdir $dir"
	  $run $mkdir $dir
	  status=$?
	  if test $status -ne 0 && test ! -d $dir; then
	    exit $status
	  fi
	fi
      fi
      if test "$compiler_o_lo" = yes; then
	output_obj="$libobj"
	command="$command -o $output_obj"
      elif test "$compiler_c_o" = yes; then
	output_obj="$obj"
	command="$command -o $output_obj"
      fi

      $run $rm "$output_obj"
      $show "$command"
      if $run eval "$command"; then :
      else
	test -n "$output_obj" && $run $rm $removelist
	exit 1
      fi

      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed, then go on to compile the next one
      if test x"$output_obj" != x"$libobj"; then
	$show "$mv $output_obj $libobj"
	if $run $mv $output_obj $libobj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi

      # If we have no pic_flag, then copy the object into place and finish.
      if (test -z "$pic_flag" || test "$pic_mode" != default) &&
	 test "$build_old_libs" = yes; then
	# Rename the .lo from within objdir to obj
	if test -f $obj; then
	  $show $rm $obj
	  $run $rm $obj
	fi

	$show "$mv $libobj $obj"
	if $run $mv $libobj $obj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi

	xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
	if test "X$xdir" = "X$obj"; then
	  xdir="."
	else
	  xdir="$xdir"
	fi
	baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`
	libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
	# Now arrange that obj and lo_libobj become the same file
	$show "(cd $xdir && $LN_S $baseobj $libobj)"
	if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then
	  # Unlock the critical section if it was locked
	  if test "$need_locks" != no; then
	    $run $rm "$lockfile"
	  fi
	  exit 0
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi

      # Allow error messages only from the first compilation.
      suppress_output=' >/dev/null 2>&1'
    fi

    # Only build a position-dependent object if we build old libraries.
    if test "$build_old_libs" = yes; then
      if test "$pic_mode" != yes; then
	# Don't build PIC code
	command="$base_compile $srcfile"
      else
	# All platforms use -DPIC, to notify preprocessed assembler code.
	command="$base_compile $srcfile $pic_flag -DPIC"
      fi
      if test "$compiler_c_o" = yes; then
	command="$command -o $obj"
	output_obj="$obj"
      fi

      # Suppress compiler output if we already did a PIC compilation.
      command="$command$suppress_output"
      $run $rm "$output_obj"
      $show "$command"
      if $run eval "$command"; then :
      else
	$run $rm $removelist
	exit 1
      fi

      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed
      if test x"$output_obj" != x"$obj"; then
	$show "$mv $output_obj $obj"
	if $run $mv $output_obj $obj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi

      # Create an invalid libtool object if no PIC, so that we do not
      # accidentally link it into a program.
      if test "$build_libtool_libs" != yes; then
	$show "echo timestamp > $libobj"
	$run eval "echo timestamp > \$libobj" || exit $?
      else
	# Move the .lo from within objdir
	$show "$mv $libobj $lo_libobj"
	if $run $mv $libobj $lo_libobj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi
    fi

    # Unlock the critical section if it was locked
    if test "$need_locks" != no; then
      $run $rm "$lockfile"
    fi

    exit 0
    ;;

  # libtool link mode
  link | relink)
    modename="$modename: link"
    case $host in
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
      # It is impossible to link a dll without this setting, and
      # we shouldn't force the makefile maintainer to figure out
      # which system we are compiling for in order to pass an extra
      # flag for every libtool invokation.
      # allow_undefined=no

      # FIXME: Unfortunately, there are problems with the above when trying
      # to make a dll which has undefined symbols, in which case not
      # even a static library is built.  For now, we need to specify
      # -no-undefined on the libtool link line when we can be certain
      # that all symbols are satisfied, otherwise we get a static library.
      allow_undefined=yes
      ;;
    *)
      allow_undefined=yes
      ;;
    esac
    libtool_args="$nonopt"
    compile_command="$nonopt"
    finalize_command="$nonopt"

    compile_rpath=
    finalize_rpath=
    compile_shlibpath=
    finalize_shlibpath=
    convenience=
    old_convenience=
    deplibs=
    old_deplibs=
    compiler_flags=
    linker_flags=
    dllsearchpath=
    lib_search_path=`pwd`

    avoid_version=no
    dlfiles=
    dlprefiles=
    dlself=no
    export_dynamic=no
    export_symbols=
    export_symbols_regex=
    generated=
    libobjs=
    ltlibs=
    module=no
    no_install=no
    objs=
    prefer_static_libs=no
    preload=no
    prev=
    prevarg=
    release=
    rpath=
    xrpath=
    perm_rpath=
    temp_rpath=
    thread_safe=no
    vinfo=

    # We need to know -static, to get the right output filenames.
    for arg
    do
      case $arg in
      -all-static | -static)
	if test "X$arg" = "X-all-static"; then
	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
	  fi
	  if test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
	else
	  if test -z "$pic_flag" && test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
	fi
	build_libtool_libs=no
	build_old_libs=yes
	prefer_static_libs=yes
	break
	;;
      esac
    done

    # See if our shared archives depend on static archives.
    test -n "$old_archive_from_new_cmds" && build_old_libs=yes

    # Go through the arguments, transforming them on the way.
    while test $# -gt 0; do
      arg="$1"
      shift
      case $arg in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
	;;
      *) qarg=$arg ;;
      esac
      libtool_args="$libtool_args $qarg"

      # 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
	  ;;
	release)
	  release="-$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
	  ;;
	*)
	  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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人成精品久久久久| 北条麻妃一区二区三区| 国产成人精品aa毛片| 欧美性受xxxx| 国产精品久久久久久一区二区三区 | 老鸭窝一区二区久久精品| 成人网在线播放| 久久综合久久综合久久综合| 亚洲影视在线播放| gogo大胆日本视频一区| 精品国产91洋老外米糕| 日韩国产欧美视频| 欧美性淫爽ww久久久久无| 中文字幕亚洲精品在线观看| 国产成人在线观看免费网站| 日韩一级视频免费观看在线| 亚洲一区在线观看免费观看电影高清 | 婷婷六月综合网| 99精品热视频| 国产精品欧美一级免费| 国产精品资源在线| 国产欧美一二三区| 国产美女精品在线| 久久久亚洲国产美女国产盗摄 | 国产超碰在线一区| 久久精品一区二区三区av| 精品一区二区久久久| 日韩免费视频一区| 久久精品国产第一区二区三区| 91精品国产麻豆国产自产在线| 亚洲国产精品久久人人爱 | 久久这里只有精品首页| 久久国产精品露脸对白| 欧美大片一区二区三区| 精品一区二区三区蜜桃| 久久这里只有精品6| 国产精品香蕉一区二区三区| 久久免费看少妇高潮| 风流少妇一区二区| 另类成人小视频在线| 日韩精品影音先锋| 国产精华液一区二区三区| 欧美激情综合在线| a亚洲天堂av| 亚洲国产va精品久久久不卡综合| 欧美日韩夫妻久久| 老司机精品视频在线| 国产午夜亚洲精品理论片色戒| 成人av第一页| 亚洲综合色丁香婷婷六月图片| 欧美日韩精品一二三区| 久久aⅴ国产欧美74aaa| 国产日韩精品一区二区浪潮av| 不卡av电影在线播放| 亚洲综合在线第一页| 日韩欧美一级二级三级久久久| 国产精品一卡二卡| 日韩理论电影院| 91精品国产高清一区二区三区 | 国产精品大尺度| 欧美午夜宅男影院| 精品中文字幕一区二区小辣椒| 久久久99久久| 欧美在线观看视频在线| 蓝色福利精品导航| 亚洲欧美aⅴ...| 日韩精品在线一区二区| 91热门视频在线观看| 日本视频一区二区三区| 国产精品卡一卡二卡三| 制服丝袜亚洲播放| 99久久精品情趣| 蜜桃视频第一区免费观看| 最新国产成人在线观看| 日韩精品专区在线影院观看| 一本大道久久a久久精二百| 男男成人高潮片免费网站| 中文字幕一区二区三中文字幕| 欧美老年两性高潮| 91视频com| 国产精品18久久久久久久久久久久| 亚洲资源在线观看| 国产网站一区二区| 91精品国产高清一区二区三区蜜臀| aaa亚洲精品| 国产精品白丝av| 亚欧色一区w666天堂| 成人欧美一区二区三区白人| 精品理论电影在线观看| 欧美视频在线观看一区二区| caoporn国产一区二区| 精品一区二区三区蜜桃| 青草av.久久免费一区| 一区二区在线观看免费视频播放| 久久在线观看免费| 精品人在线二区三区| 这里只有精品视频在线观看| 日本高清视频一区二区| 波多野结衣中文一区| 国产精品自在欧美一区| 六月婷婷色综合| 日本亚洲视频在线| 日本午夜精品视频在线观看| 亚洲观看高清完整版在线观看| 韩国av一区二区| 亚洲va欧美va国产va天堂影院| 亚洲欧美一区二区三区极速播放| 国产清纯美女被跳蛋高潮一区二区久久w | 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 国产精品九色蝌蚪自拍| 久久久一区二区三区捆绑**| 精品国产99国产精品| 欧美xxxx老人做受| 精品国产一区二区三区av性色 | 欧美三级一区二区| 一本一道波多野结衣一区二区| 成人avav影音| aaa欧美色吧激情视频| av电影天堂一区二区在线观看| 97精品电影院| 在线精品亚洲一区二区不卡| 色综合天天视频在线观看 | 国产成人自拍网| 国产91在线看| 成人国产精品免费网站| av福利精品导航| 色8久久精品久久久久久蜜| 欧美色图天堂网| 日韩片之四级片| 国产午夜精品久久久久久免费视 | 久久久精品tv| 国产精品女主播av| 亚洲精品乱码久久久久久黑人| 亚洲一级片在线观看| 日韩黄色免费电影| 国内一区二区在线| 91免费观看视频在线| 欧美日本在线视频| 精品国产一区二区国模嫣然| 国产农村妇女毛片精品久久麻豆| 综合欧美一区二区三区| 亚洲成av人综合在线观看| 麻豆91在线播放免费| 高清不卡在线观看av| 在线观看日韩高清av| 精品国产在天天线2019| 成人免费小视频| 日本亚洲天堂网| 成人av资源下载| 欧美久久婷婷综合色| 久久影音资源网| 亚洲成人7777| 成人在线综合网| 欧美精品 国产精品| 国产亚洲va综合人人澡精品 | 精品视频在线免费观看| 久久久久久久电影| 亚洲国产精品影院| 成人免费高清视频| 欧美不卡一区二区三区四区| 国产精品每日更新在线播放网址| 亚欧色一区w666天堂| jlzzjlzz国产精品久久| 欧美va亚洲va国产综合| 一区二区久久久久| 成人免费毛片高清视频| 日韩一级二级三级| 亚洲一二三级电影| bt欧美亚洲午夜电影天堂| wwwwxxxxx欧美| 日韩中文字幕区一区有砖一区| 94色蜜桃网一区二区三区| 2017欧美狠狠色| 久久精品国产色蜜蜜麻豆| 欧美日韩久久久一区| 国产精品区一区二区三区| 国产自产视频一区二区三区| 欧美一二三四区在线| 亚洲一区二区三区小说| 成人黄色av电影| 国产三级精品在线| 激情综合色综合久久| 欧美精品一二三区| 亚洲成在人线免费| 在线观看日韩国产| 亚洲一区二区三区四区在线免费观看 | 欧美日本在线播放| 一区二区三区日韩欧美精品| 成人高清免费在线播放| 国产三级精品在线| 国产盗摄女厕一区二区三区| 精品国产凹凸成av人导航| 久久99精品视频| 日韩欧美高清一区| 激情综合网最新| 久久精品视频在线看| 国产激情视频一区二区三区欧美| 精品国产污污免费网站入口| 久久se这里有精品| 欧美v日韩v国产v|