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

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

?? ltmain.sh

?? 比較早的MPEG-2的解碼源程序
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    case $libobj in    *.ada) xform=ada ;;    *.adb) xform=adb ;;    *.ads) xform=ads ;;    *.asm) xform=asm ;;    *.c++) xform=c++ ;;    *.cc) xform=cc ;;    *.ii) xform=ii ;;    *.class) xform=class ;;    *.cpp) xform=cpp ;;    *.cxx) xform=cxx ;;    *.f90) xform=f90 ;;    *.for) xform=for ;;    *.java) xform=java ;;    esac    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`    case $libobj in    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;    *)      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2      exit 1      ;;    esac    # Infer tagged configuration to use if any are available and    # if one wasn't chosen via the "--tag" command line option.    # Only attempt this if the compiler in the base compile    # command doesn't match the default compiler.    if test -n "$available_tags" && test -z "$tagname"; then      case $base_compile in      # Blanks in the command may have been stripped by the calling shell,      # but not from the CC environment variable when configure was run.      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "*) ;;      # Blanks at the start of $base_compile will cause this to fail      # if we don't check for them as well.      *)	for z in $available_tags; do	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"	    case "$base_compile " in	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)	      # The compiler in the base compile command matches	      # the one in the tagged configuration.	      # Assume this is the tagged configuration we want.	      tagname=$z	      break	      ;;	    esac	  fi	done	# If $tagname still isn't set, then no tagged configuration	# was found and let the user know that the "--tag" command	# line option must be used.	if test -z "$tagname"; then	  $echo "$modename: unable to infer tagged configuration"	  $echo "$modename: specify a tag with \`--tag'" 1>&2	  exit 1#        else#          $echo "$modename: using $tagname tagged configuration"	fi	;;      esac    fi    for arg in $later; do      case $arg in      -static)	build_old_libs=yes	continue	;;      -prefer-pic)	pic_mode=yes	continue	;;      -prefer-non-pic)	pic_mode=no	continue	;;      esac    done    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`    if test "X$xdir" = "X$obj"; then      xdir=    else      xdir=$xdir/    fi    lobj=${xdir}$objdir/$objname    if test -z "$base_compile"; then      $echo "$modename: you must specify a compilation command" 1>&2      $echo "$help" 1>&2      exit 1    fi    # Delete any leftover library objects.    if test "$build_old_libs" = yes; then      removelist="$obj $lobj $libobj ${libobj}T"    else      removelist="$lobj $libobj ${libobj}T"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit 1" 1 2 15    # On Cygwin there's no "real" PIC flag so we must build both object types    case $host_os in    cygwin* | mingw* | pw32* | os2*)      pic_mode=default      ;;    esac    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then      # non-PIC code in shared libraries is not supported      pic_mode=default    fi    # Calculate the filename of the output object if compiler does    # not support -o with -c    if test "$compiler_c_o" = no; then      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}      lockfile="$output_obj.lock"      removelist="$removelist $output_obj $lockfile"      trap "$run $rm $removelist; exit 1" 1 2 15    else      output_obj=      need_locks=no      lockfile=    fi    # 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 sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit 1      fi      $echo $srcfile > "$lockfile"    fi    if test -n "$fix_srcfile_path"; then      eval srcfile=\"$fix_srcfile_path\"    fi    $run $rm "$libobj" "${libobj}T"    # Create a libtool object file (analogous to a ".la" file),    # but don't create it if we're doing a dry run.    test -z "$run" && cat > ${libobj}T <<EOF# $libobj - a libtool object file# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP## Please DO NOT delete this file!# It is necessary for linking the library.# Name of the PIC object.EOF    # 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	command="$base_compile $srcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	status=$?	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $status	fi      fi      if test -z "$output_obj"; then	# Place PIC objects in $objdir	command="$command -o $lobj"      fi      $run $rm "$lobj" "$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:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit 1      fi      # Just move the object if needed, then go on to compile the next one      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then	$show "$mv $output_obj $lobj"	if $run $mv $output_obj $lobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the PIC object to the libtool object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object='$objdir/$objname'EOF      # Allow error messages only from the first compilation.      if test "$suppress_opt" = yes; then        suppress_output=' >/dev/null 2>&1'      fi    else      # No PIC object so indicate it doesn't exist in the libtool      # object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object=noneEOF    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	command="$base_compile $srcfile $pic_flag"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$obj" "$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:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit 1      fi      # Just move the object if needed      if test -n "$output_obj" && 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      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object='$objname'EOF    else      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object=noneEOF    fi    $run $mv "${libobj}T" "${libobj}"    # 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 invocation.      # 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"    base_compile="$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`    inst_prefix_dir=    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    non_pic_objects=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    # Infer tagged configuration to use if any are available and    # if one wasn't chosen via the "--tag" command line option.    # Only attempt this if the compiler in the base link    # command doesn't match the default compiler.    if test -n "$available_tags" && test -z "$tagname"; then      case "$base_compile " in      # Blanks in the command may have been stripped by the calling shell,      # but not from the CC environment variable when configure was run.      "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*) ;;      # Blanks at the start of $base_compile will cause this to fail      # if we don't check for them as well.      *)	for z in $available_tags; do	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"	    case "$base_compile " in	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)	      # The compiler in $compile_command matches	      # the one in the tagged configuration.	      # Assume this is the tagged configuration we want.	      tagname=$z	      break	      ;;	    esac	  fi	done	# If $tagname still isn't set, then no tagged configuration	# was found and let the user know that the "--tag" command	# line option must be used.	if test -z "$tagname"; then	  $echo "$modename: unable to infer tagged configuration"	  $echo "$modename: specify a tag with \`--tag'" 1>&2	  exit 1#       else#         $echo "$modename: using $tagname tagged configuration"	fi	;;      esac    fi    # 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"      base_compile="$base_compile $arg"      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"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩一级二级三级| 久久精品夜色噜噜亚洲aⅴ| 欧美一区二区三级| 中文字幕色av一区二区三区| 日本人妖一区二区| 在线观看成人免费视频| 国产视频亚洲色图| 蜜桃av一区二区| 色悠久久久久综合欧美99| 久久精品一级爱片| 蜜臀av性久久久久蜜臀aⅴ流畅 | 日韩av不卡在线观看| 91蜜桃婷婷狠狠久久综合9色| 日韩精品一区二区三区在线 | 国产精品夫妻自拍| 国产综合久久久久久久久久久久 | 中文字幕av免费专区久久| 奇米精品一区二区三区在线观看| 91蝌蚪porny九色| 国产精品久久三区| 成人性生交大片免费看在线播放| 精品免费视频一区二区| 美女网站视频久久| 欧美一区二区三区在线电影| 午夜av一区二区| 欧美婷婷六月丁香综合色| 亚洲久草在线视频| 91麻豆精品秘密| 一区二区三区四区在线免费观看 | 国产精品亚洲人在线观看| 欧美一区二区三级| 伦理电影国产精品| 日韩一区二区三| 麻豆精品蜜桃视频网站| 欧美大片在线观看一区| 另类小说图片综合网| 欧美成人a∨高清免费观看| 黄色日韩网站视频| 欧美激情在线一区二区三区| 99久久99久久精品免费看蜜桃| 国产精品久久精品日日| 97超碰欧美中文字幕| 亚洲美女电影在线| 欧美精品日韩精品| 精久久久久久久久久久| 国产亚洲人成网站| 成人国产亚洲欧美成人综合网 | 另类小说综合欧美亚洲| 欧美精品一区二区三区在线播放| 国产一区二区三区| 国产精品短视频| 欧美三级乱人伦电影| 精品亚洲欧美一区| 国产精品免费av| 欧美体内she精高潮| 看电影不卡的网站| 中文字幕综合网| 欧美肥胖老妇做爰| 粉嫩嫩av羞羞动漫久久久 | 91国偷自产一区二区使用方法| 亚洲一区影音先锋| 精品理论电影在线观看| 99精品视频在线免费观看| 亚洲成人一区二区在线观看| 精品久久久久久久久久久久久久久| 国产超碰在线一区| 图片区小说区区亚洲影院| 久久精品欧美日韩精品| 欧美午夜理伦三级在线观看| 国内外精品视频| 亚洲综合偷拍欧美一区色| 久久精品亚洲乱码伦伦中文 | 日本最新不卡在线| 国产精品乱子久久久久| 日韩精品中文字幕在线不卡尤物| 成人激情黄色小说| 狠狠色丁香九九婷婷综合五月| 日韩理论电影院| 国产亚洲一区字幕| 欧美一区二区在线不卡| 色哟哟一区二区在线观看| 国产一区二区日韩精品| 日韩成人av影视| 亚洲你懂的在线视频| 国产日韩影视精品| 欧美大片一区二区| 欧美高清视频一二三区| 色婷婷久久久综合中文字幕 | 最新日韩av在线| 日韩午夜激情av| 欧美视频一区在线| 91麻豆精品视频| 成人动漫一区二区在线| 国产精品99久久久久久久女警| 无吗不卡中文字幕| 亚洲福利一二三区| 亚洲男同1069视频| 亚洲精选免费视频| 亚洲激情校园春色| 亚洲女女做受ⅹxx高潮| 国产精品国产三级国产aⅴ原创 | 欧美成人a∨高清免费观看| 欧美午夜电影在线播放| 色天天综合色天天久久| 99re这里都是精品| 99亚偷拍自图区亚洲| 不卡的av电影| 99这里只有久久精品视频| 成人午夜又粗又硬又大| 成人小视频免费观看| 国产成人免费在线观看| 大美女一区二区三区| 国产91在线|亚洲| 99精品桃花视频在线观看| 91视频在线观看免费| 色悠悠久久综合| 欧美视频精品在线| 欧美一区二区三区在线视频| 日韩欧美不卡在线观看视频| 日韩精品一区二区三区蜜臀| 欧美成人一区二区三区片免费 | 亚洲国产日韩在线一区模特| 亚洲已满18点击进入久久| 亚洲成人免费电影| 男人操女人的视频在线观看欧美| 免费成人美女在线观看.| 极品少妇xxxx精品少妇| 国产精品亚洲专一区二区三区 | 国产精品自拍在线| 粉嫩久久99精品久久久久久夜| www.av亚洲| 欧美日韩免费观看一区三区| 5月丁香婷婷综合| 久久日一线二线三线suv| 综合久久综合久久| 亚洲国产综合91精品麻豆| 久久激情综合网| 91片黄在线观看| 欧美一区二区三区男人的天堂 | 日韩欧美中文字幕精品| 久久色中文字幕| 亚洲日本青草视频在线怡红院| 亚洲一区二区三区视频在线播放 | 中文字幕一区二区三区精华液| 中文字幕av一区二区三区高| 一区二区久久久久久| 在线一区二区三区做爰视频网站| 欧美男男青年gay1069videost| 欧美刺激午夜性久久久久久久| 国产精品久久久久久久久图文区| 一区二区三区四区视频精品免费 | 欧美性一区二区| 日韩一区二区免费电影| 国产精品视频yy9299一区| 亚洲精品五月天| 国产中文字幕精品| 91福利在线免费观看| 精品国产乱码久久久久久闺蜜| 中文字幕欧美一| 精品亚洲国内自在自线福利| 91首页免费视频| 久久精品网站免费观看| 亚洲国产你懂的| bt7086福利一区国产| 精品成a人在线观看| 亚洲激情图片qvod| 国产91高潮流白浆在线麻豆| 欧美精品日韩一本| 亚洲欧洲综合另类| 国产尤物一区二区在线| 欧美一区二区三区免费观看视频| 亚洲美女区一区| 成人综合婷婷国产精品久久| 欧美一区二区成人| 亚洲综合激情小说| 波多野结衣中文字幕一区| 精品国产sm最大网站免费看| 亚洲国产成人av网| 色悠悠亚洲一区二区| 国产精品美女久久久久久久久| 精东粉嫩av免费一区二区三区 | 在线观看一区日韩| 久久精品一级爱片| 国产在线视频不卡二| 欧美久久免费观看| 亚洲国产精品久久艾草纯爱| 91蝌蚪porny成人天涯| 国产精品福利av| 99视频超级精品| 国产精品久久一卡二卡| 国产a视频精品免费观看| 久久综合九色综合欧美98| 精品一区二区在线免费观看| 91精品国产欧美一区二区成人| 亚洲h在线观看| 欧美日韩一区久久| 日韩电影在线观看网站| 666欧美在线视频| 蜜臀99久久精品久久久久久软件| 777午夜精品视频在线播放|