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

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

?? ltmain.sh

?? 常好且全面的jpeg圖像壓縮算法
?? SH
?? 第 1 頁 / 共 5 頁
字號:

      # Parse the version information argument.
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'
      set dummy $vinfo
      IFS="$save_ifs"

      if test -n "$5"; then
        $echo "$modename: too many parameters to \`-version-info'" 1>&2
        $echo "$help" 1>&2
        exit 1
      fi

      test -n "$2" && current="$2"
      test -n "$3" && revision="$3"
      test -n "$4" && age="$4"

      # Check that each of the things are valid numbers.
      case "$current" in
      0 | [1-9] | [1-9][0-9]*) ;;
      *)
        $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
        $echo "$modename: \`$vinfo' is not valid version information" 1>&2
        exit 1
        ;;
      esac

      case "$revision" in
      0 | [1-9] | [1-9][0-9]*) ;;
      *)
        $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
        $echo "$modename: \`$vinfo' is not valid version information" 1>&2
        exit 1
        ;;
      esac

      case "$age" in
      0 | [1-9] | [1-9][0-9]*) ;;
      *)
        $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
        $echo "$modename: \`$vinfo' is not valid version information" 1>&2
        exit 1
        ;;
      esac

      if test $age -gt $current; then
        $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
        $echo "$modename: \`$vinfo' is not valid version information" 1>&2
        exit 1
      fi

      # Calculate the version variables.
      version_vars="version_type current age revision"
      case "$version_type" in
      none) ;;

      linux)
        version_vars="$version_vars major versuffix"
        major=`expr $current - $age`
        versuffix="$major.$age.$revision"
        ;;

      osf)
        version_vars="$version_vars versuffix verstring"
        major=`expr $current - $age`
        versuffix="$current.$age.$revision"
        verstring="$versuffix"

        # Add in all the interfaces that we are compatible with.
        loop=$age
        while test $loop != 0; do
          iface=`expr $current - $loop`
          loop=`expr $loop - 1`
          verstring="$verstring:${iface}.0"
        done

        # Make executables depend on our current version.
        verstring="$verstring:${current}.0"
        ;;

      sunos)
        version_vars="$version_vars major versuffix"
        major="$current"
        versuffix="$current.$revision"
        ;;

      *)
        $echo "$modename: unknown library version type \`$version_type'" 1>&2
        echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
        exit 1
        ;;
      esac

      # Create the output directory, or remove our outputs if we need to.
      if test -d $objdir; then
        $show "$rm $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*"
        $run $rm $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*
      else
        $show "$mkdir $objdir"
        $run $mkdir $objdir
	status=$?
	if test $status -eq 0 || test -d $objdir; then :
	else
	  exit $status
	fi
      fi

      # Check to see if the archive will have undefined symbols.
      if test "$allow_undefined" = yes; then
        if test "$allow_undefined_flag" = unsupported; then
          $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
          build_libtool_libs=no
	  build_old_libs=yes
        fi
      else
        # Don't allow undefined symbols.
        allow_undefined_flag="$no_undefined_flag"
      fi

      # Add libc to deplibs on all systems.
      dependency_libs="$deplibs"
      deplibs="$deplibs -lc"

      if test "$build_libtool_libs" = yes; then
        # Get the real and link names of the library.
        eval library_names=\"$library_names_spec\"
        set dummy $library_names
        realname="$2"
        shift; shift

        if test -n "$soname_spec"; then
          eval soname=\"$soname_spec\"
        else
          soname="$realname"
        fi

        lib="$objdir/$realname"
	for link
	do
	  linknames="$linknames $link"
	done

        # Use standard objects if they are PIC.
        test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//g'`

        # Do each of the archive commands.
        eval cmds=\"$archive_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"

        # Create links to the real library.
        for linkname in $linknames; do
          $show "(cd $objdir && $LN_S $realname $linkname)"
          $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $?
        done

        # If -export-dynamic was specified, set the dlname.
        if test "$export_dynamic" = yes; then
          # On all known operating systems, these are identical.
          dlname="$soname"
        fi
      fi

      # Now set the variables for building old libraries.
      oldlib="$objdir/$libname.a"
      ;;

    *.lo | *.o)
      if test -n "$link_against_libtool_libs"; then
        $echo "$modename: error: cannot link libtool libraries into reloadable objects" 1>&2
        exit 1
      fi

      if test -n "$deplibs"; then
        $echo "$modename: warning: \`-l' and \`-L' are ignored while creating objects" 1>&2
      fi

      if test -n "$dlfiles$dlprefiles"; then
        $echo "$modename: warning: \`-dlopen' is ignored while creating objects" 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 -n "$rpath"; then
        $echo "$modename: warning: \`-rpath' is ignored while creating objects" 1>&2
      fi

      if test -n "$vinfo"; then
        $echo "$modename: warning: \`-version-info' is ignored while creating objects" 1>&2
      fi

      if test -n "$release"; then
        $echo "$modename: warning: \`-release' is ignored while creating objects" 1>&2
      fi

      case "$output" in
      *.lo)
        if test -n "$objs"; then
          $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
          exit 1
        fi
        libobj="$output"
        obj=`$echo "X$output" | $Xsed -e 's/\.lo$/.o/'`
        ;;
      *)
        libobj=
        obj="$output"
        ;;
      esac

      # Delete the old objects.
      $run $rm $obj $libobj

      # Create the old-style object.
      reload_objs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^       ]*\.a //g' -e 's/\.lo /.o /g' -e 's/ $//g'`

      output="$obj"
      eval cmds=\"$reload_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"

      # Exit if we aren't doing a library object file.
      test -z "$libobj" && exit 0

      if test "$build_libtool_libs" != yes; then
        # Create an invalid libtool object if no PIC, so that we don't
        # accidentally link it into a program.
        $show "echo timestamp > $libobj"
        $run eval "echo timestamp > $libobj" || exit $?
        exit 0
      fi

      if test -n "$pic_flag"; then
        # Only do commands if we really have different PIC objects.
        reload_objs="$libobjs"
        output="$libobj"
        eval cmds=\"$reload_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"
      else
        # Just create a symlink.
        $show "$LN_S $obj $libobj"
        $run $LN_S $obj $libobj || exit 1
      fi

      exit 0
      ;;

    *)
      if test -n "$vinfo"; then
        $echo "$modename: warning: \`-version-info' is ignored while linking programs" 1>&2
      fi

      if test -n "$release"; then
        $echo "$modename: warning: \`-release' is ignored while creating objects" 1>&2
      fi

      if test -n "$rpath"; then
	# If the user specified any rpath flags, then add them.
	for libdir in $rpath; do
          if test -n "$hardcode_libdir_flag_spec"; then
            if test -n "$hardcode_libdir_separator"; then
              if test -z "$hardcode_libdirs"; then
                # Put the magic libdir with the hardcode flag.
                hardcode_libdirs="$libdir"
                libdir="@HARDCODE_LIBDIRS@"
              else
                # Just accumulate the unique libdirs.
		case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
		*"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		  ;;
		*)
		  hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		  ;;
		esac
                libdir=
              fi
            fi

            if test -n "$libdir"; then
              eval flag=\"$hardcode_libdir_flag_spec\"

              compile_command="$compile_command $flag"
              finalize_command="$finalize_command $flag"
            fi
          elif test -n "$runpath_var"; then
            case "$perm_rpath " in
            *" $libdir "*) ;;
            *) perm_rpath="$perm_rpath $libdir" ;;
            esac
          fi
	done
      fi

      # Substitute the hardcoded libdirs into the compile commands.
      if test -n "$hardcode_libdir_separator"; then
	compile_command=`$echo "X$compile_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
      fi

      if test -n "$libobjs" && test "$build_old_libs" = yes; then
        # Transform all the library objects into standard objects.
        compile_command=`$echo "X$compile_command " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//'`
        finalize_command=`$echo "X$finalize_command " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//'`
      fi

      if test "$export_dynamic" = yes && test -n "$NM" && test -n "$global_symbol_pipe"; then
        dlsyms="${output}S.c"
      else
        dlsyms=
      fi

      if test -n "$dlsyms"; then
        # Add our own program objects to the preloaded list.
        dlprefiles=`$echo "X$objs$dlprefiles " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//'`

	# Discover the nlist of each of the dlfiles.
        nlist="$objdir/${output}.nm"

	if test -d $objdir; then
	  $show "$rm $nlist ${nlist}T"
	  $run $rm "$nlist" "${nlist}T"
	else
	  $show "$mkdir $objdir"
	  $run $mkdir $objdir
	  status=$?
	  if test $status -eq 0 || test -d $objdir; then :
	  else
	    exit $status
	  fi
	fi

        for arg in $dlprefiles; do
	  $show "extracting global C symbols from \`$arg'"
	  $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
        done

        # Parse the name list into a source file.
        $show "creating $objdir/$dlsyms"
        if test -z "$run"; then
	  # Make sure we at least have an empty file.
	  test -f "$nlist" || : > "$nlist"

	  # Try sorting and uniquifying the output.
	  if sort "$nlist" | uniq > "$nlist"T; then
	    mv -f "$nlist"T "$nlist"
	    wcout=`wc "$nlist" 2>/dev/null`
	    count=`echo "X$wcout" | $Xsed -e 's/^[ 	]*\([0-9][0-9]*\).*$/\1/'`
	    (test "$count" -ge 0) 2>/dev/null || count=-1
	  else
	    $rm "$nlist"T
	    count=-1
	  fi

	  case "$dlsyms" in
	  "") ;;
	  *.c)
	    $echo > "$objdir/$dlsyms" "\
/* $dlsyms - symbol resolution table for \`$output' dlsym emulation. */
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION */

#ifdef __cplusplus
extern \"C\" {
#endif

/* Prevent the only kind of declaration conflicts we can make. */
#define dld_preloaded_symbol_count some_other_symbol
#define dld_preloaded_symbols some_other_symbol

/* External symbol declarations for the compiler. */\
"

	    if test -f "$nlist"; then
	      sed -e 's/^.* \(.*\)$/extern char \1;/' < "$nlist" >> "$objdir/$dlsyms"
	    else
	      echo '/* NONE */' >> "$objdir/$dlsyms"
	    fi

	    $echo >> "$objdir/$dlsyms" "\

#undef dld_preloaded_symbol_count
#undef dld_preloaded_symbols

#if defined (__STDC__) && __STDC__
# define __ptr_t void *
#else
# define __ptr_t char *
#endif

/* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
int dld_preloaded_symbol_count = $count;

/* The mapping between symbol names and symbols. */
struct {
  char *name;
  __ptr_t address;
}
dld_preloaded_symbols[] =
{\
"

	    if test -f "$nlist"; then
	      sed 's/^\(.*\) \(.*\)$/  {"\1", (__ptr_t) \&\2},/' < "$nlist" >> "$objdir/$dlsyms"
	    fi

	    $echo >> "$objdir/$dlsyms" "\
  {0, (__ptr_t) 0}
};

#ifdef __cplusplus
}
#endif\
"
	    ;;

	  *)
	    $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
	    exit 1
	    ;;
	  esac
        fi

        # Now compile the dynamic symbol file.
        $show "(cd $objdir && $CC -c$no_builtin_flag \"$dlsyms\")"
        $run eval '(cd $objdir && $CC -c$no_builtin_flag "$dlsyms")' || exit $?

        # Transform the symbol file into the correct name.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
粉嫩aⅴ一区二区三区四区五区 | 日本美女一区二区三区| 卡一卡二国产精品| 色婷婷av一区二区三区gif| 日韩一区二区免费高清| 亚洲特黄一级片| 激情另类小说区图片区视频区| 色就色 综合激情| 久久精子c满五个校花| 日本伊人色综合网| 欧美在线免费视屏| 亚洲欧美日韩人成在线播放| 国产一区 二区| 日韩色在线观看| 丝袜国产日韩另类美女| 欧美四级电影在线观看| 国产精品高潮久久久久无| 国产精品亚洲人在线观看| 日韩精品一区二区三区在线| 亚洲不卡av一区二区三区| 91欧美激情一区二区三区成人| 国产女同性恋一区二区| 国产精品一级二级三级| 日韩精品一区二区三区蜜臀 | 欧美日韩不卡一区二区| 亚洲男女一区二区三区| 北条麻妃一区二区三区| 中文字幕精品在线不卡| 国产精品18久久久久久久久| 久久久www成人免费无遮挡大片| 蜜桃av噜噜一区二区三区小说| 5月丁香婷婷综合| 丝瓜av网站精品一区二区| 欧美日本在线视频| 日韩电影免费在线看| 91精品国产综合久久福利| 日韩av电影免费观看高清完整版 | 一本色道久久综合狠狠躁的推荐| 中文字幕精品在线不卡| 99久久综合国产精品| 911精品产国品一二三产区| 亚洲h精品动漫在线观看| 欧美日本精品一区二区三区| 日日夜夜免费精品视频| 欧美刺激午夜性久久久久久久 | 亚洲电影一区二区三区| 8x8x8国产精品| 美女网站在线免费欧美精品| xnxx国产精品| 99视频一区二区三区| 亚洲精品国产第一综合99久久| 在线视频一区二区免费| 成人的网站免费观看| 国产精品日韩精品欧美在线| 97se亚洲国产综合自在线不卡| 一区二区三区四区视频精品免费 | 日韩精品一级二级| 日韩美女一区二区三区四区| 国产在线一区二区综合免费视频| 国产午夜三级一区二区三| www.欧美日韩国产在线| 亚洲成av人片在线| 久久午夜国产精品| 一本在线高清不卡dvd| 蜜桃91丨九色丨蝌蚪91桃色| 欧美激情中文字幕| 91 com成人网| 成人高清免费在线播放| 亚洲成a人片在线观看中文| 精品国产乱码久久久久久蜜臀| 成人av在线网| 日韩av一级电影| 最近中文字幕一区二区三区| 欧美日韩aaaaaa| 91在线你懂得| 国产伦精品一区二区三区免费| 亚洲免费观看在线视频| 精品欧美一区二区在线观看| 色综合色狠狠天天综合色| 精品亚洲成a人| 国产精品一区免费视频| 午夜精品久久久久久久99樱桃| 国产午夜亚洲精品不卡| 欧美一级专区免费大片| 99久久久久久| 国产精选一区二区三区| 青青青爽久久午夜综合久久午夜| 亚洲三级电影全部在线观看高清| 欧美成人vps| 5月丁香婷婷综合| 欧美视频自拍偷拍| 91美女在线看| 99精品欧美一区二区蜜桃免费| 国产一区欧美二区| 日韩不卡一区二区三区| 亚洲国产日韩一区二区| 亚洲天堂免费看| 国产精品美女久久福利网站| 精品成a人在线观看| 日韩一区二区三| 在线综合视频播放| 欧美日韩免费观看一区三区| 91麻豆蜜桃一区二区三区| 成人国产精品视频| 成人国产精品免费观看动漫 | 精品动漫一区二区三区在线观看| 欧美剧在线免费观看网站| 91福利精品第一导航| 91老师片黄在线观看| 粉嫩高潮美女一区二区三区| 国产黑丝在线一区二区三区| 精品一区二区三区的国产在线播放| 亚洲国产美女搞黄色| 亚洲高清免费视频| 亚洲国产裸拍裸体视频在线观看乱了| 中文字幕日韩精品一区| 中文字幕亚洲电影| 亚洲精品美腿丝袜| 亚洲一二三四久久| 天天色综合成人网| 久久99热这里只有精品| 久久99久久99精品免视看婷婷 | 不卡电影一区二区三区| 成人短视频下载| 日本大香伊一区二区三区| 色av成人天堂桃色av| 欧美在线你懂得| 日韩欧美国产综合一区 | 日韩一本二本av| 2017欧美狠狠色| 亚洲国产成人一区二区三区| 国产精品嫩草影院com| 亚洲色图第一区| 日本不卡一区二区| 国产高清亚洲一区| 99re这里都是精品| 欧美日韩国产高清一区二区三区 | 欧美老人xxxx18| 欧美一级欧美三级在线观看| 精品国产一区二区国模嫣然| 国产日韩欧美a| 一区二区三区中文免费| 午夜国产精品影院在线观看| 日本v片在线高清不卡在线观看| 欧美精品日韩精品| 日韩欧美一二三四区| 国产日韩欧美一区二区三区乱码| 亚洲视频免费观看| 蜜桃在线一区二区三区| 成a人片亚洲日本久久| 在线观看不卡视频| 久久亚洲综合色| 亚洲一区欧美一区| 国产成人在线视频网站| 欧美日韩国产一级二级| 国产丝袜美腿一区二区三区| 18成人在线观看| 另类调教123区| 色老汉一区二区三区| 精品少妇一区二区三区日产乱码 | 欧美精品一区二区三区在线播放 | 精品国产乱码久久久久久久久| 中文字幕精品三区| 日韩av电影一区| 色呦呦国产精品| 国产精品网站导航| 蜜臀精品一区二区三区在线观看| 色婷婷av久久久久久久| 国产亚洲1区2区3区| 奇米精品一区二区三区四区| 一本大道av伊人久久综合| 国产日韩欧美a| 精品一区二区日韩| 欧美日韩精品福利| 综合久久久久综合| 福利一区二区在线| 日韩一区二区在线免费观看| 亚洲一区二区三区中文字幕| 高潮精品一区videoshd| 亚洲精品在线观| 久色婷婷小香蕉久久| 91精品免费在线| 亚洲成av人片一区二区| 日本精品裸体写真集在线观看| 国产欧美一区二区精品性色超碰 | 91丨九色丨国产丨porny| 久久综合九色综合97婷婷女人 | 亚洲一区二区三区在线| av欧美精品.com| 中文字幕一区在线| 丁香啪啪综合成人亚洲小说 | 日韩欧美一级片| 日韩 欧美一区二区三区| 欧美日本乱大交xxxxx| 亚洲大片精品永久免费| 欧美精选一区二区| 日日骚欧美日韩| 7777精品伊人久久久大香线蕉最新版| 亚洲一区二区五区| 欧美日韩精品一区视频|