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

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

?? ltmain.sh

?? 常好且全面的jpeg圖像壓縮算法
?? SH
?? 第 1 頁 / 共 5 頁
字號(hào):
        compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.o%"`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.o%"`
      elif test "$export_dynamic" != yes; then
        test -n "$dlfiles$dlprefiles" && $echo "$modename: warning: \`-dlopen' and \`-dlpreopen' are ignored without \`-export-dynamic'" 1>&2
      else
        # We keep going just in case the user didn't refer to
        # dld_preloaded_symbols.  The linker will fail if global_symbol_pipe
        # really was required.
        $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2

        # Nullify the symbol file.
        compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
      fi

      if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then
        # Replace the output file specification.
        compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`

        # We have no uninstalled library dependencies, so finalize right now.
        $show "$compile_command"
        $run eval "$compile_command"
        exit $?
      fi

      # Replace the output file specification.
      compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'%g'`
      finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'T%g'`

      # Create the binary in the object directory, then wrap it.
      if test -d $objdir; then :
      else
        $show "$mkdir $objdir"
	$run $mkdir $objdir
	status=$?
	if test $status -eq 0 || test -d $objdir; then :
	else
	  exit $status
	fi
      fi

      if test -n "$shlibpath_var"; then
        # We should set the shlibpath_var
        rpath=
        for dir in $temp_rpath; do
          case "$dir" in
          /* | [A-Za-z]:\\*)
            # Absolute path.
            rpath="$rpath$dir:"
            ;;
          *)
            # Relative path: add a thisdir entry.
            rpath="$rpath\$thisdir/$dir:"
            ;;
          esac
        done
        temp_rpath="$rpath"
      fi

      # Delete the old output file.
      $run $rm $output

      if test -n "$compile_shlibpath"; then
        compile_command="$shlibpath_var=\"$compile_shlibpath\$$shlibpath_var\" $compile_command"
      fi
      if test -n "$finalize_shlibpath"; then
        finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
      fi

      if test -n "$runpath_var" && test -n "$perm_rpath"; then
        # We should set the runpath_var.
        rpath=
        for dir in $perm_rpath; do
          rpath="$rpath$dir:"
        done
        compile_command="$runpath_var=\"$rpath\$$runpath_var\" $compile_command"
        finalize_command="$runpath_var=\"$rpath\$$runpath_var\" $finalize_command"
      fi

      case "$hardcode_action" in
      relink)
        # AGH! Flame the AIX and HP-UX people for me, will ya?
        $echo "$modename: warning: using a buggy system linker" 1>&2
        $echo "$modename: relinking will be required before \`$output' can be installed" 1>&2
        ;;
      esac

      $show "$compile_command"
      $run eval "$compile_command" || exit $?

      # Now create the wrapper script.
      $show "creating $output"

      # Quote the finalize command for shipping.
      finalize_command=`$echo "X$finalize_command" | $Xsed -e "$sed_quote_subst"`

      # Quote $echo for shipping.
      qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`

      # Only actually do things if our run command is non-null.
      if test -z "$run"; then
        $rm $output
        trap "$rm $output; exit 1" 1 2 15

        $echo > $output "\
#! /bin/sh

# $output - temporary wrapper script for $objdir/$output
# Generated by ltmain.sh - GNU $PACKAGE $VERSION
#
# The $output program cannot be directly executed until all the libtool
# libraries that it depends on are installed.
#
# This wrapper script should never be moved out of \``pwd`'.
# If it is, it will not operate correctly.

# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
Xsed='sed -e s/^X//'
sed_quote_subst='$sed_quote_subst'

# The HP-UX ksh and POSIX shell print the target directory to stdout
# if CDPATH is set.
if test \"\${CDPATH+set}\" = set; then CDPATH=; export CDPATH; fi

# This environment variable determines our operation mode.
if test \"\$libtool_install_magic\" = \"$magic\"; then
  # install mode needs the following variables:
  link_against_libtool_libs='$link_against_libtool_libs'
  finalize_command=\"$finalize_command\"
else
  # When we are sourced in execute mode, \$file and \$echo are already set.
  if test \"\$libtool_execute_magic\" = \"$magic\"; then :
  else
    echo=\"$qecho\"
    file=\"\$0\"
  fi\
"
        $echo >> $output "\

  # Find the directory that this script lives in.
  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.

  # Follow symbolic links until we get to the real thisdir.
  file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
  while test -n \"\$file\"; do
    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`

    # If there was a directory component, then change thisdir.
    if test \"x\$destdir\" != \"x\$file\"; then
      case \"\$destdir\" in
      /* | [A-Za-z]:\\*) thisdir=\"\$destdir\" ;;
      *) thisdir=\"\$thisdir/\$destdir\" ;;
      esac
    fi

    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
    file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
  done

  # Try to get the absolute directory name.
  absdir=\`cd \"\$thisdir\" && pwd\`
  test -n \"\$absdir\" && thisdir=\"\$absdir\"

  progdir=\"\$thisdir/$objdir\"
  program='$output'

  if test -f \"\$progdir/\$program\"; then"

        # Export our shlibpath_var if we have one.
        if test -n "$shlibpath_var" && test -n "$temp_rpath"; then
          $echo >> $output "\
    # Add our own library path to $shlibpath_var
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"

    # Some systems cannot cope with colon-terminated $shlibpath_var
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/:*\$//'\`

    export $shlibpath_var
"
        fi

        $echo >> $output "\
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
      # Run the actual program with our arguments.

      # Export the path to the program.
      PATH=\"\$progdir:\$PATH\"
      export PATH

      exec \$program \${1+\"\$@\"}

      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
      exit 1
    fi
  else
    # The program doesn't exist.
    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
    \$echo \"This script is just a wrapper for \$program.\" 1>&2
    echo \"See the $PACKAGE documentation for more information.\" 1>&2
    exit 1
  fi
fi\
"
        chmod +x $output
      fi
      exit 0
      ;;
    esac

    # See if we need to build an old-fashioned archive.
    if test "$build_old_libs" = "yes"; then
      # Transform .lo files to .o files.
      oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^   ]*\.a //g' -e 's/\.lo /.o /g' -e 's/ $//g'`

      # Do each command in the archive commands.
      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
	eval cmds=\"$old_archive_from_new_cmds\"
      else
	eval cmds=\"$old_archive_cmds\"
      fi
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
      for cmd in $cmds; do
        IFS="$save_ifs"
        $show "$cmd"
        $run eval "$cmd" || exit $?
      done
      IFS="$save_ifs"
    fi

    # Now create the libtool archive.
    case "$output" in
    *.la)
      old_library=
      test "$build_old_libs" = yes && old_library="$libname.a"

      $show "creating $output"

      # Only create the output if not a dry run.
      if test -z "$run"; then
        $echo > $output "\
# $output - a libtool library file
# Generated by ltmain.sh - GNU $PACKAGE $VERSION

# The name that we can dlopen(3).
dlname='$dlname'

# Names of this library.
library_names='$library_names'

# The name of the static archive.
old_library='$old_library'

# Libraries that this one depends upon.
dependency_libs='$dependency_libs'

# Version information for $libname.
current=$current
age=$age
revision=$revision

# Directory that this library needs to be installed in:
libdir='$install_libdir'\
"
      fi

      # Do a symbolic link so that the libtool archive can be found in
      # LD_LIBRARY_PATH before the program is installed.
      $show "(cd $objdir && $LN_S ../$output $output)"
      $run eval "(cd $objdir && $LN_S ../$output $output)" || exit 1
      ;;
    esac
    exit 0
    ;;

  # libtool install mode
  install)
    modename="$modename: install"

    # There may be an optional /bin/sh argument at the beginning of
    # install_prog (especially on Windows NT).
    if test "$nonopt" = "$SHELL"; then
      # Aesthetically quote it.
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
      case "$arg" in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$arg "
      arg="$1"
      shift
    else
      install_prog=
      arg="$nonopt"
    fi

    # The real first argument should be the name of the installation program.
    # Aesthetically quote it.
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
    case "$arg" in
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
      arg="\"$arg\""
      ;;
    esac
    install_prog="$install_prog$arg"

    # We need to accept at least all the BSD install flags.
    dest=
    files=
    opts=
    prev=
    install_type=
    isdir=
    stripme=
    for arg
    do
      if test -n "$dest"; then
        files="$files $dest"
        dest="$arg"
        continue
      fi

      case "$arg" in
      -d) isdir=yes ;;
      -f) prev="-f" ;;
      -g) prev="-g" ;;
      -m) prev="-m" ;;
      -o) prev="-o" ;;
      -s)
        stripme=" -s"
        continue
        ;;
      -*) ;;

      *)
        # If the previous option needed an argument, then skip it.
        if test -n "$prev"; then
          prev=
        else
          dest="$arg"
          continue
        fi
        ;;
      esac

      # Aesthetically quote the argument.
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
      case "$arg" in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$install_prog $arg"
    done

    if test -z "$install_prog"; then
      $echo "$modename: you must specify an install program" 1>&2
      $echo "$help" 1>&2
      exit 1
    fi

    if test -n "$prev"; then
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
      $echo "$help" 1>&2
      exit 1
    fi

    if test -z "$files"; then
      if test -z "$dest"; then
        $echo "$modename: no file or destination specified" 1>&2
      else
        $echo "$modename: you must specify a destination" 1>&2
      fi
      $echo "$help" 1>&2
      exit 1
    fi

    # Strip any trailing slash from the destination.
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`

    # Check to see that the destination is a directory.
    test -d "$dest" && isdir=yes
    if test -n "$isdir"; then
      destdir="$dest"
      destname=
    else
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
      test "X$destdir" = "X$dest" && destdir=.
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`

      # Not a directory, so check to see that there is only one file specified.
      set dummy $files
      if test $# -gt 2; then
        $echo "$modename: \`$dest' is not a directory" 1>&2
        $echo "$help" 1>&2
        exit 1
      fi
    fi
    case "$destdir" in
    /* | [A-Za-z]:\\*) ;;
    *)
      for file in $files; do
        case "$file" in
        *.lo) ;;
        *)
          $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
          $echo "$help" 1>&2
          exit 1
          ;;
        esac
      done
      ;;
    esac

    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

    staticlibs=
    future_libdirs=
    current_libdirs=
    for file in $files; do

      # Do each installation.
      case "$file" in
      *.a)
        # Do the static libraries later.
        staticlibs="$staticlibs $file"
        ;;

      *.la)
        # Check to see that this really is a libtool archive.
        if (sed -e '2q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then :
        else
          $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
          $echo "$help" 1>&2
          exit 1
        fi

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合av在线| 樱花草国产18久久久久| 精品国产乱码久久| 日韩一级片网址| 日韩一区二区三区电影| 日韩欧美中文字幕精品| 日韩欧美国产一区二区在线播放| 欧美一级片免费看| www国产精品av| 2020国产精品自拍| 国产欧美日韩另类一区| 国产精品日韩成人| 日韩一区在线看| 一区二区三区免费观看| 亚洲第一福利一区| 蜜臀精品一区二区三区在线观看 | 亚洲欧洲性图库| 亚洲乱码中文字幕| 亚洲成人动漫精品| 麻豆国产精品官网| 国产成人一区二区精品非洲| 国产91精品在线观看| av不卡在线播放| 欧美在线免费观看视频| 9191久久久久久久久久久| 日韩免费视频一区| 国产日韩欧美精品一区| 亚洲女厕所小便bbb| 视频在线观看91| 国产裸体歌舞团一区二区| av一本久道久久综合久久鬼色| 欧美色倩网站大全免费| 欧美一区二区三区的| 中文字幕精品综合| 欧美mv和日韩mv的网站| 91黄色激情网站| 欧美性xxxxxx少妇| 欧美一区二区三区免费大片 | 日韩限制级电影在线观看| 久久久久综合网| 亚洲一区二区三区影院| 久色婷婷小香蕉久久| 99久久婷婷国产| 日韩欧美在线影院| 亚洲欧洲99久久| 日韩黄色免费电影| 成人国产精品免费观看动漫| 欧美日韩国产中文| 国产精品日韩成人| 老司机午夜精品| 色综合中文字幕国产 | 亚洲一级不卡视频| 亚洲三级视频在线观看| 日本欧美一区二区三区| 岛国精品在线观看| 欧美电影影音先锋| 国产精品欧美一级免费| 日韩精品亚洲一区二区三区免费| 国产精品资源网站| 欧美男男青年gay1069videost | 性久久久久久久久| 成人午夜电影小说| 欧美本精品男人aⅴ天堂| 亚洲综合男人的天堂| 国产精品一区二区在线播放| 欧美精品亚洲一区二区在线播放| 国产精品网站导航| 精品一区二区三区久久| 欧美人妖巨大在线| 亚洲精品五月天| 成人免费观看视频| 26uuu另类欧美| 美国一区二区三区在线播放| 欧美性生活大片视频| 国产精品久久久久久福利一牛影视| 青青草国产精品97视觉盛宴 | 国产一区二区三区不卡在线观看| 91麻豆免费视频| 久久理论电影网| 日本中文字幕一区二区视频 | 精品sm在线观看| 丝袜诱惑亚洲看片| 欧洲激情一区二区| 亚洲色图一区二区| jlzzjlzz亚洲女人18| 国产欧美精品一区| 国产精品亚洲午夜一区二区三区 | 中文字幕不卡在线播放| 久久国内精品自在自线400部| 欧美日韩在线观看一区二区 | 欧美影院一区二区| 亚洲女人****多毛耸耸8| 91香蕉视频在线| 亚洲视频资源在线| 99久久精品免费| 色综合久久久久综合体桃花网| 亚洲主播在线观看| 91免费视频网址| 2023国产精华国产精品| 乱一区二区av| 精品久久久久久亚洲综合网| 日韩电影一区二区三区| 欧美一级二级在线观看| 久草这里只有精品视频| 精品三级av在线| 国产一区二区不卡老阿姨| 精品国产乱码久久久久久久久| 日本成人超碰在线观看| 欧美一级理论性理论a| 青青草国产精品亚洲专区无| 欧美大片顶级少妇| 国产在线麻豆精品观看| 国产午夜亚洲精品羞羞网站| 成人免费视频网站在线观看| 中文字幕一区在线| 色8久久精品久久久久久蜜| 亚洲精品亚洲人成人网| 欧美日韩在线精品一区二区三区激情 | 欧美精三区欧美精三区| 免费在线观看日韩欧美| 2020国产精品| 99久久er热在这里只有精品15 | 麻豆成人久久精品二区三区小说| 91精品婷婷国产综合久久竹菊| 日韩av网站在线观看| 精品日产卡一卡二卡麻豆| 国产99久久久国产精品潘金网站| 综合av第一页| 欧美视频在线观看一区| 久久不见久久见中文字幕免费| 久久精品人人做| 91网站视频在线观看| 香港成人在线视频| 久久久久国产免费免费| 欧美亚洲愉拍一区二区| 日本欧美在线观看| 国产精品三级av| 在线不卡a资源高清| 国产精品一卡二卡在线观看| 亚洲黄色小说网站| 精品国产自在久精品国产| 99久久精品情趣| 日本不卡免费在线视频| 国产精品三级视频| 56国语精品自产拍在线观看| 国产东北露脸精品视频| 亚洲图片欧美综合| 久久久久亚洲蜜桃| 欧美日韩一区 二区 三区 久久精品| 欧美a一区二区| 亚洲欧洲无码一区二区三区| 日韩一区二区三区视频| 色一情一乱一乱一91av| 老司机精品视频在线| 中文字幕一区二区在线播放 | 亚洲一区二区三区视频在线| 精品日韩在线一区| 欧美三电影在线| 粉嫩一区二区三区在线看| 天堂一区二区在线| 亚洲欧洲三级电影| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 亚洲国产精品精华液网站| 国产亚洲精品bt天堂精选| 欧美狂野另类xxxxoooo| 成人av在线网站| 免费观看成人av| 夜夜精品视频一区二区| 国产欧美一区二区三区在线老狼| 欧美久久久一区| 91久久精品午夜一区二区| 成人影视亚洲图片在线| 蜜桃视频一区二区三区在线观看| 亚洲一线二线三线久久久| 国产精品天干天干在观线| 精品黑人一区二区三区久久| 欧美日韩视频不卡| 色狠狠桃花综合| av一二三不卡影片| 国产suv一区二区三区88区| 激情综合一区二区三区| 日本强好片久久久久久aaa| 亚洲va欧美va人人爽午夜| 综合久久国产九一剧情麻豆| 欧美极品aⅴ影院| 久久婷婷久久一区二区三区| 4438亚洲最大| 欧美老女人在线| 欧美群妇大交群的观看方式| 色www精品视频在线观看| 91色在线porny| 91视频.com| 色先锋aa成人| 一本到高清视频免费精品| aaa亚洲精品| 色综合亚洲欧洲| 91麻豆自制传媒国产之光| 色诱亚洲精品久久久久久| 91免费小视频| 欧美优质美女网站|