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

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

?? ltmain.sh

?? JPEG source code converts the image into compressed format
?? SH
?? 第 1 頁 / 共 5 頁
字號:
        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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人高清免费观看| 久久久精品国产99久久精品芒果| 欧美日韩色一区| 日韩精品资源二区在线| 欧美韩日一区二区三区四区| 亚洲一卡二卡三卡四卡五卡| 久久国产精品99精品国产| 日本不卡一区二区| 成人中文字幕在线| 欧美日本在线播放| 亚洲国产精品传媒在线观看| 五月婷婷久久综合| 丁香亚洲综合激情啪啪综合| 99久久国产综合精品女不卡 | 在线日韩国产精品| 亚洲精品在线免费观看视频| 亚洲激情自拍视频| 成人一区二区三区视频| 91在线播放网址| 亚洲精品一区二区三区四区高清| 亚洲精品国产品国语在线app| 国产一区欧美日韩| 91精品国产91综合久久蜜臀| 亚洲女人****多毛耸耸8| 男男成人高潮片免费网站| 欧美日韩国产高清一区二区 | 国产成人欧美日韩在线电影 | 精品久久国产老人久久综合| 亚洲综合视频网| 色婷婷综合久久久中文一区二区| 国产欧美1区2区3区| 国内精品久久久久影院一蜜桃| 91麻豆精品国产自产在线观看一区| 国产精品大尺度| 成人美女视频在线观看18| 欧美一区二区三区成人| 亚洲自拍与偷拍| 欧美日韩大陆在线| 日本欧美大码aⅴ在线播放| 91麻豆精品91久久久久同性| 亚洲成人一区二区在线观看| 欧美三级午夜理伦三级中视频| 亚洲激情校园春色| 欧美精品一二三区| 精品一区二区三区在线播放视频 | 亚洲成av人片www| 欧美高清www午色夜在线视频| 午夜伦理一区二区| 精品国产3级a| 99久久精品国产网站| 亚洲午夜电影网| 欧美日韩一区不卡| 久88久久88久久久| 中文字幕一区二区日韩精品绯色| 91久久精品一区二区三区| 日日骚欧美日韩| 久久九九国产精品| 色呦呦国产精品| 黄色日韩三级电影| 亚洲精品亚洲人成人网| 911精品国产一区二区在线| 国产传媒欧美日韩成人| 亚洲精品成a人| 欧美亚洲高清一区| 国产乱码精品1区2区3区| 一区二区三区成人在线视频| 欧美一区二区三区四区在线观看 | 久久99精品久久久久| 亚洲日本欧美天堂| 欧美一级高清大全免费观看| 不卡一区二区在线| 韩国v欧美v日本v亚洲v| 亚洲一区视频在线| 日韩欧美在线一区二区三区| eeuss鲁片一区二区三区在线看| 男人的j进女人的j一区| 亚洲最大色网站| 亚洲欧洲精品一区二区三区| 久久综合视频网| 色综合网色综合| 高清不卡在线观看| 国产成人精品在线看| 激情综合色综合久久| 三级欧美在线一区| 亚洲精品综合在线| 亚洲精选视频在线| 中文字幕av一区二区三区高| 久久久久久久免费视频了| 日韩三级av在线播放| 欧美日本国产视频| 欧美日本在线观看| 91精品国产黑色紧身裤美女| 在线欧美日韩精品| 欧美三级视频在线播放| 9191久久久久久久久久久| 欧美精品一卡二卡| 欧美mv和日韩mv的网站| 久久久久亚洲综合| 国产欧美日韩另类一区| 26uuu亚洲| 精品成人在线观看| 美女久久久精品| 东方欧美亚洲色图在线| 色94色欧美sute亚洲线路一ni| 精品视频全国免费看| 色婷婷亚洲综合| 欧美二区在线观看| 精品99一区二区三区| 自拍偷拍国产精品| 视频一区二区国产| 国产成人一区二区精品非洲| 99精品桃花视频在线观看| 欧美精品1区2区| 久久一二三国产| 不卡一区在线观看| 欧美日韩国产乱码电影| 久久综合99re88久久爱| 亚洲制服丝袜在线| 国产精品影音先锋| 在线一区二区视频| 午夜激情久久久| 91在线精品一区二区三区| 精品国产免费视频| 亚洲精品国产无天堂网2021| 欧美日韩国产小视频| 久久久久亚洲综合| 久久草av在线| 色婷婷亚洲婷婷| 精品美女在线播放| 香蕉久久一区二区不卡无毒影院| 国产成人99久久亚洲综合精品| 欧美一区永久视频免费观看| 亚洲欧美一区二区在线观看| 国内精品自线一区二区三区视频| proumb性欧美在线观看| 久久精品一区蜜桃臀影院| 久久综合综合久久综合| 欧美日本国产一区| 亚洲成人av福利| 欧美日韩卡一卡二| 午夜成人在线视频| 7777精品伊人久久久大香线蕉最新版 | 日韩三级免费观看| 日本不卡123| 日韩视频中午一区| 日本一道高清亚洲日美韩| 欧美一卡二卡三卡| 麻豆成人久久精品二区三区红| 91国偷自产一区二区开放时间| 亚洲精品国产一区二区精华液| 91黄视频在线观看| 亚洲va欧美va国产va天堂影院| 欧美视频中文字幕| 日韩精品一二三区| 久久亚洲综合av| 粉嫩av一区二区三区粉嫩 | 国产精品资源网站| 国产精品乱人伦中文| 色哟哟精品一区| 天天av天天翘天天综合网色鬼国产 | 91黄视频在线| 日本sm残虐另类| 久久免费电影网| 91免费观看视频| 日韩影院在线观看| 看电视剧不卡顿的网站| 国产精品你懂的在线| 欧美丝袜丝nylons| 久久国产精品无码网站| 中文字幕日韩欧美一区二区三区| 91极品美女在线| 国产精品一区二区三区网站| 一区二区三区资源| 精品国一区二区三区| av亚洲精华国产精华| 首页国产欧美久久| 国产精品视频yy9299一区| 91麻豆精品91久久久久久清纯| 国产福利一区二区三区视频| 亚洲图片欧美视频| 国产精品夫妻自拍| 国产日产欧美精品一区二区三区| 精品视频免费看| 91免费精品国自产拍在线不卡| 亚洲精品国产精华液| 国产亚洲欧美激情| 日韩欧美一二三区| 欧美综合天天夜夜久久| 成人app下载| 成人黄色一级视频| 懂色中文一区二区在线播放| 蜜桃视频在线观看一区| 亚洲免费高清视频在线| 国产精品夫妻自拍| 国产欧美一区二区精品婷婷 | 国产综合色产在线精品| 久久国产精品99精品国产| 麻豆国产91在线播放| 另类的小说在线视频另类成人小视频在线 | 波多野结衣亚洲|