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

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

?? ltmain.sh

?? linux下佳能數碼相機使用源碼
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	      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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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 1    fi    # Infer tagged configuration to use if any are available and    # if one wasn't chosen via the "--tag" command line option.    # Only attempt this if the compiler in the base link    # command doesn't match the default compiler.    if test -n "$available_tags" && test -z "$tagname"; then      case $base_compile in      # Blanks in the command may have been stripped by the calling shell,      # but not from the CC environment variable when ltconfig was run.      "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*) ;;      # Blanks at the start of $base_compile will cause this to fail      # if we don't check for them as well.      *)	for z in $available_tags; do	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"	    case $base_compile in	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)	      # The compiler in $compile_command matches	      # the one in the tagged configuration.	      # Assume this is the tagged configuration we want.	      tagname=$z	      break	      ;;	    esac	  fi	done	# If $tagname still isn't set, then no tagged configuration	# was found and let the user know that the "--tag" command	# line option must be used.	if test -z "$tagname"; then	  echo "$modename: unable to infer tagged configuration"	  echo "$modename: specify a tag with \`--tag'" 1>&2	  exit 1#       else#         echo "$modename: using $tagname tagged configuration"	fi	;;      esac    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 1      ;;    *.$libext) linkmode=oldlib ;;    *.lo | *.$objext) linkmode=obj ;;    *.la) linkmode=lib ;;    *) linkmode=prog ;; # Anything else should be a program.    esac    case $host in    *cygwin*)      # This is a hack, but we run into problems on cygwin.      # libgcc.a depends on libcygwin, but gcc puts -lgcc onto      # the link line twice: once before the "normal" libs      # (-lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32) and      # once AFTER those.  However, the "eliminate dup deps"      # proceedure keeps only the LAST duplicate -- thus      # messing up the order, since after dup elimination      # -lgcc comes AFTER -lcygwin.  In normal C operation,      # you don't notice the problem, because -lgcc isn't      # really used.  However, now that C++ libraries are      # libtool-able, you DO see the problem.  So, it must      # be fixed.  We could always force "--preserve-dup-deps"      # but that could lead to other problems.  So, on cygwin,      # always preserve dups of -lgcc...but only -lgcc. That      # way, the dependency order won't get corrupted.      specialdeplibs="-lgcc"      ;;    *)      specialdeplibs=      ;;    esac    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_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    deplibs=    newdependency_libs=    newlib_search_path=    need_relink=no # whether we're linking any uninstalled libtool libraries    notinst_deplibs= # not-installed libtool libraries    notinst_path= # paths that contain not-installed libtool libraries    case $linkmode in    lib)	passes="conv link"	for file in $dlfiles $dlprefiles; do	  case $file in	  *.la) ;;	  *)	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2	    exit 1	    ;;	  esac	done	;;    prog)	compile_deplibs=	finalize_deplibs=	alldeplibs=no	newdlfiles=	newdlprefiles=	passes="conv scan dlopen dlpreopen link"	;;    *)  passes="conv"	;;    esac    for pass in $passes; do      if test "$linkmode,$pass" = "lib,link" ||	 test "$linkmode,$pass" = "prog,scan"; then	libs="$deplibs"	deplibs=      fi      if test "$linkmode" = prog; then	case $pass in	dlopen) libs="$dlfiles" ;;	dlpreopen) libs="$dlprefiles" ;;	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;	esac      fi      if test "$pass" = dlopen; then	# Collect dlpreopened libraries	save_deplibs="$deplibs"	deplibs=      fi      for deplib in $libs; do	lib=	found=no	case $deplib in	-l*)	  if test "$linkmode" != lib && test "$linkmode" != prog; then	    $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2	    continue	  fi	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do	    # Search the libtool library	    lib="$searchdir/lib${name}.la"	    if test -f "$lib"; then	      found=yes	      break	    fi	  done	  if test "$found" != yes; then	    # deplib doesn't seem to be a libtool library	    if test "$linkmode,$pass" = "prog,link"; then	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      deplibs="$deplib $deplibs"	      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"	    fi	    continue	  fi	  ;; # -l	-L*)	  case $linkmode in	  lib)	    deplibs="$deplib $deplibs"	    test "$pass" = conv && continue	    newdependency_libs="$deplib $newdependency_libs"	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  prog)	    if test "$pass" = conv; then	      deplibs="$deplib $deplibs"	      continue	    fi	    if test "$pass" = scan; then	      deplibs="$deplib $deplibs"	      newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    ;;	  *)	    $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2	    ;;	  esac # linkmode	  continue	  ;; # -L	-R*)	  if test "$pass" = link; then	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`	    # Make sure the xrpath contains only unique directories.	    case "$xrpath " in	    *" $dir "*) ;;	    *) xrpath="$xrpath $dir" ;;	    esac	  fi	  deplibs="$deplib $deplibs"	  continue	  ;;	*.la) lib="$deplib" ;;	*.$libext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  case $linkmode in	  lib)	    if test "$deplibs_check_method" != pass_all; then	      echo	      echo "*** Warning: Trying to link with static lib archive $deplib."	      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"	      echo "*** because the file extensions .$libext of this argument makes me believe"	      echo "*** that it is just a static archive that I should not used here."	    else	      echo	      echo "*** Warning: Linking the shared library $output against the"	      echo "*** static library $deplib is not portable!"	      deplibs="$deplib $deplibs"	    fi	    continue	    ;;	  prog)	    if test "$pass" != link; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    continue	    ;;	  esac # linkmode	  ;; # *.$libext	*.lo | *.$objext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	  elif test "$linkmode" = prog; then	    if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	      # If there is no dlopen support or we're linking statically,	      # we need to preload.	      newdlprefiles="$newdlprefiles $deplib"	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      newdlfiles="$newdlfiles $deplib"	    fi	  fi	  continue	  ;;	%DEPLIBS%)	  alldeplibs=yes	  continue	  ;;	esac # case $deplib	if test "$found" = yes || test -f "$lib"; then :	else	  $echo "$modename: cannot find the library \`$lib'" 1>&2	  exit 1	fi	# Check to see that this really is a libtool archive.	if (${SED} -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2	  exit 1	fi	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`	test "X$ladir" = "X$lib" && ladir="."	dlname=	dlopen=	dlpreopen=	libdir=	library_names=	old_library=	# If the library was installed with an old release of libtool,	# it will not redefine variable installed.	installed=yes	# Read the .la file	case $lib in	*/* | *\\*) . $lib ;;	*) . ./$lib ;;	esac	if test "$linkmode,$pass" = "lib,link" ||	   test "$linkmode,$pass" = "prog,scan" ||	   { test "$linkmode" != prog && test "$linkmode" != lib; }; then	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"	fi	if test "$pass" = conv; then	  # Only check for convenience libraries	  deplibs="$lib $deplibs"	  if test -z "$libdir"; then	    if test -z "$old_library"; then	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	      exit 1	    fi	    # It is a libtool convenience library, so add in its objects.	    convenience="$convenience $ladir/$objdir/$old_library"	    old_convenience="$old_convenience $ladir/$objdir/$old_library"	    tmp_libs=	    for deplib in $dependency_libs; do	      deplibs="$deplib $deplibs"              if test "X$duplicate_deps" = "Xyes" ; then	        case "$tmp_libs " in	        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	        esac              fi	      tmp_libs="$tmp_libs $deplib"	    done	  elif test "$linkmode" != prog && test "$linkmode" != lib; then	    $echo "$modename: \`$lib' is not a convenience library" 1>&2	    exit 1	  fi	  continue	fi # $pass = conv	# 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 \`$lib'" 1>&2	  exit 1	fi	# This library was specified with -dlopen.	if test "$pass" = dlopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2	    exit 1	  fi	  if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking	    # statically, we need to preload.  We also need to preload any	    # dependent libraries so libltdl's deplib preloader doesn't	    # bomb out in the load deplibs phase.	    dlprefiles="$dlprefiles $lib $dependency_libs"	  else	    newdlfiles="$newdlfiles $lib"	  fi	  continue	fi # $pass = dlopen	# We need an absolute path.	case $ladir in	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;	*)	  abs_ladir=`cd "$ladir" && pwd`	  if test -z "$abs_ladir"; then	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	    abs_ladir="$ladir"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人免费av在线| 亚洲伦在线观看| 韩国女主播一区二区三区| 欧美成人video| 国产激情视频一区二区在线观看 | 国产欧美视频一区二区三区| 久久爱www久久做| 国产亚洲女人久久久久毛片| av影院午夜一区| 一区二区三区蜜桃网| 欧美精品乱人伦久久久久久| 麻豆成人久久精品二区三区红 | 日韩欧美123| 国产一区二区三区| 中文字幕制服丝袜一区二区三区| 色婷婷综合久久久| 日韩高清在线不卡| 国产日本一区二区| 欧美在线影院一区二区| 麻豆精品精品国产自在97香蕉| 国产亚洲成年网址在线观看| 91国在线观看| 国产乱色国产精品免费视频| 亚洲精品中文在线观看| 欧美成人aa大片| 97久久超碰国产精品| 日本亚洲一区二区| 一区在线观看免费| 欧美xxxx老人做受| 欧美中文字幕久久| 丁香婷婷深情五月亚洲| 一区二区高清视频在线观看| 精品区一区二区| 欧美在线观看一区二区| 国产福利91精品| 天天综合日日夜夜精品| 国产精品免费aⅴ片在线观看| 在线播放中文字幕一区| 91在线国产观看| 国产在线不卡一区| 五月天精品一区二区三区| 久久女同性恋中文字幕| 欧美精品一二三四| 97se亚洲国产综合自在线观| 精品一区二区三区在线观看国产| 一区二区三区.www| 亚洲国产精品精华液ab| 精品久久久久香蕉网| 欧美三级电影一区| 色婷婷av久久久久久久| 丁香激情综合国产| 另类成人小视频在线| 亚洲香蕉伊在人在线观| 国产精品久久久久国产精品日日| 精品国产乱码久久久久久久| 欧美日韩免费电影| 在线中文字幕一区二区| 99久久精品国产一区| 成人晚上爱看视频| 国产呦精品一区二区三区网站| 亚洲成人av中文| 亚洲一区成人在线| 一区二区三区四区av| 中文字幕一区二区三| 国产精品婷婷午夜在线观看| 久久伊人蜜桃av一区二区| 日韩欧美国产电影| 日韩一区二区高清| 91精品国产综合久久久久| 精品视频一区二区三区免费| 99麻豆久久久国产精品免费 | 在线国产亚洲欧美| 91丨porny丨国产| 99久久99久久久精品齐齐 | 一本色道久久综合亚洲精品按摩| 国产凹凸在线观看一区二区| 国产精品系列在线播放| 国产一二三精品| 国产乱妇无码大片在线观看| 国内精品久久久久影院薰衣草| 免费成人深夜小野草| 日本成人在线网站| 久久电影网站中文字幕| 国内外成人在线| 成人午夜在线视频| 91美女视频网站| 欧美亚洲日本国产| 欧美日韩中文国产| 欧美一区二区视频在线观看| 欧美mv日韩mv国产网站| 国产色一区二区| 国产精品国产a| 亚洲一区视频在线| 日本不卡高清视频| 国产一区二区三区电影在线观看| 国产夫妻精品视频| 91在线国产福利| 制服丝袜中文字幕一区| 日韩欧美一二区| 国产人伦精品一区二区| 亚洲图片激情小说| 天天综合天天综合色| 国产一区二三区好的| 成人av网址在线观看| 欧美三区在线视频| 久久综合色之久久综合| ●精品国产综合乱码久久久久| 亚洲永久免费av| 国模冰冰炮一区二区| 99久久99精品久久久久久| 555www色欧美视频| 亚洲国产精品v| 亚洲成人免费看| 成人午夜免费av| 制服视频三区第一页精品| 国产精品美女久久久久久久久久久 | 国产精品丝袜91| 亚洲电影在线播放| 国产精品一二二区| 欧美日韩一级二级| 亚洲国产激情av| 秋霞av亚洲一区二区三| 波多野结衣中文字幕一区 | 91精品午夜视频| 中日韩av电影| 男人的天堂亚洲一区| 91香蕉视频在线| 久久综合九色综合97婷婷| 亚洲综合小说图片| 国产.精品.日韩.另类.中文.在线.播放| 色香蕉久久蜜桃| 国产欧美视频在线观看| 蜜臀久久99精品久久久画质超高清| www久久久久| 亚洲一区成人在线| 不卡视频一二三| 久久综合成人精品亚洲另类欧美 | 激情综合网最新| 欧美日韩综合不卡| 1区2区3区欧美| 国产一区二区美女诱惑| 欧美一区午夜视频在线观看| 综合中文字幕亚洲| 高清久久久久久| 精品国产亚洲在线| 日韩国产精品久久久久久亚洲| 91理论电影在线观看| 国产欧美视频一区二区| 精品一区二区三区的国产在线播放| 欧美色国产精品| 亚洲国产精品久久久男人的天堂 | 天天亚洲美女在线视频| 91浏览器打开| 综合在线观看色| 北条麻妃一区二区三区| 国产欧美一区二区三区在线看蜜臀 | 中文字幕在线免费不卡| 国产福利一区在线| 久久综合九色欧美综合狠狠| 免费观看一级特黄欧美大片| 51精品秘密在线观看| 日日欢夜夜爽一区| 欧美精品v国产精品v日韩精品| 亚洲一区二三区| 欧美日韩精品一区二区三区四区| 亚洲综合色区另类av| 欧美性色黄大片| 亚洲国产精品一区二区www在线| 色婷婷av一区二区三区软件| 亚洲视频精选在线| 91精品福利在线| 五月激情丁香一区二区三区| 欧美一级久久久| 国产原创一区二区三区| 日本一区二区视频在线| 99麻豆久久久国产精品免费优播| 亚洲欧洲精品天堂一级| 色综合久久久久网| 三级欧美韩日大片在线看| 日韩欧美一区二区视频| 国产一区在线看| 亚洲日本在线天堂| 欧美日韩综合在线免费观看| 全国精品久久少妇| 久久久综合网站| 成人精品国产福利| 一区二区三区美女| 欧美二区三区的天堂| 韩国毛片一区二区三区| 国产精品成人免费 | 欧美久久一二三四区| 日本欧美韩国一区三区| 久久久精品国产免费观看同学| 粉嫩一区二区三区性色av| 亚洲精品久久嫩草网站秘色| 欧美疯狂性受xxxxx喷水图片| 精品一区二区综合| 亚洲色大成网站www久久九九| 欧美巨大另类极品videosbest | 国产精品理伦片|