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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ltmain.sh

?? linux下佳能數(shù)碼相機使用源碼
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  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 the base 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    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`    if test "X$xdir" = "X$obj"; then      xdir=    else      xdir=$xdir/    fi    lobj=${xdir}$objdir/$objname    if test -z "$base_compile"; then      $echo "$modename: you must specify a compilation command" 1>&2      $echo "$help" 1>&2      exit 1    fi    # Delete any leftover library objects.    if test "$build_old_libs" = yes; then      removelist="$obj $lobj $libobj ${libobj}T"    else      removelist="$lobj $libobj ${libobj}T"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit 1" 1 2 15    # On Cygwin there's no "real" PIC flag so we must build both object types    case $host_os in    cygwin* | mingw* | pw32* | os2*)      pic_mode=default      ;;    esac    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then      # non-PIC code in shared libraries is not supported      pic_mode=default    fi    # Calculate the filename of the output object if compiler does    # not support -o with -c    if test "$compiler_c_o" = no; then      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}      lockfile="$output_obj.lock"      removelist="$removelist $output_obj $lockfile"      trap "$run $rm $removelist; exit 1" 1 2 15    else      output_obj=      need_locks=no      lockfile=    fi    # Lock this critical section if it is needed    # We use this script file to make the link, it avoids creating a new file    if test "$need_locks" = yes; then      until $run ln "$0" "$lockfile" 2>/dev/null; do	$show "Waiting for $lockfile to be removed"	sleep 2      done    elif test "$need_locks" = warn; then      if test -f "$lockfile"; then	echo "\*** ERROR, $lockfile exists and contains:`cat $lockfile 2>/dev/null`This 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 1      fi      echo $srcfile > "$lockfile"    fi    if test -n "$fix_srcfile_path"; then      eval srcfile=\"$fix_srcfile_path\"    fi    $run $rm "$libobj" "${libobj}T"    # Create a libtool object file (analogous to a ".la" file),    # but don't create it if we're doing a dry run.    test -z "$run" && cat > ${libobj}T <<EOF# $libobj - a libtool object file# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP## Please DO NOT delete this file!# It is necessary for linking the library.# Name of the PIC object.EOF    # Only build a PIC object if we are building libtool libraries.    if test "$build_libtool_libs" = yes; then      # Without this assignment, base_compile gets emptied.      fbsd_hideous_sh_bug=$base_compile      if test "$pic_mode" != no; then	command="$base_compile $srcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	status=$?	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $status	fi      fi      if test -z "$output_obj"; then	# Place PIC objects in $objdir	command="$command -o $lobj"      fi      $run $rm "$lobj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	test -n "$output_obj" && $run $rm $removelist	exit 1      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 1      fi      # 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.      suppress_output=' >/dev/null 2>&1'    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 $srcfile"      else	command="$base_compile $srcfile $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 "$command"; then :      else	$run $rm $removelist	exit 1      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 1      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 0    ;;  # 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 invokation.      # 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`    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=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    # We need to know -static, to get the right output filenames.    for arg    do      case $arg in      -all-static | -static)	if test "X$arg" = "X-all-static"; then	  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	else	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	fi	build_libtool_libs=no	build_old_libs=yes	prefer_static_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"      base_compile="$base_compile $arg"      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 1	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_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 | egrep "^# 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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆精品在线观看| 国内久久精品视频| 欧美三级欧美一级| 亚洲第一综合色| 91麻豆精品国产| 麻豆国产一区二区| 国产午夜亚洲精品不卡| av一区二区三区黑人| 亚洲免费观看高清在线观看| 色综合天天在线| 亚洲高清免费在线| 亚洲精品一区二区三区福利| 国产成人av电影在线| 日韩理论片网站| 欧美日韩国产不卡| 国产一区 二区| 亚洲日本中文字幕区| 欧美日韩在线电影| 国产真实乱子伦精品视频| 国产精品电影一区二区三区| 欧美剧情片在线观看| 久久电影网电视剧免费观看| 成人欧美一区二区三区在线播放| 欧美在线色视频| 国产毛片一区二区| 亚洲自拍偷拍欧美| 欧美精品一区二区久久婷婷| 99久久精品国产麻豆演员表| 午夜电影网一区| 国产精品无人区| 欧美一级免费大片| 91丝袜国产在线播放| 韩国三级电影一区二区| 亚洲伦理在线精品| 久久蜜桃香蕉精品一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 奇米在线7777在线精品| 亚洲色欲色欲www| 久久久一区二区三区捆绑**| 欧美午夜影院一区| 成人涩涩免费视频| 天堂蜜桃一区二区三区| 国产精品久久777777| 精品成人佐山爱一区二区| 精品视频1区2区| 91啪九色porn原创视频在线观看| 国产一区二区三区黄视频| 亚洲电影一区二区| 亚洲免费av高清| 亚洲国产岛国毛片在线| 久久在线观看免费| 91精品国产综合久久精品图片 | 99精品欧美一区二区蜜桃免费| 视频一区欧美精品| 一区二区三区在线免费视频| 久久精品男人天堂av| 欧美一区二区福利视频| 欧美日韩在线播| 91麻豆蜜桃一区二区三区| 成人免费看黄yyy456| 极品尤物av久久免费看| 青青青伊人色综合久久| 日韩av午夜在线观看| 午夜精品福利一区二区蜜股av| 亚洲免费在线视频一区 二区| 欧美韩国一区二区| 久久久www成人免费毛片麻豆| 欧美一级欧美一级在线播放| 91精品国产综合久久精品性色 | 6080国产精品一区二区| 欧美性生活久久| 欧美在线你懂得| 欧美日韩在线播放| 欧美情侣在线播放| 欧美一区在线视频| 欧美一区二区三区免费视频| 欧美精品丝袜久久久中文字幕| 欧美性生活久久| 88在线观看91蜜桃国自产| 欧美日韩日日摸| 欧美二区三区的天堂| 欧美一卡在线观看| 精品免费日韩av| 国产亚洲欧美日韩日本| 国产日产欧美一区二区三区| 国产精品成人一区二区艾草| 最新不卡av在线| 亚洲第一福利视频在线| 免费欧美在线视频| 久久精品国产精品亚洲红杏| 国产乱码精品1区2区3区| 成人小视频在线| 欧美综合亚洲图片综合区| 欧美丰满少妇xxxxx高潮对白| 欧美精品日韩一本| 精品国产sm最大网站| 国产精品剧情在线亚洲| 一区二区高清免费观看影视大全| 亚洲福利国产精品| 激情综合色播激情啊| 福利一区二区在线| 在线观看中文字幕不卡| 日韩精品自拍偷拍| 国产精品久久久久aaaa| 日韩国产欧美一区二区三区| 国产一区999| 欧美在线你懂的| 2020国产成人综合网| 亚洲视频一区二区在线观看| 五月激情丁香一区二区三区| 国产剧情av麻豆香蕉精品| 91亚洲永久精品| 日韩精品一区二区三区老鸭窝| 亚洲国产高清aⅴ视频| 亚洲444eee在线观看| 国产成人综合视频| 欧美日韩国产免费| 亚洲国产精品成人久久综合一区 | 国产精品理伦片| 午夜精彩视频在线观看不卡| 丁香啪啪综合成人亚洲小说 | 欧美日本一区二区| 欧美国产精品一区二区| 免费看日韩a级影片| 91麻豆免费视频| 久久久99久久| 亚洲v日本v欧美v久久精品| 成人国产精品免费观看动漫 | 欧美日韩三级在线| 国产精品乱人伦中文| 麻豆精品在线视频| 精品污污网站免费看| 中文字幕在线观看一区二区| 久久精品国产一区二区| 欧美性大战久久久久久久蜜臀| 精品国产三级a在线观看| 亚洲一二三四区不卡| 丁香一区二区三区| 日韩欧美在线1卡| 午夜精品福利一区二区蜜股av| 91美女在线视频| 欧美国产乱子伦| 国产一区二区影院| 精品国产露脸精彩对白| 午夜久久久久久久久| 色综合色综合色综合色综合色综合| 久久久亚洲精品一区二区三区| 日本不卡高清视频| 欧美日韩dvd在线观看| 亚洲一区二区三区不卡国产欧美 | 久久99精品国产麻豆婷婷洗澡| 欧美性大战久久久久久久蜜臀 | 欧美日本一区二区在线观看| 一区二区免费在线播放| av亚洲精华国产精华精华| 精品久久国产字幕高潮| 久久精品国产一区二区三| 欧美一区二区精品| 奇米色一区二区三区四区| 欧美一三区三区四区免费在线看| 同产精品九九九| 69堂亚洲精品首页| 爽好多水快深点欧美视频| 欧美日韩精品欧美日韩精品| 亚洲国产精品久久一线不卡| 欧美在线影院一区二区| 亚洲福利一区二区| 欧美一级一区二区| 精品无人码麻豆乱码1区2区| 亚洲精品在线观看视频| 国产黄人亚洲片| 国产精品久久久久久久久免费相片 | 久久免费美女视频| 高清国产午夜精品久久久久久| 国产精品欧美一区二区三区| www.亚洲免费av| 亚洲女同一区二区| 欧美三级电影一区| 水蜜桃久久夜色精品一区的特点| 日韩欧美综合一区| 国产一区激情在线| 国产精品久久毛片a| 色综合久久天天| 偷拍自拍另类欧美| 久久综合色婷婷| 99久久亚洲一区二区三区青草| 亚洲私人黄色宅男| 在线播放中文字幕一区| 精品无人码麻豆乱码1区2区 | 亚洲国产一区二区三区| 91精品久久久久久久91蜜桃| 韩国av一区二区| 亚洲视频精选在线| 91精品久久久久久久91蜜桃| 国产伦精品一区二区三区视频青涩 | 风间由美性色一区二区三区| 亚洲欧美视频一区| 日韩久久精品一区| 94-欧美-setu| 日本免费新一区视频|