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

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

?? ltmain.sh

?? 基于SDL實現的GUI
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  else	    case "$xrpath " in	    *" $arg "*) ;;	    *) xrpath="$xrpath $arg" ;;	    esac	  fi	  prev=	  continue	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi      prevarg="$arg"      case "$arg" in      -all-static)	if test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -allow-undefined)	# FIXME: remove this flag sometime in the future.	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2	continue	;;      -avoid-version)	avoid_version=yes	continue	;;      -dlopen)	prev=dlfiles	continue	;;      -dlpreopen)	prev=dlprefiles	continue	;;      -export-dynamic)	export_dynamic=yes	continue	;;      -export-symbols | -export-symbols-regex)	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	  $echo "$modename: not more than one -exported-symbols argument allowed"	  exit 1	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	continue	;;      -L*)	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`	# We need an absolute path.	case "$dir" in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  absdir=`cd "$dir" && pwd`	  if test -z "$absdir"; then	    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	    absdir="$dir"	  fi	  dir="$absdir"	  ;;	esac	case " $deplibs " in	*" $arg "*) ;;	*) deplibs="$deplibs $arg";;	esac	case " $lib_search_path " in	*" $dir "*) ;;	*) lib_search_path="$lib_search_path $dir";;	esac	case "$host" in	*-*-cygwin* | *-*-mingw* | *-*-os2*)	  dllsearchdir=`cd "$dir" && pwd || echo "$dir"`	  case ":$dllsearchpath:" in	  ::) dllsearchpath="$dllsearchdir";;	  *":$dllsearchdir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dllsearchdir";;	  esac	  ;;	esac	;;      -l*)	if test "$arg" = "-lc"; then	  case "$host" in	  *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos* |*-*-freebsd* )	    # These systems don't actually have c library (as such)	    continue	    ;;	  esac	elif test "$arg" = "-lm"; then	  case "$host" in	  *-*-cygwin* | *-*-beos*)	    # These systems don't actually have math library (as such)	    continue	    ;;	  esac	fi	deplibs="$deplibs $arg"	;;      -module)	module=yes	continue	;;      -no-undefined)	allow_undefined=no	continue	;;      -o) prev=output ;;      -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 1	  ;;	esac	case "$xrpath " in	*" $dir "*) ;;	*) xrpath="$xrpath $dir" ;;	esac	continue	;;      -static)	# If we have no pic_flag, then this is the same as -all-static.	if test -z "$pic_flag" && test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -thread-safe)	thread_safe=yes	continue	;;      -version-info)	prev=vinfo	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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)	  arg="\"$arg\""	  ;;	esac	;;      *.o | *.obj | *.a | *.lib)	# A standard object.	objs="$objs $arg"	;;      *.lo)	# A library object.	if test "$prev" = dlfiles; then	  dlfiles="$dlfiles $arg"	  if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then	    prev=	    continue	  else	    # If libtool objects are unsupported, then we need to preload.	    prev=dlprefiles	  fi	fi	if test "$prev" = dlprefiles; then	  # Preload the old-style object.	  dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`	  prev=	fi	libobjs="$libobjs $arg"	;;      *.la)	# A libtool-controlled library.	dlname=	libdir=	library_names=	old_library=	# Check to see that this really is a libtool archive.	if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2	  exit 1	fi	# If the library was installed with an old release of libtool,	# it will not redefine variable installed.	installed=yes	# Read the .la file	# If there is no directory component, then add one.	case "$arg" in	*/* | *\\*) . $arg ;;	*) . ./$arg ;;	esac	# Get the name of the library we link against.	linklib=	for l in $old_library $library_names; do	  linklib="$l"	done	if test -z "$linklib"; then	  $echo "$modename: cannot find name of link library for \`$arg'" 1>&2	  exit 1	fi	# Find the relevant object directory and library name.	name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'`	if test "X$installed" = Xyes; then	  dir="$libdir"	else	  dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$dir" = "X$arg"; then	    dir="$objdir"	  else	    dir="$dir/$objdir"	  fi	fi	if test -n "$dependency_libs"; then	  # Extract -R and -L from dependency_libs	  temp_deplibs=	  for deplib in $dependency_libs; do	    case "$deplib" in	    -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'`		 case " $rpath $xrpath " in		 *" $temp_xrpath "*) ;;		 *) xrpath="$xrpath $temp_xrpath";;		 esac;;	    -L*) case "$compile_command $temp_deplibs " in		 *" $deplib "*) ;;		 *) temp_deplibs="$temp_deplibs $deplib";;		 esac		 temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'`		 case " $lib_search_path " in		 *" $temp_dir "*) ;;		 *) lib_search_path="$lib_search_path $temp_dir";;		 esac		 ;;	    *) temp_deplibs="$temp_deplibs $deplib";;	    esac	  done	  dependency_libs="$temp_deplibs"	fi	if test -z "$libdir"; then	  # It is a libtool convenience library, so add in its objects.	  convenience="$convenience $dir/$old_library"	  old_convenience="$old_convenience $dir/$old_library"	  deplibs="$deplibs$dependency_libs"	  compile_command="$compile_command $dir/$old_library$dependency_libs"	  finalize_command="$finalize_command $dir/$old_library$dependency_libs"	  continue	fi	# This library was specified with -dlopen.	if test "$prev" = dlfiles; then	  dlfiles="$dlfiles $arg"	  if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking statically,	    # we need to preload.	    prev=dlprefiles	  else	    # We should not create a dependency on this library, but we	    # may need any libraries it requires.	    compile_command="$compile_command$dependency_libs"	    finalize_command="$finalize_command$dependency_libs"	    prev=	    continue	  fi	fi	# The library was specified with -dlpreopen.	if test "$prev" = dlprefiles; then	  # Prefer using a static library (so that no silly _DYNAMIC symbols	  # are required to link).	  if test -n "$old_library"; then	    dlprefiles="$dlprefiles $dir/$old_library"	  else	    dlprefiles="$dlprefiles $dir/$linklib"	  fi	  prev=	fi	if test -n "$library_names" &&	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	  link_against_libtool_libs="$link_against_libtool_libs $arg"	  if test -n "$shlibpath_var"; then	    # Make sure the rpath contains only unique directories.	    case "$temp_rpath " in	    *" $dir "*) ;;	    *) temp_rpath="$temp_rpath $dir" ;;	    esac	  fi	  # We need an absolute path.	  case "$dir" in	  [\\/] | [A-Za-z]:[\\/]*) absdir="$dir" ;;	  *)	    absdir=`cd "$dir" && pwd`	    if test -z "$absdir"; then	      $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2	      $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	      absdir="$dir"	    fi	    ;;	  esac	  	  # This is the magic to use -rpath.	  # Skip directories that are in the system default run-time	  # search path, unless they have been requested with -R.	  case " $sys_lib_dlsearch_path " in	  *" $absdir "*) ;;	  *)	    case "$compile_rpath " in	    *" $absdir "*) ;;	    *) compile_rpath="$compile_rpath $absdir" 	    esac	    ;;	  esac	  case " $sys_lib_dlsearch_path " in	  *" $libdir "*) ;;	  *)	    case "$finalize_rpath " in	    *" $libdir "*) ;;	    *) finalize_rpath="$finalize_rpath $libdir"	    esac	    ;;	  esac	  lib_linked=yes	  case "$hardcode_action" in	  immediate | unsupported)	    if test "$hardcode_direct" = no; then	      compile_command="$compile_command $dir/$linklib"	      deplibs="$deplibs $dir/$linklib"	      case "$host" in	      *-*-cygwin* | *-*-mingw* | *-*-os2*)		dllsearchdir=`cd "$dir" && pwd || echo "$dir"`		if test -n "$dllsearchpath"; then		  dllsearchpath="$dllsearchpath:$dllsearchdir"		else		  dllsearchpath="$dllsearchdir"		fi		;;	      esac	    elif test "$hardcode_minus_L" = no; then	      case "$host" in	      *-*-sunos*)		compile_shlibpath="$compile_shlibpath$dir:"		;;	      esac	      case "$compile_command " in	      *" -L$dir "*) ;;	      *) compile_command="$compile_command -L$dir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$dir -l$name"	    elif test "$hardcode_shlibpath_var" = no; then	      case ":$compile_shlibpath:" in	      *":$dir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$dir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -l$name"	    else	      lib_linked=no	    fi	    ;;	  relink)	    if test "$hardcode_direct" = yes; then	      compile_command="$compile_command $absdir/$linklib"	      deplibs="$deplibs $absdir/$linklib"	    elif test "$hardcode_minus_L" = yes; then	      case "$compile_command " in	      *" -L$absdir "*) ;;	      *) compile_command="$compile_command -L$absdir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$absdir -l$name"	    elif test "$hardcode_shlibpath_var" = yes; then	      case ":$compile_shlibpath:" in	      *":$absdir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$absdir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -l$name"	    else	      lib_linked=no	    fi	    ;;	  *)	    lib_linked=no	    ;;	  esac	  if test "$lib_linked" != yes; then	    $echo "$modename: configuration error: unsupported hardcode properties"	    exit 1	  fi	  # Finalize command for both is simple: just hardcode it.	  if test "$hardcode_direct" = yes; then	    finalize_command="$finalize_command $libdir/$linklib"	  elif test "$hardcode_minus_L" = yes; then	    case "$finalize_command " in	    *" -L$libdir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  elif test "$hardcode_shlibpath_var" = yes; then	    case ":$finalize_shlibpath:" in	    *":$libdir:"*) ;;	    *) finalize_shlibpath="$finalize_shlibpath$libdir:";;	    esac	    finalize_command="$finalize_command -l$name"	  else	    # We cannot seem to hardcode it, guess we'll fake it.	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	else	  # Transform directly to old archives if we don't build new libraries.	  if test -n "$pic_flag" && test -z "$old_library"; then	    $echo "$modename: cannot find static library for \`$arg'" 1>&2	    exit 1

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产澳门| 一区二区三区中文在线观看| 裸体健美xxxx欧美裸体表演| 91精品一区二区三区在线观看| 亚洲二区在线视频| 88在线观看91蜜桃国自产| 石原莉奈在线亚洲二区| 欧美草草影院在线视频| 国产成人av电影在线播放| **欧美大码日韩| 欧美日韩综合色| 国内外成人在线| 亚洲免费看黄网站| 欧美高清视频一二三区| 国产一区二区三区在线观看免费视频 | 91免费小视频| 亚洲mv大片欧洲mv大片精品| 91精品国产入口在线| 国产麻豆精品视频| 亚洲精品久久7777| 欧美一区二区播放| 成人sese在线| 天天av天天翘天天综合网| 亚洲精品一区二区在线观看| av影院午夜一区| 秋霞影院一区二区| 国产精品女人毛片| 欧美高清视频不卡网| 国产一区在线观看麻豆| 一区二区成人在线| 久久久精品综合| 欧美视频日韩视频在线观看| 久久不见久久见免费视频1| 中文字幕一区在线| 日韩视频免费直播| 色一区在线观看| 国产乱子轮精品视频| 亚洲午夜久久久| 国产欧美一区视频| 欧美一区二区三区免费在线看| 国产福利一区二区| 欧美a级理论片| 亚洲影视在线观看| 中文字幕的久久| 日韩免费在线观看| 欧美日韩精品一区二区| 成人avav在线| 国产成人一区二区精品非洲| 日韩专区欧美专区| 亚洲一区二区免费视频| 亚洲欧洲日本在线| 国产三区在线成人av| 欧美猛男男办公室激情| 一本色道亚洲精品aⅴ| 国产高清不卡一区| 久久99在线观看| 日韩经典一区二区| 亚洲国产精品欧美一二99| 综合久久久久久久| 中文字幕亚洲欧美在线不卡| 久久综合九色综合欧美98| 欧美一卡2卡3卡4卡| 欧美特级限制片免费在线观看| 91丝袜美女网| 一本久道久久综合中文字幕| www.性欧美| 成人av在线影院| 成人av片在线观看| 成人精品免费网站| av一二三不卡影片| 91亚洲精品久久久蜜桃网站| 大美女一区二区三区| 国产精品亚洲人在线观看| 国产毛片精品国产一区二区三区| 久久机这里只有精品| 蜜臀av性久久久久蜜臀aⅴ流畅| 性欧美疯狂xxxxbbbb| 亚洲成人av电影在线| 午夜一区二区三区视频| 首页国产丝袜综合| 免费观看91视频大全| 美女脱光内衣内裤视频久久影院| 久久99精品久久久久久国产越南 | 色狠狠色噜噜噜综合网| 日本精品一级二级| 欧美日韩三级视频| 91精品国产色综合久久| 欧美va在线播放| 久久综合九色综合欧美就去吻| 久久免费视频一区| 国产精品久久久爽爽爽麻豆色哟哟| 中日韩av电影| 亚洲美女一区二区三区| 午夜一区二区三区视频| 久久国产精品99久久人人澡| 国产乱码精品一区二区三 | 国产一区二区伦理片| 国产v综合v亚洲欧| 91小视频免费看| 91精品久久久久久久99蜜桃| 精品国产第一区二区三区观看体验 | 亚洲精品亚洲人成人网| 亚洲一二三专区| 蜜桃视频免费观看一区| 成人中文字幕在线| 欧美色综合影院| 欧美午夜在线一二页| 精品免费日韩av| 亚洲蜜臀av乱码久久精品| 日本一道高清亚洲日美韩| 国产精品亚洲一区二区三区在线| 色综合一个色综合| 精品福利一二区| 亚洲黄色小说网站| 国产在线麻豆精品观看| 一本色道久久加勒比精品| 日韩一区二区在线观看| 成人欧美一区二区三区1314 | 日韩免费看网站| 亚洲人成在线播放网站岛国| 蜜桃视频在线一区| 一本一道波多野结衣一区二区 | 久久免费偷拍视频| 亚洲成人动漫在线观看| 国产成人av一区二区三区在线观看| 色综合 综合色| 精品国产第一区二区三区观看体验| 中文字幕五月欧美| 激情图片小说一区| 欧美日韩一区不卡| 中文字幕亚洲一区二区av在线| 美女精品一区二区| 欧洲一区在线电影| 国产精品天美传媒| 精品一区二区三区欧美| 欧美亚洲自拍偷拍| 国产精品的网站| 国产一区二区三区久久久| 欧美日韩视频在线一区二区| 中文字幕在线观看不卡| 国产美女久久久久| 9191久久久久久久久久久| 一区二区三区美女视频| 国产69精品久久久久毛片 | 欧美精品高清视频| 夜夜精品视频一区二区| av一二三不卡影片| 国产精品少妇自拍| 韩国精品主播一区二区在线观看| 欧美日韩国产电影| 亚洲妇熟xx妇色黄| 欧美天堂一区二区三区| 亚洲欧美激情在线| 成年人午夜久久久| 国产精品丝袜91| 国产盗摄一区二区| 国产视频一区在线观看| 国产又黄又大久久| 精品剧情v国产在线观看在线| 日本欧美肥老太交大片| 欧美日韩一区二区三区免费看| 亚洲欧美国产毛片在线| 91尤物视频在线观看| 综合激情网...| 99久久综合精品| 亚洲欧美激情视频在线观看一区二区三区 | 在线亚洲+欧美+日本专区| 1区2区3区国产精品| 成人丝袜高跟foot| 中文字幕高清不卡| 成人性色生活片| 中文字幕中文字幕一区二区| 成人伦理片在线| 中文字幕一区日韩精品欧美| av一区二区三区四区| 亚洲老司机在线| 欧美日韩中文一区| 日本女人一区二区三区| 欧美v日韩v国产v| 国产成人午夜片在线观看高清观看| 国产午夜亚洲精品午夜鲁丝片| 国产盗摄一区二区三区| 中文字幕制服丝袜成人av| 91麻豆高清视频| 亚洲电影视频在线| 欧美丰满一区二区免费视频| 老色鬼精品视频在线观看播放| 337p粉嫩大胆噜噜噜噜噜91av| 国产高清一区日本| 亚洲欧洲国产专区| 欧美日本在线视频| 国产尤物一区二区| 亚洲人成在线播放网站岛国 | 狠狠网亚洲精品| 国产精品美女一区二区| 欧洲国内综合视频| 精品一区二区综合| 亚洲少妇最新在线视频| 欧美一级精品在线| www.欧美亚洲|