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

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

?? ltmain.sh

?? jrtplib3.3.0的實現
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  ;;	esac	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  case :$dllsearchpath: in	  *":$dir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dir";;	  esac	  ;;	esac	continue	;;      -l*)	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then	  case $host in	  *-*-cygwin* | *-*-pw32* | *-*-beos*)	    # These systems don't actually have a C or math library (as such)	    continue	    ;;	  *-*-mingw* | *-*-os2*)	    # These systems don't actually have a C library (as such)	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)	    # Do not include libc due to us having libc/libc_r.	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-rhapsody* | *-*-darwin1.[012])	    # Rhapsody C and math libraries are in the System framework	    deplibs="$deplibs -framework System"	    continue	  esac	elif test "X$arg" = "X-lc_r"; then	 case $host in	 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)	   # Do not include libc_r directly, use -pthread flag.	   continue	   ;;	 esac	fi	deplibs="$deplibs $arg"	continue	;;      # Tru64 UNIX uses -model [arg] to determine the layout of C++      # classes, name mangling, and exception handling.      -model)	compile_command="$compile_command $arg"	compiler_flags="$compiler_flags $arg"	finalize_command="$finalize_command $arg"	prev=xcompiler	continue	;;     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	compiler_flags="$compiler_flags $arg"	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -module)	module=yes	continue	;;      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler      # -r[0-9][0-9]* specifies the processor on the SGI compiler      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler      # +DA*, +DD* enable 64-bit mode on the HP compiler      # -q* pass through compiler args for the IBM compiler      # -m* pass through architecture-specific compiler args for GCC      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac        compile_command="$compile_command $arg"        finalize_command="$finalize_command $arg"        if test "$with_gcc" = "yes" ; then          compiler_flags="$compiler_flags $arg"        fi        continue        ;;      -shrext)	prev=shrext	continue	;;      -no-fast-install)	fast_install=no	continue	;;      -no-install)	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  # The PATH hackery in wrapper scripts is required on Windows	  # in order for the loader to find any dlls it needs.	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2	  fast_install=no	  ;;	*) no_install=yes ;;	esac	continue	;;      -no-undefined)	allow_undefined=no	continue	;;      -objectlist)	prev=objectlist	continue	;;      -o) prev=output ;;      -precious-files-regex)	prev=precious_regex	continue	;;      -release)	prev=release	continue	;;      -rpath)	prev=rpath	continue	;;      -R)	prev=xrpath	continue	;;      -R*)	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`	# We need an absolute path.	case $dir in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  $echo "$modename: only absolute run-paths are allowed" 1>&2	  exit $EXIT_FAILURE	  ;;	esac	case "$xrpath " in	*" $dir "*) ;;	*) xrpath="$xrpath $dir" ;;	esac	continue	;;      -static)	# The effects of -static are defined in a previous loop.	# We used to do the same as -all-static on platforms that	# didn't have a PIC flag, but the assumption that the effects	# would be equivalent was wrong.  It would break on at least	# Digital Unix and AIX.	continue	;;      -thread-safe)	thread_safe=yes	continue	;;      -version-info)	prev=vinfo	continue	;;      -version-number)	prev=vinfo	vinfo_number=yes	continue	;;      -Wc,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Wl,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $wl$flag"	  linker_flags="$linker_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Xcompiler)	prev=xcompiler	continue	;;      -Xlinker)	prev=xlinker	continue	;;      -XCClinker)	prev=xcclinker	continue	;;      # Some other compiler flag.      -* | +*)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac	;;      *.$objext)	# A standard object.	objs="$objs $arg"	;;      *.lo)	# A libtool-controlled object.	# Check to see that this really is a libtool object.	if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then	  pic_object=	  non_pic_object=	  # Read the .lo file	  # If there is no directory component, then add one.	  case $arg in	  */* | *\\*) . $arg ;;	  *) . ./$arg ;;	  esac	  if test -z "$pic_object" || \	     test -z "$non_pic_object" ||	     test "$pic_object" = none && \	     test "$non_pic_object" = none; then	    $echo "$modename: cannot find name of object for \`$arg'" 1>&2	    exit $EXIT_FAILURE	  fi	  # Extract subdirectory from the argument.	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$xdir" = "X$arg"; then	    xdir= 	  else	    xdir="$xdir/"	  fi	  if test "$pic_object" != none; then	    # Prepend the subdirectory the object is found in.	    pic_object="$xdir$pic_object"	    if test "$prev" = dlfiles; then	      if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then		dlfiles="$dlfiles $pic_object"		prev=		continue	      else		# If libtool objects are unsupported, then we need to preload.		prev=dlprefiles	      fi	    fi	    # CHECK ME:  I think I busted this.  -Ossama	    if test "$prev" = dlprefiles; then	      # Preload the old-style object.	      dlprefiles="$dlprefiles $pic_object"	      prev=	    fi	    # A PIC object.	    libobjs="$libobjs $pic_object"	    arg="$pic_object"	  fi	  # Non-PIC object.	  if test "$non_pic_object" != none; then	    # Prepend the subdirectory the object is found in.	    non_pic_object="$xdir$non_pic_object"	    # A standard non-PIC object	    non_pic_objects="$non_pic_objects $non_pic_object"	    if test -z "$pic_object" || test "$pic_object" = none ; then	      arg="$non_pic_object"	    fi	  fi	else	  # Only an error if not doing a dry-run.	  if test -z "$run"; then	    $echo "$modename: \`$arg' is not a valid libtool object" 1>&2	    exit $EXIT_FAILURE	  else	    # Dry-run case.	    # Extract subdirectory from the argument.	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	    if test "X$xdir" = "X$arg"; then	      xdir=	    else	      xdir="$xdir/"	    fi	    pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`	    non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`	    libobjs="$libobjs $pic_object"	    non_pic_objects="$non_pic_objects $non_pic_object"	  fi	fi	;;      *.$libext)	# An archive.	deplibs="$deplibs $arg"	old_deplibs="$old_deplibs $arg"	continue	;;      *.la)	# A libtool-controlled library.	if test "$prev" = dlfiles; then	  # This library was specified with -dlopen.	  dlfiles="$dlfiles $arg"	  prev=	elif test "$prev" = dlprefiles; then	  # The library was specified with -dlpreopen.	  dlprefiles="$dlprefiles $arg"	  prev=	else	  deplibs="$deplibs $arg"	fi	continue	;;      # Some other compiler argument.      *)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac	;;      esac # arg      # Now actually substitute the argument into the commands.      if test -n "$arg"; then	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"      fi    done # argument parsing loop    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    fi    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then      eval arg=\"$export_dynamic_flag_spec\"      compile_command="$compile_command $arg"      finalize_command="$finalize_command $arg"    fi    oldlibs=    # calculate the name of the file, without its directory    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`    libobjs_save="$libobjs"    if test -n "$shlibpath_var"; then      # get the directories listed in $shlibpath_var      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`    else      shlib_search_path=    fi    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`    if test "X$output_objdir" = "X$output"; then      output_objdir="$objdir"    else      output_objdir="$output_objdir/$objdir"    fi    # Create the object directory.    if test ! -d "$output_objdir"; then      $show "$mkdir $output_objdir"      $run $mkdir $output_objdir      status=$?      if test "$status" -ne 0 && test ! -d "$output_objdir"; then	exit $status      fi    fi    # Determine the type of output    case $output in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE      ;;    *.$libext) linkmode=oldlib ;;    *.lo | *.$objext) linkmode=obj ;;    *.la) linkmode=lib ;;    *) linkmode=prog ;; # Anything else should be a program.    esac    case $host in    *cygwin* | *mingw* | *pw32*)      # don't eliminate duplications in $postdeps and $predeps      duplicate_compiler_generated_deps=yes      ;;    *)      duplicate_compiler_generated_deps=$duplicate_deps      ;;    esac    specialdeplibs=    libs=    # Find all interdependent deplibs by searching for libraries    # that are linked more than once (e.g. -la -lb -la)    for deplib in $deplibs; do      if test "X$duplicate_deps" = "Xyes" ; then	case "$libs " in	*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	esac      fi      libs="$libs $deplib"    done    if test "$linkmode" = lib; then      libs="$predeps $libs $compiler_lib_search_path $postdeps"      # Compute libraries that are listed more than once in $predeps      # $postdeps and mark them as special (i.e., whose duplicates are      # not to be eliminated).      pre_post_deps=      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then	for pre_post_dep in $predeps $postdeps; do	  case "$pre_post_deps " in	  *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;	  esac	  pre_post_deps="$pre_post_deps $pre_post_dep"	done      fi      pre_post_deps=    fi

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久免费的精品国产v∧| 国产真实精品久久二三区| 91在线免费视频观看| 国产女人aaa级久久久级| 高清国产一区二区| 国产精品视频看| 在线观看一区日韩| 亚洲成人午夜影院| 欧美一区二区福利在线| 国产自产视频一区二区三区| 中文字幕av一区二区三区免费看| 国产成人精品影视| 国产精品乱码妇女bbbb| 一本大道久久a久久综合| 亚洲国产精品一区二区www在线| 欧美精品久久一区二区三区| 国产精品一区二区果冻传媒| 国产精品国产馆在线真实露脸| 91久久精品一区二区二区| 午夜精品福利视频网站| 精品福利一区二区三区| 不卡的av电影在线观看| 亚洲国产欧美一区二区三区丁香婷| 在线播放欧美女士性生活| 国产一区二区三区久久久 | 日韩一区二区在线看片| 韩国欧美国产1区| 亚洲激情图片一区| 91精品国产综合久久久久久久久久| 国产成人在线网站| 一区二区三区在线播| 精品欧美一区二区久久| 成人精品高清在线| 日韩中文字幕亚洲一区二区va在线| 久久精品亚洲精品国产欧美kt∨| 欧美亚洲自拍偷拍| 国产精品一二二区| 婷婷丁香久久五月婷婷| 国产精品视频在线看| 日韩视频一区二区在线观看| 91在线观看美女| 国产自产2019最新不卡| 午夜精品福利一区二区三区蜜桃| 国产精品进线69影院| 日韩午夜在线观看| 91麻豆精品视频| 国产精品1区2区3区| 日日摸夜夜添夜夜添国产精品| 中文字幕成人网| 精品国产一区二区国模嫣然| 欧美三区在线观看| 成人禁用看黄a在线| 国内成人免费视频| 日韩在线一区二区三区| 亚洲国产中文字幕| 中文字幕中文字幕在线一区| 久久综合国产精品| 91精品福利在线一区二区三区| 色综合色狠狠天天综合色| 国产91精品欧美| 国产乱色国产精品免费视频| 蜜桃免费网站一区二区三区| 亚洲va国产va欧美va观看| 亚洲人午夜精品天堂一二香蕉| 国产欧美日本一区视频| 精品国产乱码久久久久久蜜臀 | www.欧美日韩| 国内精品久久久久影院薰衣草| 日韩精品乱码免费| 亚洲午夜国产一区99re久久| 一区二区欧美视频| 亚洲精品伦理在线| 亚洲日本一区二区| 综合在线观看色| 国产精品理论片在线观看| 欧美激情综合五月色丁香小说| 久久亚洲欧美国产精品乐播| 久久一区二区三区四区| 精品美女被调教视频大全网站| 欧美大度的电影原声| 精品国产乱子伦一区| 久久女同性恋中文字幕| 久久久久久免费毛片精品| 国产亚洲va综合人人澡精品| 国产欧美一二三区| 欧美激情一区在线| 中文字幕在线观看一区二区| 亚洲天天做日日做天天谢日日欢 | 久久久久久久久一| 久久婷婷成人综合色| 久久精品亚洲国产奇米99| 国产日韩av一区| 亚洲欧洲无码一区二区三区| 亚洲另类在线制服丝袜| 亚洲午夜免费福利视频| 日本特黄久久久高潮| 九九热在线视频观看这里只有精品| 韩国精品一区二区| 国产盗摄女厕一区二区三区| 91碰在线视频| 欧美美女网站色| 国产亚洲一区二区在线观看| 国产精品毛片a∨一区二区三区| 一区二区三区欧美视频| 三级久久三级久久久| 国产一区啦啦啦在线观看| 粉嫩在线一区二区三区视频| 色美美综合视频| 91精品国产色综合久久不卡电影 | 欧美极品少妇xxxxⅹ高跟鞋| 亚洲视频中文字幕| 日韩成人伦理电影在线观看| 国内不卡的二区三区中文字幕| 99国产精品久久久| 欧美无砖专区一中文字| 久久―日本道色综合久久| 亚洲精品美腿丝袜| 麻豆一区二区在线| 99国产精品99久久久久久| 777a∨成人精品桃花网| 国产精品区一区二区三| 日韩精品国产精品| 成人妖精视频yjsp地址| 欧美日韩夫妻久久| 国产精品久久久久久久裸模 | 麻豆精品在线视频| 成人av在线资源| 精品国产一区二区亚洲人成毛片| 亚洲美女免费视频| 国产精品123| 91精品国产综合久久久蜜臀图片| 一色桃子久久精品亚洲| 久久国产夜色精品鲁鲁99| 欧美羞羞免费网站| 国产精品少妇自拍| 狠狠色丁香九九婷婷综合五月 | 日韩视频在线你懂得| 亚洲视频中文字幕| 国产一本一道久久香蕉| 欧美日韩精品一二三区| 国产精品国产自产拍高清av| 久草中文综合在线| 欧美日韩一区不卡| 亚洲女同女同女同女同女同69| 国模一区二区三区白浆| 3d动漫精品啪啪一区二区竹菊| 亚洲精品中文字幕乱码三区 | 国产精品国产三级国产普通话蜜臀 | 久久国产成人午夜av影院| 色欧美88888久久久久久影院| 国产精品丝袜黑色高跟| 极品少妇xxxx精品少妇| 91麻豆精品国产91久久久久| 亚洲色图欧美偷拍| 国产91色综合久久免费分享| 精品99久久久久久| 午夜电影网亚洲视频| 欧亚洲嫩模精品一区三区| 国产精品三级电影| 国产成人三级在线观看| 久久亚洲精华国产精华液| 美女国产一区二区三区| 日韩午夜av一区| 奇米影视一区二区三区小说| 6080亚洲精品一区二区| 久久综合久久久久88| 狠狠网亚洲精品| 久久久精品黄色| 国产精品理论片在线观看| 一区二区免费在线| 99精品久久只有精品| 中文字幕一区日韩精品欧美| 成人激情校园春色| 国产精品久久久久三级| av电影天堂一区二区在线 | 欧美午夜精品一区二区三区| 亚洲影视在线观看| 欧美亚洲国产bt| 天天av天天翘天天综合网色鬼国产| 91成人免费在线| 天天色图综合网| 日韩欧美高清在线| 国产自产v一区二区三区c| 日本一区二区三区电影| 成a人片亚洲日本久久| 亚洲色图视频网| 在线观看视频91| 秋霞午夜av一区二区三区| 日韩精品一区国产麻豆| 国产一区二区三区国产| 中文字幕欧美三区| 91日韩精品一区| 日韩电影在线观看一区| 精品盗摄一区二区三区| 国产精品99久久久久久宅男| 亚洲色图视频免费播放| 在线不卡免费欧美| 国产精品羞羞答答xxdd| 亚洲夂夂婷婷色拍ww47 | 国产精品一区一区三区|