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

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

?? ltmain.sh

?? Gtk+,glade3 部件應用示例源代碼。
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      # Just move the object if needed, then go on to compile the next one      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then	$show "$mv $output_obj $lobj"	if $run $mv $output_obj $lobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the PIC object to the libtool object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object='$objdir/$objname'EOF      # Allow error messages only from the first compilation.      if test "$suppress_opt" = yes; then        suppress_output=' >/dev/null 2>&1'      fi    else      # No PIC object so indicate it doesn't exist in the libtool      # object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object=noneEOF    fi    # Only build a position-dependent object if we build old libraries.    if test "$build_old_libs" = yes; then      if test "$pic_mode" != yes; then	# Don't build PIC code	command="$base_compile $qsrcfile"      else	command="$base_compile $qsrcfile $pic_flag"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$obj" "$output_obj"      $show "$command"      if $run eval $lt_env "$command"; then :      else	$run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then	$show "$mv $output_obj $obj"	if $run $mv $output_obj $obj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object='$objname'EOF    else      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object=noneEOF    fi    $run $mv "${libobj}T" "${libobj}"    # Unlock the critical section if it was locked    if test "$need_locks" != no; then      $run $rm "$lockfile"    fi    exit $EXIT_SUCCESS    ;;  # libtool link mode  link | relink)    modename="$modename: link"    case $host in    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)      # It is impossible to link a dll without this setting, and      # we shouldn't force the makefile maintainer to figure out      # which system we are compiling for in order to pass an extra      # flag for every libtool invocation.      # allow_undefined=no      # FIXME: Unfortunately, there are problems with the above when trying      # to make a dll which has undefined symbols, in which case not      # even a static library is built.  For now, we need to specify      # -no-undefined on the libtool link line when we can be certain      # that all symbols are satisfied, otherwise we get a static library.      allow_undefined=yes      ;;    *)      allow_undefined=yes      ;;    esac    libtool_args="$nonopt"    base_compile="$nonopt $@"    compile_command="$nonopt"    finalize_command="$nonopt"    compile_rpath=    finalize_rpath=    compile_shlibpath=    finalize_shlibpath=    convenience=    old_convenience=    deplibs=    old_deplibs=    compiler_flags=    linker_flags=    dllsearchpath=    lib_search_path=`pwd`    inst_prefix_dir=    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    non_pic_objects=    notinst_path= # paths that contain not-installed libtool libraries    precious_files_regex=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    single_module="${wl}-single_module"    func_infer_tag $base_compile    # We need to know -static, to get the right output filenames.    for arg    do      case $arg in      -all-static | -static | -static-libtool-libs)	case $arg in	-all-static)	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2	  fi	  if test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	  prefer_static_libs=yes	  ;;	-static)	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	  prefer_static_libs=built	  ;;	-static-libtool-libs)	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	  prefer_static_libs=yes	  ;;	esac	build_libtool_libs=no	build_old_libs=yes	break	;;      esac    done    # See if our shared archives depend on static archives.    test -n "$old_archive_from_new_cmds" && build_old_libs=yes    # Go through the arguments, transforming them on the way.    while test "$#" -gt 0; do      arg="$1"      shift      case $arg in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test	;;      *) qarg=$arg ;;      esac      libtool_args="$libtool_args $qarg"      # If the previous option needs an argument, assign it.      if test -n "$prev"; then	case $prev in	output)	  compile_command="$compile_command @OUTPUT@"	  finalize_command="$finalize_command @OUTPUT@"	  ;;	esac	case $prev in	dlfiles|dlprefiles)	  if test "$preload" = no; then	    # Add the symbol object into the linking commands.	    compile_command="$compile_command @SYMFILE@"	    finalize_command="$finalize_command @SYMFILE@"	    preload=yes	  fi	  case $arg in	  *.la | *.lo) ;;  # We handle these cases below.	  force)	    if test "$dlself" = no; then	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  self)	    if test "$prev" = dlprefiles; then	      dlself=yes	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then	      dlself=yes	    else	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  *)	    if test "$prev" = dlfiles; then	      dlfiles="$dlfiles $arg"	    else	      dlprefiles="$dlprefiles $arg"	    fi	    prev=	    continue	    ;;	  esac	  ;;	expsyms)	  export_symbols="$arg"	  if test ! -f "$arg"; then	    $echo "$modename: symbol file \`$arg' does not exist"	    exit $EXIT_FAILURE	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	inst_prefix)	  inst_prefix_dir="$arg"	  prev=	  continue	  ;;	precious_regex)	  precious_files_regex="$arg"	  prev=	  continue	  ;;	release)	  release="-$arg"	  prev=	  continue	  ;;	objectlist)	  if test -f "$arg"; then	    save_arg=$arg	    moreargs=	    for fil in `cat $save_arg`	    do#	      moreargs="$moreargs $fil"	      arg=$fil	      # 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		else		  # If the PIC object exists, use it instead.		  # $xdir was prepended to $pic_object above.		  non_pic_object="$pic_object"		  non_pic_objects="$non_pic_objects $non_pic_object"		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	    done	  else	    $echo "$modename: link input file \`$save_arg' does not exist"	    exit $EXIT_FAILURE	  fi	  arg=$save_arg	  prev=	  continue	  ;;	rpath | xrpath)	  # We need an absolute path.	  case $arg in	  [\\/]* | [A-Za-z]:[\\/]*) ;;	  *)	    $echo "$modename: only absolute run-paths are allowed" 1>&2	    exit $EXIT_FAILURE	    ;;	  esac	  if test "$prev" = rpath; then	    case "$rpath " in	    *" $arg "*) ;;	    *) rpath="$rpath $arg" ;;	    esac	  else	    case "$xrpath " in	    *" $arg "*) ;;	    *) xrpath="$xrpath $arg" ;;	    esac	  fi	  prev=	  continue	  ;;	xcompiler)	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	xlinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $wl$qarg"	  prev=	  compile_command="$compile_command $wl$qarg"	  finalize_command="$finalize_command $wl$qarg"	  continue	  ;;	xcclinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	shrext)  	  shrext_cmds="$arg"	  prev=	  continue	  ;;	darwin_framework|darwin_framework_skip)	  test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg"	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  prev=	  continue	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi # test -n "$prev"      prevarg="$arg"      case $arg in      -all-static)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品免费专区| 91偷拍与自偷拍精品| 成人免费视频视频在线观看免费 | 亚洲欧洲精品天堂一级| 亚洲国产日韩综合久久精品| 国精产品一区一区三区mba桃花| 93久久精品日日躁夜夜躁欧美| 欧美一区二区私人影院日本| 国产精品污污网站在线观看| 日日噜噜夜夜狠狠视频欧美人| 不卡电影一区二区三区| 欧美大胆一级视频| 亚洲国产日韩精品| av不卡在线播放| 精品欧美一区二区久久| 亚洲图片欧美视频| 91网站最新网址| 欧美激情一区二区三区不卡| 国产一区欧美一区| 日韩一区二区在线观看| 亚洲一二三区在线观看| 97久久久精品综合88久久| 欧美本精品男人aⅴ天堂| 亚瑟在线精品视频| 欧美一a一片一级一片| 亚洲欧美激情小说另类| 成人福利电影精品一区二区在线观看| 精品欧美久久久| 毛片一区二区三区| 欧美一级午夜免费电影| 日韩电影在线看| 欧美日韩电影一区| 亚洲一区二区三区影院| 一本大道久久精品懂色aⅴ| 国产精品久久久久久久裸模| 国产成人精品影视| 国产日韩欧美电影| 国产91精品欧美| 中文一区二区在线观看| www.日韩av| 亚洲激情在线激情| 在线观看av一区| 天堂精品中文字幕在线| 这里只有精品99re| 精东粉嫩av免费一区二区三区| 日韩欧美成人激情| 岛国av在线一区| 日韩美女视频一区| 欧洲精品一区二区三区在线观看| 亚洲成人一区二区在线观看| 欧美高清hd18日本| 九九国产精品视频| 中文字幕成人av| 91蝌蚪porny九色| 性做久久久久久| 久久久久久久网| 99国产欧美久久久精品| 亚洲第一狼人社区| 欧美不卡视频一区| 北条麻妃国产九九精品视频| 一二三四区精品视频| 欧美一区永久视频免费观看| 国内久久精品视频| 亚洲男同性视频| 欧美一区二区精品久久911| 国产成人精品一区二区三区四区 | 国产精品久线观看视频| 色av一区二区| 久久精品国产精品亚洲精品| 国产人成亚洲第一网站在线播放 | 精品剧情在线观看| 成人的网站免费观看| 肉丝袜脚交视频一区二区| 久久免费视频色| 欧美怡红院视频| 国产精品一区二区三区乱码| 一个色综合网站| 国产欧美综合在线| 69久久99精品久久久久婷婷| 国产黄色精品网站| 视频一区二区三区中文字幕| 日本一区二区三区四区在线视频| 欧美日韩另类一区| 成人免费视频视频| 激情六月婷婷久久| 亚洲成a人v欧美综合天堂| 国产精品网站导航| 欧美mv日韩mv国产网站app| 91色视频在线| 国产1区2区3区精品美女| 免费成人美女在线观看| 亚洲激情欧美激情| 国产色综合久久| 精品美女在线播放| 欧美电影影音先锋| 欧美在线高清视频| proumb性欧美在线观看| 久草在线在线精品观看| 婷婷开心激情综合| 怡红院av一区二区三区| 欧美国产激情一区二区三区蜜月| 日韩精品专区在线| 欧美一区午夜精品| 欧美图片一区二区三区| 在线看国产一区二区| 成人国产在线观看| 成人网男人的天堂| 成人高清在线视频| 成人成人成人在线视频| 国产成人精品一区二区三区四区 | 六月婷婷色综合| 丝袜美腿一区二区三区| 亚洲激情自拍视频| 亚洲激情在线播放| 亚洲自拍偷拍网站| 亚洲最大成人综合| 亚洲小少妇裸体bbw| 亚洲成a人v欧美综合天堂| 午夜视频在线观看一区| 亚洲成a人v欧美综合天堂| 天天操天天色综合| 免费的成人av| 韩国av一区二区三区在线观看| 美日韩一区二区三区| 久久99国产精品免费网站| 久久国产精品第一页| 国产麻豆午夜三级精品| 国产91色综合久久免费分享| 成人毛片老司机大片| 91香蕉视频mp4| 在线观看91精品国产入口| 欧美久久高跟鞋激| 日韩免费视频一区| 国产欧美精品一区二区色综合| 欧美国产成人在线| 亚洲综合一区二区| 日韩精品一二三| 国产精品中文有码| 99精品在线免费| 欧美久久久久久蜜桃| 久久天堂av综合合色蜜桃网| 国产精品午夜在线| 亚洲影院在线观看| 久久成人免费网站| 成人精品免费视频| 欧美视频一区二区三区四区| 91精品在线观看入口| 久久九九久久九九| 一区二区三区四区国产精品| 午夜精品久久久久久久| 国产在线不卡一卡二卡三卡四卡| 成人97人人超碰人人99| 欧美日韩亚洲综合在线 | 国产精品18久久久久久久久| 91天堂素人约啪| 日韩欧美在线影院| 成人免费在线播放视频| 日本欧美一区二区| 91香蕉视频mp4| 久久久久亚洲蜜桃| 亚洲一区在线观看网站| 国产永久精品大片wwwapp| 在线一区二区观看| 国产清纯美女被跳蛋高潮一区二区久久w | 香蕉影视欧美成人| 国产白丝精品91爽爽久久| 欧美亚洲自拍偷拍| 国产精品欧美一级免费| 美日韩黄色大片| 欧美在线观看一区| 中文字幕一区日韩精品欧美| 蜜臀av一区二区三区| 91原创在线视频| 久久久久久久久久久久电影| 亚洲成av人影院| 色综合天天在线| 国产女人aaa级久久久级 | 久久精品一区四区| 日本亚洲三级在线| 欧美日韩综合在线免费观看| 国产精品成人一区二区三区夜夜夜| 日本中文字幕一区二区视频| 91免费国产在线| 国产精品无码永久免费888| 久色婷婷小香蕉久久| 欧美日本视频在线| 香蕉乱码成人久久天堂爱免费| 色综合中文字幕国产| 国产午夜精品理论片a级大结局 | 91性感美女视频| 国产精品国产三级国产aⅴ入口| 久久www免费人成看片高清| 欧美日韩你懂得| 亚洲h动漫在线| 欧美男女性生活在线直播观看| 亚洲欧美色一区| 91浏览器打开| 亚洲一卡二卡三卡四卡无卡久久 | 午夜精品福利久久久| 一本大道综合伊人精品热热 |