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

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

?? ltmain.sh

?? JPEG source code converts the image into compressed format
?? SH
?? 第 1 頁 / 共 5 頁
字號:
        library_names=
        old_library=
        # If there is no directory component, then add one.
        case "$file" in
        */* | *\\*) . $file ;;
        *) . ./$file ;;
        esac

        # Add the libdir to current_libdirs if it is the destination.
        if test "X$destdir" = "X$libdir"; then
          case "$current_libdirs " in
          *" $libdir "*) ;;
          *) current_libdirs="$current_libdirs $libdir" ;;
          esac
        else
          # Note the libdir as a future libdir.
          case "$future_libdirs " in
          *" $libdir "*) ;;
          *) future_libdirs="$future_libdirs $libdir" ;;
          esac
        fi

        dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/"
        test "X$dir" = "X$file/" && dir=
        dir="$dir$objdir"

        # See the names of the shared library.
        set dummy $library_names
        if test -n "$2"; then
          realname="$2"
          shift
          shift

          # Install the shared library and build the symlinks.
          $show "$install_prog $dir/$realname $destdir/$realname"
          $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $?
          test "X$dlname" = "X$realname" && dlname=

          if test $# -gt 0; then
            # Delete the old symlinks.
            rmcmd="$rm"
            for linkname
            do
              rmcmd="$rmcmd $destdir/$linkname"
            done
            $show "$rmcmd"
            $run $rmcmd

            # ... and create new ones.
            for linkname
            do
              test "X$dlname" = "X$linkname" && dlname=
              $show "(cd $destdir && $LN_S $realname $linkname)"
              $run eval "(cd $destdir && $LN_S $realname $linkname)"
            done
          fi

          if test -n "$dlname"; then
            # Install the dynamically-loadable library.
            $show "$install_prog $dir/$dlname $destdir/$dlname"
            $run eval "$install_prog $dir/$dlname $destdir/$dlname" || exit $?
          fi

          # Do each command in the postinstall commands.
          lib="$destdir/$realname"
          eval cmds=\"$postinstall_cmds\"
          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

        # Install the pseudo-library for information purposes.
        name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
        $show "$install_prog $file $destdir/$name"
        $run eval "$install_prog $file $destdir/$name" || exit $?

        # Maybe install the static library, too.
        test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
        ;;

      *.lo)
        # Install (i.e. copy) a libtool object.

        # Figure out destination file name, if it wasn't already specified.
        if test -n "$destname"; then
          destfile="$destdir/$destname"
        else
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
          destfile="$destdir/$destfile"
        fi

        # Deduce the name of the destination old-style object file.
        case "$destfile" in
        *.lo)
          staticdest=`$echo "X$destfile" | $Xsed -e 's/\.lo$/\.o/'`
          ;;
        *.o)
          staticdest="$destfile"
          destfile=
          ;;
        *)
          $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
          $echo "$help" 1>&2
          exit 1
          ;;
        esac

        # Install the libtool object if requested.
        if test -n "$destfile"; then
          $show "$install_prog $file $destfile"
          $run eval "$install_prog $file $destfile" || exit $?
        fi

        # Install the old object if enabled.
        if test "$build_old_libs" = yes; then
          # Deduce the name of the old-style object file.
          staticobj=`$echo "X$file" | $Xsed -e 's/\.lo$/\.o/'`

          $show "$install_prog $staticobj $staticdest"
          $run eval "$install_prog \$staticobj \$staticdest" || exit $?
        fi
        exit 0
        ;;

      *)
        # Do a test to see if this is really a libtool program.
        if (sed -e '4q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then
          link_against_libtool_libs=
          finalize_command=

          # If there is no directory component, then add one.
          case "$file" in
          */* | *\\*) . $file ;;
          *) . ./$file ;;
          esac

          # Check the variables that should have been set.
          if test -z "$link_against_libtool_libs" || test -z "$finalize_command"; then
            $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
            exit 1
          fi

          finalize=yes
          for lib in $link_against_libtool_libs; do
            # Check to see that each library is installed.
            libdir=
            if test -f "$lib"; then
              # If there is no directory component, then add one.
              case "$lib" in
              */* | *\\*) . $lib ;;
              *) . ./$lib ;;
              esac
            fi
            libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
            if test -z "$libdir"; then
              $echo "$modename: warning: \`$lib' contains no -rpath information" 1>&2
            elif test -f "$libfile"; then :
            else
              $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
              finalize=no
            fi
          done

          if test "$hardcode_action" = relink; then
            if test "$finalize" = yes; then
              $echo "$modename: warning: relinking \`$file' on behalf of your buggy system linker" 1>&2
              $show "$finalize_command"
              if $run eval "$finalize_command"; then :
              else
                $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
                continue
              fi
              file="$objdir/$file"T
            else
              $echo "$modename: warning: cannot relink \`$file' on behalf of your buggy system linker" 1>&2
            fi
          else
            # Install the binary that we compiled earlier.
	    file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
          fi
        fi

        $show "$install_prog$stripme $file $dest"
        $run eval "$install_prog\$stripme \$file \$dest" || exit $?
        ;;
      esac
    done

    for file in $staticlibs; do
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`

      # Set up the ranlib parameters.
      oldlib="$destdir/$name"

      $show "$install_prog $file $oldlib"
      $run eval "$install_prog \$file \$oldlib" || exit $?

      # Do each command in the postinstall commands.
      eval cmds=\"$old_postinstall_cmds\"
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
      for cmd in $cmds; do
        IFS="$save_ifs"
        $show "$cmd"
        $run eval "$cmd" || exit $?
      done
      IFS="$save_ifs"
    done

    if test -n "$future_libdirs"; then
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
    fi

    if test -n "$current_libdirs"; then
      # Maybe just do a dry run.
      test -n "$run" && current_libdirs=" -n$current_libdirs"
      exec $SHELL $0 --finish$current_libdirs
      exit 1
    fi

    exit 0
    ;;

  # libtool finish mode
  finish)
    modename="$modename: finish"
    libdirs="$nonopt"

    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
      for dir
      do
        libdirs="$libdirs $dir"
      done

      for libdir in $libdirs; do
	if test -n "$finish_cmds"; then
	  # Do each command in the finish commands.
	  eval cmds=\"$finish_cmds\"
          IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
          for cmd in $cmds; do
            IFS="$save_ifs"
            $show "$cmd"
            $run eval "$cmd"
          done
          IFS="$save_ifs"
	fi
	if test -n "$finish_eval"; then
	  # Do the single finish_eval.
	  eval cmds=\"$finish_eval\"
	  $run eval "$cmds"
	fi
      done
    fi

    echo "------------------------------------------------------------------------------"
    echo "Libraries have been installed in:"
    for libdir in $libdirs; do
      echo "   $libdir"
    done
    echo
    echo "To link against installed libraries in a given directory, LIBDIR,"
    echo "you must use the \`-LLIBDIR' flag during linking."
    echo
    echo " You will also need to do one of the following:"
    if test -n "$shlibpath_var"; then
      echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
      echo "     during execution"
    fi
    if test -n "$runpath_var"; then
      echo "   - add LIBDIR to the \`$runpath_var' environment variable"
      echo "     during linking"
    fi
    if test -n "$hardcode_libdir_flag_spec"; then
      libdir=LIBDIR
      eval flag=\"$hardcode_libdir_flag_spec\"

      echo "   - use the \`$flag' linker flag"
    fi
    if test -f /etc/ld.so.conf; then
      echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
    fi
    echo
    echo "See any operating system documentation about shared libraries for"
    echo "more information, such as the ld(1) and ld.so(8) manual pages."
    echo "------------------------------------------------------------------------------"
    exit 0
    ;;

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

    # The first argument is the command name.
    cmd="$nonopt"
    if test -z "$cmd"; then
      $echo "$modename: you must specify a COMMAND" 1>&2
      $echo "$help"
      exit 1
    fi

    # Handle -dlopen flags immediately.
    for file in $execute_dlfiles; do
      if test -f "$file"; then :
      else
	$echo "$modename: \`$file' is not a file" 1>&2
	$echo "$help" 1>&2
	exit 1
      fi

      dir=
      case "$file" in
      *.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: \`$lib' is not a valid libtool archive" 1>&2
          $echo "$help" 1>&2
          exit 1
        fi

	# Read the libtool library.
	dlname=
	library_names=

        # If there is no directory component, then add one.
	case "$file" in
	*/* | *\\*) . $file ;;
        *) . ./$file ;;
	esac

	# Skip this library if it cannot be dlopened.
	if test -z "$dlname"; then
	  # Warn if it was a shared library.
	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
	  continue
	fi

	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.

	if test -f "$dir/$objdir/$dlname"; then
	  dir="$dir/$objdir"
	else
	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
	  exit 1
	fi
	;;

      *.lo)
	# Just add the directory containing the .lo file.
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.
	;;

      *)
	$echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
        continue
	;;
      esac

      # Get the absolute pathname.
      absdir=`cd "$dir" && pwd`
      test -n "$absdir" && dir="$absdir"

      # Now add the directory to shlibpath_var.
      if eval "test -z \"\$$shlibpath_var\""; then
	eval "$shlibpath_var=\"\$dir\""
      else
	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
      fi
    done

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

    # Check if any of the arguments is a wrapper script.
    args=
    for file
    do
      case "$file" in
      -*) ;;
      *)
        # Do a test to see if this is really a libtool program.
        if (sed -e '4q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then
	  # If there is no directory component, then add one.
	  case "$file" in
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

	  # Transform arg to wrapped name.
	  file="$progdir/$program"
	fi
        ;;
      esac
      # Quote arguments (to preserve shell metacharacters).
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
      args="$args \"$file\""
    done

    if test -z "$run"; then
      # Export the shlibpath_var.
      eval "export $shlibpath_var"

      # Now actually exec the command.
      eval "exec \$cmd$args"

      $echo "$modename: cannot exec \$cmd$args"
      exit 1
    else
      # Display what would be done.
      eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
      $echo "export $shlibpath_var"
      $echo "$cmd$args"
      exit 0
    fi
    ;;

  # libtool uninstall mode
  uninstall)
    modename="$modename: uninstall"
    rm="$nonopt"
    files=

    for arg
    do
      case "$arg" in
      -*) rm="$rm $arg" ;;
      *) files="$files $arg" ;;
      esac
    done

    if test -z "$rm"; then
      $echo "$modena

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美天堂一区二区三区| 欧美日韩性生活| 欧美aⅴ一区二区三区视频| 久久先锋影音av鲁色资源网| 色综合中文字幕国产| 日韩高清在线观看| 亚洲人成精品久久久久久| 日韩欧美在线1卡| 日本道免费精品一区二区三区| 韩国av一区二区三区在线观看| 亚洲精品视频在线观看网站| 国产欧美一区二区精品性色超碰 | 日本不卡一区二区三区| 亚洲欧洲美洲综合色网| 久久这里只有精品视频网| 欧美日韩精品一区二区在线播放| 99久久久国产精品| 国产成人精品三级| 国产一区欧美日韩| 麻豆国产91在线播放| 午夜免费久久看| 亚洲国产精品一区二区久久恐怖片 | 91行情网站电视在线观看高清版| 国产精品456露脸| 久久国产麻豆精品| 日韩黄色在线观看| 亚洲成av人片在线观看无码| 亚洲欧美视频在线观看视频| 中文字幕电影一区| 国产日产精品一区| 欧美激情综合五月色丁香| 久久午夜羞羞影院免费观看| 精品国产乱码久久久久久1区2区 | 日韩午夜激情免费电影| 欧美日韩国产系列| 在线观看国产精品网站| 色偷偷久久一区二区三区| bt7086福利一区国产| 99视频在线观看一区三区| va亚洲va日韩不卡在线观看| 成人网在线免费视频| 成人高清免费在线播放| 成人精品鲁一区一区二区| 福利电影一区二区| kk眼镜猥琐国模调教系列一区二区| 国产福利电影一区二区三区| 国产麻豆精品在线观看| 国产成人精品一区二| 国产盗摄一区二区三区| 成人丝袜高跟foot| 9i看片成人免费高清| 99久久精品国产导航| 色天天综合色天天久久| 欧美三级韩国三级日本三斤| 欧美精品乱码久久久久久| 欧美一区日本一区韩国一区| 欧美草草影院在线视频| 久久久久久久精| 亚洲欧洲日韩一区二区三区| 一区二区三区av电影| 天天色图综合网| 精品一区二区三区不卡| 粉嫩一区二区三区在线看| 91网站黄www| 欧美日韩和欧美的一区二区| 欧美一区二区成人6969| 久久久91精品国产一区二区三区| 国产精品网站在线播放| 一二三四区精品视频| 麻豆成人久久精品二区三区小说| 国产福利一区在线| 91久久精品网| 欧美v日韩v国产v| 136国产福利精品导航| 一区二区免费看| 九九在线精品视频| 成人免费观看av| 欧美中文字幕久久| 精品sm在线观看| 亚洲色图19p| 久久精品噜噜噜成人av农村| 菠萝蜜视频在线观看一区| 欧美视频日韩视频在线观看| 欧美变态口味重另类| 综合中文字幕亚洲| 美女性感视频久久| 色哟哟国产精品| 精品国精品国产尤物美女| 亚洲欧美一区二区视频| 毛片av中文字幕一区二区| 91视频观看免费| 精品国产乱码久久久久久免费| 亚洲情趣在线观看| 韩国av一区二区三区四区| 欧美区视频在线观看| 国产精品久久影院| 激情六月婷婷久久| 欧美日韩视频在线观看一区二区三区 | 蜜臀国产一区二区三区在线播放| 成人午夜私人影院| 日韩免费看的电影| 一个色妞综合视频在线观看| 成人影视亚洲图片在线| 欧美一区二区三区在线看| 一区二区在线观看免费| 国产成人超碰人人澡人人澡| 6080yy午夜一二三区久久| 亚洲精品中文在线影院| 久久无码av三级| 亚洲成av人片在线观看无码| 色综合久久久久久久| 国产三级一区二区| 激情小说欧美图片| 91精品午夜视频| 亚洲成人在线免费| 欧美午夜精品免费| 国产精品国产三级国产aⅴ中文| 看国产成人h片视频| 6080国产精品一区二区| 亚洲小说欧美激情另类| 91免费视频网| 中文字幕一区二区不卡| 国产不卡视频一区二区三区| 精品美女一区二区| 美女国产一区二区三区| 91精品国产日韩91久久久久久| 亚洲综合久久久久| 在线一区二区视频| 亚洲国产婷婷综合在线精品| 色哟哟国产精品| 一区二区三区在线视频免费观看| 99精品视频在线播放观看| √…a在线天堂一区| 91色视频在线| 一区二区三区四区乱视频| 在线观看视频一区| 亚洲成a人片综合在线| 欧美撒尿777hd撒尿| 亚洲国产综合91精品麻豆| 在线观看成人小视频| 亚洲aⅴ怡春院| 日韩一区二区不卡| 久久99精品国产91久久来源| 日韩欧美国产麻豆| 国内外精品视频| 国产精品素人一区二区| 成人av网站免费观看| 亚洲另类春色国产| 色婷婷av一区| 五月婷婷久久综合| 日韩一区二区精品在线观看| 麻豆免费看一区二区三区| 欧美精品一区二区在线播放 | 蜜桃精品在线观看| 欧美电影免费观看高清完整版在 | 国产成人精品免费| 中文字幕在线一区| 日本高清无吗v一区| 午夜免费久久看| 久久这里只有精品首页| 91性感美女视频| 日本不卡的三区四区五区| 国产日韩综合av| 色噜噜狠狠成人中文综合| 天堂一区二区在线免费观看| 精品国产乱码久久| 成人精品免费看| 午夜电影久久久| 欧美精品一区二区蜜臀亚洲| 99精品视频免费在线观看| 亚洲第一搞黄网站| 国产视频视频一区| 91久久精品日日躁夜夜躁欧美| 日本vs亚洲vs韩国一区三区二区| 久久久久亚洲蜜桃| 精品视频在线免费观看| 极品少妇一区二区| 亚洲午夜在线观看视频在线| 精品国偷自产国产一区| 色综合久久综合网97色综合| 日韩av不卡在线观看| 国产精品视频九色porn| 欧美精品亚洲二区| 成人精品视频一区二区三区尤物| 亚洲大片一区二区三区| 国产三级欧美三级| 欧美一区二区在线免费观看| 成人午夜av电影| 秋霞电影网一区二区| 中文字幕一区不卡| 日韩亚洲国产中文字幕欧美| 99精品视频在线免费观看| 麻豆成人91精品二区三区| 中文字幕一区二区三区不卡在线| 91精品婷婷国产综合久久竹菊| 91啦中文在线观看| 韩国精品一区二区| 日韩专区中文字幕一区二区| 国产精品久久久久久久久动漫| 欧美电视剧在线观看完整版|