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

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

?? ltmain.sh

?? Gtk+,glade3 部件應用示例源代碼。
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	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: more than one -exported-symbols argument is not allowed"	  exit $EXIT_FAILURE	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	continue	;;      -framework|-arch|-isysroot)	case " $CC " in	  *" ${arg} ${1} "* | *" ${arg}	${1} "*) 		prev=darwin_framework_skip ;;	  *) compiler_flags="$compiler_flags $arg"	     prev=darwin_framework ;;	esac	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -inst-prefix-dir)	prev=inst_prefix	continue	;;      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*      # so, if we see these flags be careful not to treat them like -L      -L[A-Z][A-Z]*:*)	case $with_gcc/$host in	no/*-*-irix* | /*-*-irix*)	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  ;;	esac	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: cannot determine absolute directory name of \`$dir'" 1>&2	    absdir="$dir"	    notinst_path="$notinst_path $dir"	  fi	  dir="$absdir"	  ;;	esac	case "$deplibs " in	*" -L$dir "*) ;;	*)	  deplibs="$deplibs -L$dir"	  lib_search_path="$lib_search_path $dir"	  ;;	esac	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'`	  case :$dllsearchpath: in	  *":$dir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dir";;	  esac	  case :$dllsearchpath: in	  *":$testbindir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$testbindir";;	  esac	  ;;	esac	continue	;;      -l*)	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then	  case $host in	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*)	    # These systems don't actually have a C or math library (as such)	    continue	    ;;	  *-*-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	    ;;	  *-*-sco3.2v5* | *-*-sco5v6*)	    # Causes problems with __ctype	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)	    # Compiler inserts libc in the correct place for threads to work	    test "X$arg" = "X-lc" && 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|-threads)	compiler_flags="$compiler_flags $arg"	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -multi_module)	single_module="${wl}-multi_module"	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      # -m*, -t[45]*, -txscale* pass through architecture-specific      # compiler args for GCC      # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC      # -F/path gives path to uninstalled frameworks, gcc on darwin      # @file GCC response files      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)	# 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        compile_command="$compile_command $arg"        finalize_command="$finalize_command $arg"        compiler_flags="$compiler_flags $arg"        continue        ;;      -shrext)	prev=shrext	continue	;;      -no-fast-install)	fast_install=no	continue	;;      -no-install)	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*)	  # The PATH hackery in wrapper scripts is required on Windows	  # and Darwin 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 | -static-libtool-libs)	# 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	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    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	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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	  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	;;      *.$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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲视频中文字幕| 午夜精品免费在线| 欧美丰满一区二区免费视频| 国产黄色91视频| 日韩成人免费在线| 亚洲男女毛片无遮挡| 久久久久久久久久美女| 欧美丰满嫩嫩电影| 一本大道av伊人久久综合| 黄色精品一二区| 天天综合日日夜夜精品| 成人免费一区二区三区视频| 久久久久国产成人精品亚洲午夜| 欧美精品久久一区| 色婷婷综合激情| 国产iv一区二区三区| 久久精品国产澳门| 日韩二区在线观看| 亚洲高清视频的网址| 有码一区二区三区| 亚洲欧美aⅴ...| 亚洲人亚洲人成电影网站色| 国产女同性恋一区二区| 日韩一区二区三| 91麻豆精品国产91久久久| 欧美色精品在线视频| 在线影院国内精品| 91黄色激情网站| 在线观看免费一区| 色天使久久综合网天天| 91免费观看视频| 9人人澡人人爽人人精品| 成人午夜电影久久影院| 国产成人午夜精品影院观看视频| 激情偷乱视频一区二区三区| 国内精品久久久久影院色| 麻豆成人免费电影| 精品一区二区综合| 国产精品一区二区三区99| 国产精品自拍网站| 成人免费视频网站在线观看| 成人午夜伦理影院| 99久久777色| 欧美中文一区二区三区| 欧美日韩的一区二区| 777色狠狠一区二区三区| 日韩一级大片在线| 亚洲精品一区二区三区影院 | 亚洲电影一级黄| 午夜久久久影院| 另类中文字幕网| 国产电影一区在线| 99久久99久久精品免费观看| 91久久精品一区二区| 欧美三级视频在线| 欧美videossexotv100| 国产亚洲一区二区在线观看| 成人免费在线视频观看| 亚洲二区视频在线| 久草中文综合在线| www.爱久久.com| 欧美在线|欧美| 日韩一区二区不卡| 国产欧美一区二区精品性色 | 欧美性受xxxx黑人xyx| 91精品在线免费观看| 久久久精品国产免大香伊| 中文字幕中文在线不卡住| 亚洲一区二区成人在线观看| 六月婷婷色综合| 91在线精品秘密一区二区| 欧美色图激情小说| 亚洲精品在线三区| 亚洲精品国产视频| 免费视频最近日韩| 波多野结衣中文字幕一区| 欧美色网站导航| 久久精品人人做人人爽人人| 一区二区在线看| 黄页视频在线91| 91福利在线观看| www欧美成人18+| 亚洲夂夂婷婷色拍ww47| 国产真实乱偷精品视频免| 色吊一区二区三区| 亚洲精品在线一区二区| 一区二区在线观看免费视频播放| 黄一区二区三区| 欧美三级欧美一级| 亚洲国产精品99久久久久久久久| 亚洲午夜精品17c| 成人永久免费视频| 91精品欧美综合在线观看最新| 国产精品情趣视频| 精品一区二区三区蜜桃| 91极品美女在线| 亚洲国产激情av| 韩国一区二区在线观看| 欧美日韩中文字幕一区| 国产精品成人午夜| 国产一区三区三区| 欧美一级欧美三级在线观看| 国产精品网站在线观看| 麻豆成人91精品二区三区| 在线欧美日韩精品| 国产欧美一区二区精品婷婷| 日本欧美加勒比视频| 在线看一区二区| 中文字幕一区av| 国产激情一区二区三区| 日韩欧美www| 日日摸夜夜添夜夜添国产精品 | 免费人成网站在线观看欧美高清| 色94色欧美sute亚洲线路一ni| 国产欧美一区二区三区鸳鸯浴| 日本一区中文字幕| 欧美日韩亚洲综合一区二区三区| 中文字幕在线播放不卡一区| 国产呦精品一区二区三区网站| 日韩三级电影网址| 日本中文字幕一区二区有限公司| 欧美在线免费视屏| 亚洲视频在线观看三级| av资源网一区| 国产精品青草综合久久久久99| 国产精品一区一区| 国产欧美综合色| 国产成a人亚洲| 国产精品视频在线看| 国产成都精品91一区二区三| 久久精品日韩一区二区三区| 国产一区二区三区四区五区美女| 精品电影一区二区| 国产一区不卡精品| 国产欧美日韩卡一| 波多野结衣亚洲一区| 中文字幕第一区第二区| 成人午夜激情影院| 亚洲视频免费在线观看| 91麻豆6部合集magnet| 亚洲免费大片在线观看| 91国偷自产一区二区三区成为亚洲经典| 亚洲人成网站精品片在线观看| 99久久精品免费观看| 一区二区在线观看不卡| 欧美日韩一区国产| 免费日韩伦理电影| 国产欧美日韩视频在线观看| 99久久国产综合色|国产精品| 亚洲免费高清视频在线| 欧美群妇大交群中文字幕| 久久国产生活片100| 国产日本亚洲高清| 日本黄色一区二区| 日本美女视频一区二区| 久久影院视频免费| 91小视频免费看| 日韩中文字幕亚洲一区二区va在线| 欧美va日韩va| www.色精品| 午夜在线成人av| 国产亚洲一区二区三区在线观看 | 亚洲激情欧美激情| 91麻豆精品国产自产在线| 狠狠色狠狠色合久久伊人| 中文字幕第一区综合| 欧美日免费三级在线| 久久国产精品一区二区| 国产精品第四页| 欧美无砖专区一中文字| 久久99久久精品欧美| 中文字幕在线免费不卡| 欧美精品日韩综合在线| 粉嫩绯色av一区二区在线观看| 综合精品久久久| 日韩视频在线一区二区| 成人精品视频一区二区三区尤物| 亚洲午夜国产一区99re久久| 久久精品亚洲麻豆av一区二区| 欧美在线观看视频在线| 国产美女娇喘av呻吟久久| 一区二区三区中文免费| 26uuu国产在线精品一区二区| 91黄色免费网站| 国产成人免费av在线| 日韩经典一区二区| 国产精品高潮呻吟| 日韩视频一区二区三区 | 一本色道久久综合亚洲91| 日韩av中文字幕一区二区| 国产精品全国免费观看高清| 欧美一级国产精品| 91啦中文在线观看| 国产精品亚洲一区二区三区妖精| 亚洲国产日韩精品| 亚洲欧洲综合另类| 精品91自产拍在线观看一区| 欧美探花视频资源| 波多野结衣中文一区| 国产精品一卡二卡|