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

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

?? ltmain.sh

?? 基于SDL實現的GUI
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  fi	  # Here we assume that one of hardcode_direct or hardcode_minus_L	  # is not unsupported.  This is valid on all known static and	  # shared platforms.	  if test "$hardcode_direct" != unsupported; then	    test -n "$old_library" && linklib="$old_library"	    compile_command="$compile_command $dir/$linklib"	    finalize_command="$finalize_command $dir/$linklib"	  else	    case "$compile_command " in	    *" -L$dir "*) ;;	    *) compile_command="$compile_command -L$dir";;	    esac	    compile_command="$compile_command -l$name"	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$dir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	fi	# Add in any libraries that this one depends upon.	compile_command="$compile_command$dependency_libs"	finalize_command="$finalize_command$dependency_libs"	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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)	  arg="\"$arg\""	  ;;	esac	;;      esac      # 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    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit 1    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"    case "$output" in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit 1      ;;    *.a | *.lib)      if test -n "$link_against_libtool_libs"; then	$echo "$modename: error: cannot link libtool libraries into archives" 1>&2	exit 1      fi      if test -n "$deplibs"; then	$echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2      fi      if test -n "$rpath"; then	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2      fi      if test -n "$xrpath"; then	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2      fi      if test -n "$vinfo"; then	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2      fi      if test -n "$release"; then	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2      fi      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2      fi      # Now set the variables for building old libraries.      build_libtool_libs=no      oldlibs="$output"      ;;    *.la)      # Make sure we only generate libraries of the form `libNAME.la'.      case "$outputname" in      lib*)	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	eval libname=\"$libname_spec\"	;;      *)	if test "$module" = no; then	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	if test "$need_lib_prefix" != no; then	  # Add the "lib" prefix for modules if required	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	  eval libname=\"$libname_spec\"	else	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	fi	;;      esac      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      if test -n "$objs"; then	$echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1	exit 1      fi      # How the heck are we supposed to write a wrapper for a shared library?      if test -n "$link_against_libtool_libs"; then	 $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2	 exit 1      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2      fi      set dummy $rpath      if test $# -gt 2; then	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2      fi      install_libdir="$2"      oldlibs=      if test -z "$rpath"; then	if test "$build_libtool_libs" = yes; then	  # Building a libtool convenience library.	  libext=al	  oldlibs="$output_objdir/$libname.$libext $oldlibs"	  build_libtool_libs=convenience	  build_old_libs=yes	fi	dependency_libs="$deplibs"	if test -n "$vinfo"; then	  $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2	fi	if test -n "$release"; then	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2	fi      else	# Parse the version information argument.	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'	set dummy $vinfo 0 0 0	IFS="$save_ifs"	if test -n "$8"; then	  $echo "$modename: too many parameters to \`-version-info'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	current="$2"	revision="$3"	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.	major=	versuffix=	verstring=	case "$version_type" in	none) ;;	irix)	  major=`expr $current - $age + 1`	  versuffix="$major.$revision"	  verstring="sgi$major.$revision"	  # Add in all the interfaces that we are compatible with.	  loop=$revision	  while test $loop != 0; do	    iface=`expr $revision - $loop`	    loop=`expr $loop - 1`	    verstring="sgi$major.$iface:$verstring"	  done	  ;;	linux)	  major=.`expr $current - $age`	  versuffix="$major.$age.$revision"	  ;;	osf)	  major=`expr $current - $age`	  versuffix=".$current.$age.$revision"	  verstring="$current.$age.$revision"	  # 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)	  major=".$current"	  versuffix=".$current.$revision"	  ;;	freebsd-aout)	  major=".$current"	  versuffix=".$current.$revision";	  ;;	freebsd-elf)	  major=".$current"	  versuffix=".$current";	  ;;	windows)	  # Like Linux, but with '-' rather than '.', since we only	  # want one extension on Windows 95.	  major=`expr $current - $age`	  versuffix="-$major-$age-$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	# Clear the version info if we defaulted, and they specified a release.	if test -z "$vinfo" && test -n "$release"; then	  major=	  verstring="0.0"	  if test "$need_version" = no; then	    versuffix=	  else	    versuffix=".0.0"	  fi	fi	# Remove version info from name if versioning should be avoided	if test "$avoid_version" = yes && test "$need_version" = no; then	  major=	  versuffix=	  verstring=""	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	dependency_libs="$deplibs"	case "$host" in	*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos* | *-*-freebsd* )	  # these systems don't actually have a c library (as such)!	  ;;        *-*-rhapsody*)	  # rhapsody is a little odd...	  deplibs="$deplibs -framework System"	  ;;	*)	  # Add libc to deplibs on all other systems.	  deplibs="$deplibs -lc"	  ;;	esac      fi      # Create the output directory, or remove our outputs if we need to.      if test -d $output_objdir; then	$show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"	$run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*      else	$show "$mkdir $output_objdir"	$run $mkdir $output_objdir	status=$?	if test $status -ne 0 && test ! -d $output_objdir; then	  exit $status	fi      fi      # Now set the variables for building old libraries.      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then	oldlibs="$oldlibs $output_objdir/$libname.$libext"	# Transform .lo files to .o files.	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`      fi      if test "$build_libtool_libs" = yes; then	# Transform deplibs into only deplibs that can be linked in shared.	name_save=$name	libname_save=$libname	release_save=$release	versuffix_save=$versuffix	major_save=$major	# I'm not sure if I'm treating the release correctly.  I think	# release should show up in the -l (ie -lgmp5) so we don't want to	# add it in twice.  Is that correct?	release=""	versuffix=""	major=""	newdeplibs=	droppeddeps=no	case "$deplibs_check_method" in	pass_all)	  # Don't check for shared/static.  Everything works.	  # This might be a little naive.  We might want to check	  # whether the library exists or not.  But this is on	  # osf3 & osf4 and I'm not really sure... Just	  # implementing what was already the behaviour.	  newdeplibs=$deplibs	  ;;	test_compile)	  # This code stresses the "libraries are programs" paradigm to its	  # limits. Maybe even breaks it.  We compile a program, linking it	  # against the deplibs as a proxy for the library.  Then we can check	  # whether they linked in statically or dynamically with ldd.	  $rm conftest.c	  cat > conftest.c <<EOF	  int main() { return 0; }EOF	  $rm conftest	  $CC -o conftest conftest.c $deplibs	  if test $? -eq 0 ; then	    ldd_output=`ldd conftest`	    for i in $deplibs; do	      name="`expr $i : '-l\(.*\)'`"	      # If $name is empty we are operating on a -L argument.	      if test "$name" != "" ; then		libname=`eval \\$echo \"$libname_spec\"`		deplib_matches=`eval \\$echo \"$library_names_spec\"`		set dummy $deplib_matches		deplib_match=$2		if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then		  newdeplibs="$newdeplibs $i"		else		  droppeddeps=yes		  echo		  echo "*** Warning: This library needs some functionality provided by $i."		  echo "*** I have the capability to make that library automatically link in when"		  echo "*** you link to this library.  But I can only do this if you have a"		  echo "*** shared version of the library, which you do not appear to have."		fi	      else		newdeplibs="$newdeplibs $i"	      fi	    done	  else	    # Error occured in the first compile.  Let's try to salvage the situation:	    # Compile a seperate program for each library.	    for i in $deplibs; do	      name="`expr $i : '-l\(.*\)'`"	     # If $name is empty we are operating on a -L argument.	      if test "$name" != "" ; then		$rm conftest		$CC -o conftest conftest.c $i		# Did it work?		if test $? -eq 0 ; then		  ldd_output=`ldd conftest`		  libname=`eval \\$echo \"$libname_spec\"`		  deplib_matches=`eval \\$echo \"$library_names_spec\"`		  set dummy $deplib_matches		  deplib_match=$2		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then		    newdeplibs="$newdeplibs $i"		  else		    droppeddeps=yes		    echo		    echo "*** Warning: This library needs some functionality provided by $i."		    echo "*** I have the capability to make that library automatically link in when"		    echo "*** you link to this library.  But I can only do this if you have a"		    echo "*** shared version of the library, which you do not appear to have."		  fi		else		  droppeddeps=yes		  echo		  echo "*** Warning!  Library $i is needed by this library but I was not able to"		  echo "***  make it link in!  You will probably need to install it or some"		  echo "*** library that it depends on before this library will be fully"		  echo "*** functional.  Installing it before continuing would be even better."		fi	      else		newdeplibs="$newdeplibs $i"	      fi	    done	  fi	  ;;	file_magic*)	  set dummy $deplibs_check_method	  file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`"	  for a_deplib in $deplibs; do	    name="`expr $a_deplib : '-l\(.*\)'`"	    # If $name is empty we are operating on a -L argument.	    if test "$name" != "" ; then	      libname=`eval \\$echo \"$libname_spec\"`	      for i in $lib_search_path; do		    potential_libs=`ls $i/$libname[.-]* 2>/dev/null`		    for potent_lib in $potential_libs; do		      # Follow soft links.		      if ls -lLd "$potent_lib" 2>/dev/null \			 | grep " -> " >/dev/null; then			continue 		      fi

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕亚洲在| 中文字幕亚洲在| 欧美影院午夜播放| 国产成人福利片| 精品亚洲成a人| 久久精工是国产品牌吗| 亚洲国产成人av| 亚洲综合成人网| 一区二区欧美视频| 一区二区三区在线观看国产| 国产999精品久久久久久绿帽| 国产偷国产偷亚洲高清人白洁| 精品国产亚洲一区二区三区在线观看| 日韩精品在线看片z| 日韩欧美一区二区免费| 欧美综合在线视频| 91啪九色porn原创视频在线观看| 国产精品一区二区91| 日韩高清中文字幕一区| 一区二区高清在线| 国产精品久久久久久久久搜平片| 9191精品国产综合久久久久久| 一本一道综合狠狠老| 久久综合九色综合欧美亚洲| 欧美精品自拍偷拍动漫精品| 日韩网站在线看片你懂的| 亚洲精品一区二区三区蜜桃下载| 国产性做久久久久久| 亚洲少妇屁股交4| 日韩国产一区二| 国产精品中文有码| 欧洲生活片亚洲生活在线观看| 欧美色大人视频| 久久夜色精品国产欧美乱极品| 国产欧美一区二区精品秋霞影院| 一级做a爱片久久| 精彩视频一区二区三区| 色域天天综合网| 91国偷自产一区二区三区成为亚洲经典| 久久久久久电影| 美女www一区二区| 亚洲成人av一区| 欧美影院精品一区| 日韩国产欧美视频| bt7086福利一区国产| 日韩无一区二区| 天天色图综合网| 欧美综合亚洲图片综合区| 国产精品婷婷午夜在线观看| 免费欧美在线视频| 91精品国产入口| 亚洲自拍偷拍九九九| 99视频有精品| ...av二区三区久久精品| 国产在线播放一区三区四| 日韩免费观看高清完整版| 亚洲不卡av一区二区三区| 在线欧美日韩精品| 亚洲午夜激情av| 欧美日韩精品一区视频| 亚洲男人的天堂av| 一本大道久久a久久综合婷婷| 国产欧美精品一区二区色综合 | 亚洲国产综合在线| 欧美三级乱人伦电影| 亚洲电影欧美电影有声小说| 欧美伦理电影网| 奇米在线7777在线精品| 精品国产乱码久久久久久老虎| 国产一区中文字幕| 国产精品久久网站| 欧美日韩精品专区| 蜜臀国产一区二区三区在线播放| 欧美电影免费观看完整版| 国产一区二区三区免费播放| 亚洲国产精品v| 99精品偷自拍| 青青青伊人色综合久久| 久久综合狠狠综合| 99v久久综合狠狠综合久久| 亚洲国产日韩a在线播放性色| 日韩视频免费观看高清完整版 | 亚洲一区二区视频在线观看| 日韩午夜激情av| www.日韩av| 日韩激情一区二区| 亚洲精品一区二区精华| 日本高清视频一区二区| 加勒比av一区二区| 亚洲电影在线免费观看| 久久午夜老司机| 欧美精品粉嫩高潮一区二区| 国产成人免费在线观看不卡| 亚洲欧美成aⅴ人在线观看 | 久久综合狠狠综合| 欧美日韩久久一区| eeuss鲁片一区二区三区| 裸体一区二区三区| 亚洲精品日韩综合观看成人91| 日韩精品在线看片z| 欧美乱妇20p| 日本乱人伦aⅴ精品| 国产99一区视频免费| 男女性色大片免费观看一区二区| 夜夜嗨av一区二区三区| 中文字幕不卡在线观看| 国产亚洲综合色| 精品三级av在线| 日韩一区二区在线看| 欧美精品丝袜中出| 欧美色图在线观看| 91麻豆视频网站| 色天使久久综合网天天| 97国产一区二区| 91看片淫黄大片一级在线观看| 国产99精品视频| 色综合色综合色综合 | www久久精品| 色婷婷精品久久二区二区蜜臂av| 欧美久久久一区| 亚洲一区自拍偷拍| 久久不见久久见免费视频7| 国产一区二区导航在线播放| 国产风韵犹存在线视精品| 成人精品国产免费网站| 91高清视频在线| 日韩一级免费观看| 久久久久久久久免费| 中文一区二区在线观看| 亚洲欧美一区二区在线观看| 悠悠色在线精品| 久久精品国产免费| 日本精品一级二级| 欧美电影免费观看高清完整版在 | www.色综合.com| 69堂国产成人免费视频| 2023国产精品| 午夜精品久久久久久久 | 精品在线你懂的| 99精品欧美一区| 欧美成人video| 国产欧美日韩视频在线观看| 亚洲欧美视频在线观看视频| 另类综合日韩欧美亚洲| 日本久久一区二区三区| 精品少妇一区二区三区| 亚洲一区二区三区中文字幕 | 成人国产精品免费网站| 精品乱人伦小说| 日韩福利电影在线观看| 精品视频1区2区| 国产精品美女久久久久aⅴ国产馆| 国产一区二区三区高清播放| 26uuu色噜噜精品一区二区| 六月婷婷色综合| 久久久久久久av麻豆果冻| 精品一区二区三区香蕉蜜桃 | 日韩欧美在线网站| 亚洲人亚洲人成电影网站色| 国产一区二区女| 日韩一级免费一区| 日本91福利区| 在线不卡a资源高清| 亚洲线精品一区二区三区八戒| 成人一级片在线观看| 国产视频在线观看一区二区三区 | 国产99一区视频免费| 久久久www免费人成精品| 精品一区二区免费视频| 日韩女优av电影在线观看| 日本欧美韩国一区三区| 在线电影国产精品| 日本人妖一区二区| 久久综合色综合88| 国产乱码精品一区二区三区忘忧草 | 肉丝袜脚交视频一区二区| 56国语精品自产拍在线观看| 丝袜脚交一区二区| 日韩欧美在线不卡| 国产高清不卡一区二区| 国产精品久久久久久久久快鸭| 国产成人免费视频精品含羞草妖精| 日本一区二区综合亚洲| 在线一区二区三区四区五区| 亚洲成av人片一区二区| 日韩美女主播在线视频一区二区三区| 美女视频网站黄色亚洲| 国产日韩三级在线| 精品视频在线免费看| 久久99九九99精品| 一区二区三区资源| 欧美大尺度电影在线| av中文字幕一区| 久久国产福利国产秒拍| 亚洲三级理论片| 26uuu国产日韩综合| 91极品美女在线| 极品美女销魂一区二区三区| 亚洲六月丁香色婷婷综合久久| 日韩欧美亚洲国产另类|