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

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

?? ltmain.sh

?? 2009 ROBOCUP 仿真2DSERVER 源碼
?? SH
?? 第 1 頁 / 共 5 頁
字號:
# ltmain.sh - Provide generalized library-building support services.# NOTE: Changing this file will not affect anything until you rerun configure.## Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,# 2007, 2008  Free Software Foundation, Inc.# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU# General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.## As a special exception to the GNU General Public License, if you# distribute this file as part of a program that contains a# configuration script generated by Autoconf, you may include it under# the same distribution terms that you use for the rest of that program.basename="s,^.*/,,g"# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh# is ksh but when the shell is invoked as "sh" and the current value of# the _XPG environment variable is not equal to 1 (one), the special# positional parameter $0, within a function call, is the name of the# function.progpath="$0"# The name of this program:progname=`echo "$progpath" | $SED $basename`modename="$progname"# Global variables:EXIT_SUCCESS=0EXIT_FAILURE=1PROGRAM=ltmain.shPACKAGE=libtoolVERSION=1.5.26TIMESTAMP=" (1.1220.2.493 2008/02/01 16:58:18)"# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE).if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then  emulate sh  NULLCMD=:  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which  # is contrary to our usage.  Disable this feature.  alias -g '${1+"$@"}'='"$@"'  setopt NO_GLOB_SUBSTelse  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esacfiBIN_SH=xpg4; export BIN_SH # for Tru64DUALCASE=1; export DUALCASE # for MKS sh# Check that we have a working $echo.if test "X$1" = X--no-reexec; then  # Discard the --no-reexec flag, and continue.  shiftelif test "X$1" = X--fallback-echo; then  # Avoid inline document here, it may be left over  :elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then  # Yippee, $echo works!  :else  # Restart under the correct shell, and then maybe $echo will work.  exec $SHELL "$progpath" --no-reexec ${1+"$@"}fiif test "X$1" = X--fallback-echo; then  # used as fallback echo  shift  cat <<EOF$*EOF  exit $EXIT_SUCCESSfidefault_mode=help="Try \`$progname --help' for more information."magic="%%%MAGIC variable%%%"mkdir="mkdir"mv="mv -f"rm="rm -f"# Sed substitution that helps us do robust quoting.  It backslashifies# metacharacters that are still active within double-quoted strings.Xsed="${SED}"' -e 1s/^X//'sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'# test EBCDIC or ASCIIcase `echo X|tr X '\101'` in A) # ASCII based system    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr  SP2NL='tr \040 \012'  NL2SP='tr \015\012 \040\040'  ;; *) # EBCDIC based system  SP2NL='tr \100 \n'  NL2SP='tr \r\n \100\100'  ;;esac# NLS nuisances.# Only set LANG and LC_ALL to C if already set.# These must not be set unconditionally because not all systems understand# e.g. LANG=C (notably SCO).# We save the old values to restore during execute mode.lt_env=for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGESdo  eval "if test \"\${$lt_var+set}\" = set; then	  save_$lt_var=\$$lt_var	  lt_env=\"$lt_var=\$$lt_var \$lt_env\"	  $lt_var=C	  export $lt_var	fi"doneif test -n "$lt_env"; then  lt_env="env $lt_env"fi# Make sure IFS has a sensible defaultlt_nl=''IFS=" 	$lt_nl"if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then  $echo "$modename: not configured to build any kind of library" 1>&2  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2  exit $EXIT_FAILUREfi# Global variables.mode=$default_modenonopt=prev=prevopt=run=show="$echo"show_help=execute_dlfiles=duplicate_deps=nopreserve_args=lo2o="s/\\.lo\$/.${objext}/"o2lo="s/\\.${objext}\$/.lo/"extracted_archives=extracted_serial=0###################################### Shell function definitions:# This seems to be the best place for them# func_mktempdir [string]# Make a temporary directory that won't clash with other running# libtool processes, and avoids race conditions if possible.  If# given, STRING is the basename for that directory.func_mktempdir (){    my_template="${TMPDIR-/tmp}/${1-$progname}"    if test "$run" = ":"; then      # Return a directory name, but don't create it in dry-run mode      my_tmpdir="${my_template}-$$"    else      # If mktemp works, use that first and foremost      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`      if test ! -d "$my_tmpdir"; then	# Failing that, at least try and use $RANDOM to avoid a race	my_tmpdir="${my_template}-${RANDOM-0}$$"	save_mktempdir_umask=`umask`	umask 0077	$mkdir "$my_tmpdir"	umask $save_mktempdir_umask      fi      # If we're not in dry-run mode, bomb out on failure      test -d "$my_tmpdir" || {        $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2	exit $EXIT_FAILURE      }    fi    $echo "X$my_tmpdir" | $Xsed}# func_win32_libid arg# return the library type of file 'arg'## Need a lot of goo to handle *both* DLLs and import libs# Has to be a shell function in order to 'eat' the argument# that is supplied when $file_magic_command is called.func_win32_libid (){  win32_libid_type="unknown"  win32_fileres=`file -L $1 2>/dev/null`  case $win32_fileres in  *ar\ archive\ import\ library*) # definitely import    win32_libid_type="x86 archive import"    ;;  *ar\ archive*) # could be an import, or static    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \      $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then      win32_nmres=`eval $NM -f posix -A $1 | \	$SED -n -e '1,100{		/ I /{			s,.*,import,			p			q			}		}'`      case $win32_nmres in      import*)  win32_libid_type="x86 archive import";;      *)        win32_libid_type="x86 archive static";;      esac    fi    ;;  *DLL*)    win32_libid_type="x86 DLL"    ;;  *executable*) # but shell scripts are "executable" too...    case $win32_fileres in    *MS\ Windows\ PE\ Intel*)      win32_libid_type="x86 DLL"      ;;    esac    ;;  esac  $echo $win32_libid_type}# func_infer_tag arg# 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.# arg is usually of the form 'gcc ...'func_infer_tag (){    if test -n "$available_tags" && test -z "$tagname"; then      CC_quoted=      for arg in $CC; do	case $arg in	  *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  arg="\"$arg\""	  ;;	esac	CC_quoted="$CC_quoted $arg"      done      case $@ 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` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;      # 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$" < "$progpath" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"	    CC_quoted=	    for arg in $CC; do	    # Double-quote args containing other shell metacharacters.	    case $arg in	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	      arg="\"$arg\""	      ;;	    esac	    CC_quoted="$CC_quoted $arg"	  done	    # user sometimes does CC=<HOST>-gcc so we need to match that to 'gcc'	    trimedcc=`echo ${CC} | $SED -e "s/${host}-//g"`	    # and sometimes libtool has CC=<HOST>-gcc but user does CC=gcc	    extendcc=${host}-${CC}	    # and sometimes libtool has CC=<OLDHOST>-gcc but user has CC=<NEWHOST>-gcc  	    # (Gentoo-specific hack because we always export $CHOST)	    mungedcc=${CHOST-${host}}-${trimedcc}	    case "$@ " in	      "cc "* | " cc "* | "${host}-cc "* | " ${host}-cc "*|\	      "gcc "* | " gcc "* | "${host}-gcc "* | " ${host}-gcc "*)	      tagname=CC	      break ;;	      "$trimedcc "* | " $trimedcc "* | "`$echo $trimedcc` "* | " `$echo $trimedcc` "*|\	      "$extendcc "* | " $extendcc "* | "`$echo $extendcc` "* | " `$echo $extendcc` "*|\	      "$mungedcc "* | " $mungedcc "* | "`$echo $mungedcc` "* | " `$echo $mungedcc` "*|\	      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)	      # 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 $EXIT_FAILURE#        else#          $echo "$modename: using $tagname tagged configuration"	fi	;;      esac    fi}# func_extract_an_archive dir oldlibfunc_extract_an_archive (){    f_ex_an_ar_dir="$1"; shift    f_ex_an_ar_oldlib="$1"    $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"    $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then     :    else      $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2      exit $EXIT_FAILURE    fi}# func_extract_archives gentop oldlib ...func_extract_archives (){    my_gentop="$1"; shift    my_oldlibs=${1+"$@"}    my_oldobjs=""    my_xlib=""    my_xabs=""    my_xdir=""    my_status=""    $show "${rm}r $my_gentop"    $run ${rm}r "$my_gentop"    $show "$mkdir $my_gentop"    $run $mkdir "$my_gentop"    my_status=$?    if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then      exit $my_status    fi    for my_xlib in $my_oldlibs; do      # Extract the objects.      case $my_xlib in	[\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;	*) my_xabs=`pwd`"/$my_xlib" ;;      esac      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`      my_xlib_u=$my_xlib      while :; do        case " $extracted_archives " in	*" $my_xlib_u "*)	  extracted_serial=`expr $extracted_serial + 1`	  my_xlib_u=lt$extracted_serial-$my_xlib ;;	*) break ;;	esac      done      extracted_archives="$extracted_archives $my_xlib_u"      my_xdir="$my_gentop/$my_xlib_u"      $show "${rm}r $my_xdir"      $run ${rm}r "$my_xdir"      $show "$mkdir $my_xdir"      $run $mkdir "$my_xdir"      exit_status=$?      if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then	exit $exit_status      fi      case $host in      *-darwin*)	$show "Extracting $my_xabs"	# Do not bother doing anything if just a dry run	if test -z "$run"; then	  darwin_orig_dir=`pwd`	  cd $my_xdir || exit $?	  darwin_archive=$my_xabs	  darwin_curdir=`pwd`	  darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`	  darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`	  if test -n "$darwin_arches"; then 	    darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`	    darwin_arch=	    $show "$darwin_base_archive has multiple architectures $darwin_arches"	    for darwin_arch in  $darwin_arches ; do	      mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"	      lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"	      cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"	      func_extract_an_archive "`pwd`" "${darwin_base_archive}"	      cd "$darwin_curdir"	      $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"	    done # $darwin_arches      ## Okay now we have a bunch of thin objects, gotta fatten them up :)	    darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`	    darwin_file=	    darwin_files=	    for darwin_file in $darwin_filelist; do	      darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`	      lipo -create -output "$darwin_file" $darwin_files	    done # $darwin_filelist	    ${rm}r unfat-$$	    cd "$darwin_orig_dir"	  else	    cd "$darwin_orig_dir" 	    func_extract_an_archive "$my_xdir" "$my_xabs"	  fi # $darwin_arches	fi # $run	;;      *)        func_extract_an_archive "$my_xdir" "$my_xabs"        ;;      esac      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`    done    func_extract_archives_result="$my_oldobjs"}# End of Shell function definitions###################################### Darwin suckseval std_shrext=\"$shrext_cmds\"disable_libs=no# Parse our command line options once, thoroughly.while test "$#" -gt 0do  arg="$1"  shift  case $arg in  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;  *) optarg= ;;  esac  # If the previous option needs an argument, assign it.  if test -n "$prev"; then    case $prev in    execute_dlfiles)      execute_dlfiles="$execute_dlfiles $arg"      ;;    tag)      tagname="$arg"      preserve_args="${preserve_args}=$arg"      # Check whether tagname contains only valid characters      case $tagname in      *[!-_A-Za-z0-9,/]*)	$echo "$progname: invalid tag name: $tagname" 1>&2	exit $EXIT_FAILURE	;;      esac      case $tagname in      CC)	# Don't test for the "default" C tag, as we know, it's there, but	# not specially marked.	;;      *)	if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then	  taglist="$taglist $tagname"	  # Evaluate the configuration.	  eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"	else	  $echo "$progname: ignoring unknown tag $tagname" 1>&2	fi	;;      esac      ;;    *)      eval "$prev=\$arg"      ;;    esac    prev=

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕中文字幕一区| 日韩视频在线观看一区二区| 亚洲国产激情av| 国产丶欧美丶日本不卡视频| 欧美激情中文字幕一区二区| 国产精品资源在线看| 国产精品私人自拍| 91亚洲精品乱码久久久久久蜜桃| 亚洲美女淫视频| 6080国产精品一区二区| 久久99精品国产.久久久久| 国产日产欧美一区二区视频| gogogo免费视频观看亚洲一| 亚洲一二三专区| 日韩欧美一区电影| 国产成人精品1024| 一区二区三区在线视频免费观看| 欧美日本一区二区| 国模少妇一区二区三区| 一色屋精品亚洲香蕉网站| 欧美艳星brazzers| 狠狠色丁香久久婷婷综| 国产精品欧美久久久久无广告| 91成人网在线| 精品一区二区三区av| 1024精品合集| 欧美mv日韩mv国产网站| 不卡的电影网站| 亚洲成人av资源| 国产日产亚洲精品系列| 欧美日韩中文另类| 风流少妇一区二区| 图片区小说区国产精品视频| 久久久一区二区三区| 欧美怡红院视频| 粗大黑人巨茎大战欧美成人| 丝袜美腿亚洲色图| 国产精品热久久久久夜色精品三区| 精品污污网站免费看| 国产高清亚洲一区| 日韩va亚洲va欧美va久久| 国产精品久久久久久福利一牛影视| 欧美狂野另类xxxxoooo| 99re66热这里只有精品3直播 | 午夜国产精品影院在线观看| 久久综合色8888| 欧美区一区二区三区| www.视频一区| 国产一区二区在线观看免费| 同产精品九九九| 自拍偷拍国产精品| 国产欧美日韩精品a在线观看| 欧美美女一区二区| 色综合久久久久综合| 国产成人免费在线视频| 老司机午夜精品| 亚洲成人1区2区| 亚洲视频免费看| 国产精品美女久久福利网站| 26uuu国产电影一区二区| 91精品国产全国免费观看 | 亚洲免费毛片网站| 国产欧美综合在线观看第十页 | 色综合视频在线观看| 国产一区二区三区电影在线观看| 日韩精品一二三| 一区二区在线观看免费视频播放| 国产精品污网站| 国产日韩精品一区二区三区在线| 精品国产亚洲在线| 久久夜色精品一区| 久久色中文字幕| 欧美电影精品一区二区| 欧美一区二区久久| 日韩一区二区三区四区| 欧美日本韩国一区| 欧美日韩国产高清一区二区三区 | 麻豆国产91在线播放| 日韩高清中文字幕一区| 同产精品九九九| 日本视频一区二区| 日本成人在线一区| 蜜桃在线一区二区三区| 久久丁香综合五月国产三级网站| 日韩精品一区第一页| 日本美女一区二区三区视频| 日韩综合一区二区| 美女一区二区在线观看| 麻豆视频一区二区| 精品在线你懂的| 国产成人亚洲综合a∨婷婷 | 美女一区二区三区在线观看| 美国十次综合导航| 国产黄色91视频| 91在线观看高清| 欧美片网站yy| 精品国产乱码久久久久久久| 国产婷婷精品av在线| 中文字幕亚洲区| 香港成人在线视频| 国产乱码一区二区三区| av午夜一区麻豆| 欧美喷水一区二区| 久久亚洲一区二区三区四区| 国产精品五月天| 亚洲伊人色欲综合网| 免费欧美在线视频| 国产a久久麻豆| 精品视频1区2区| 久久亚洲一区二区三区明星换脸 | 日本乱人伦一区| 日韩一区国产二区欧美三区| 国产色91在线| 亚洲午夜一二三区视频| 精品无人码麻豆乱码1区2区 | 亚洲色图.com| 免费xxxx性欧美18vr| av在线这里只有精品| 欧美年轻男男videosbes| 国产日韩欧美制服另类| 亚洲一区二区高清| 国产一二精品视频| 欧美日韩中文字幕一区二区| 国产日韩欧美一区二区三区乱码| 亚洲欧洲精品一区二区三区| 日韩精品电影在线| 成人动漫精品一区二区| 91.成人天堂一区| 成人免费在线视频观看| 久久aⅴ国产欧美74aaa| 欧美自拍丝袜亚洲| 国产欧美一区二区三区网站| 亚洲chinese男男1069| av在线播放成人| 精品久久国产老人久久综合| 亚洲一区二区视频在线| 成人综合婷婷国产精品久久蜜臀 | 激情小说欧美图片| 欧美主播一区二区三区美女| 国产午夜精品在线观看| 蜜臀久久99精品久久久久宅男| 91在线观看视频| 国产日韩av一区二区| 免费人成黄页网站在线一区二区| 色婷婷综合久久久久中文| 久久精品在这里| 狠狠色丁香婷婷综合| 欧美一区二区三区免费| 亚洲丰满少妇videoshd| 99精品国产91久久久久久| 久久久久久亚洲综合| 久久精品国产亚洲a| 欧美精品丝袜久久久中文字幕| 亚洲精选视频免费看| 99天天综合性| 欧美激情艳妇裸体舞| 国产高清久久久| 国产亚洲一本大道中文在线| 久久99久久99精品免视看婷婷| 91精品国产一区二区三区香蕉| 亚洲国产精品久久人人爱蜜臀| 99国产精品99久久久久久| 中文字幕精品三区| 国产a视频精品免费观看| 久久久久青草大香线综合精品| 精品一区二区三区蜜桃| 日韩美一区二区三区| 麻豆精品视频在线观看视频| 欧美一区二区三区色| 日产国产欧美视频一区精品 | 99精品久久免费看蜜臀剧情介绍| 欧美激情一区二区在线| 成人精品一区二区三区中文字幕| 国产午夜一区二区三区| 国产福利电影一区二区三区| 亚洲国产精品麻豆| 欧美午夜片在线观看| 五月天激情小说综合| 日韩情涩欧美日韩视频| 国产美女精品一区二区三区| 中文av字幕一区| 91色综合久久久久婷婷| 亚洲午夜激情网页| 欧美一区二区人人喊爽| 国产美女主播视频一区| 亚洲天堂av一区| 欧美撒尿777hd撒尿| 免费人成精品欧美精品| 久久久一区二区三区捆绑**| 丰满岳乱妇一区二区三区| 亚洲色图19p| 69堂成人精品免费视频| 国产精品99久久久久久久女警| 国产精品麻豆久久久| 欧美日精品一区视频| 国内久久婷婷综合| 亚洲猫色日本管| 欧美一级久久久久久久大片| 国产91清纯白嫩初高中在线观看| 伊人开心综合网|