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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? libtool

?? oracle引用庫(kù)
??
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
	# 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*)	  # 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		      # The statement above tries to avoid entering an		      # endless loop below, in case of cyclic links.		      # We might still enter an endless loop, since a link		      # loop can be closed while we follow links,		      # but so what?		      potlib="$potent_lib"		      while test -h "$potlib" 2>/dev/null; do			potliblink=`ls -ld $potlib | sed 's/.* -> //'`			case "$potliblink" in			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;			esac		      done		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \			 | sed 10q \			 | egrep "$file_magic_regex" > /dev/null; then			newdeplibs="$newdeplibs $a_deplib"			a_deplib=""			break 2		      fi		    done	      done	      if test -n "$a_deplib" ; then		droppeddeps=yes		echo		echo "*** Warning: This library needs some functionality provided by $a_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."	      fi	    else	      # Add a -L argument.	      newdeplibs="$newdeplibs $a_deplib"	    fi	  done # Gone through all deplibs.	  ;;	none | unknown | *)	  newdeplibs=""	  if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \	       -e 's/ -[LR][^ ]*//g' -e 's/[ 	]//g' |	     grep . >/dev/null; then	    echo	    if test "X$deplibs_check_method" = "Xnone"; then	      echo "*** Warning: inter-library dependencies are not supported in this platform."	    else	      echo "*** Warning: inter-library dependencies are not known to be supported."	    fi	    echo "*** All declared inter-library dependencies are being dropped."	    droppeddeps=yes	  fi	  ;;	esac	versuffix=$versuffix_save	major=$major_save	release=$release_save	libname=$libname_save	name=$name_save	if test "$droppeddeps" = yes; then	  if test "$module" = yes; then	    echo	    echo "*** Warning: libtool could not satisfy all declared inter-library"	    echo "*** dependencies of module $libname.  Therefore, libtool will create"	    echo "*** a static module, that should work as long as the dlopening"	    echo "*** application is linked with the -dlopen flag."	    if test -z "$global_symbol_pipe"; then	      echo	      echo "*** However, this would only work if libtool was able to extract symbol"	      echo "*** lists from a program, using \`nm' or equivalent, but libtool could"	      echo "*** not find such a program.  So, this module is probably useless."	      echo "*** \`nm' from GNU binutils and a full rebuild may help."	    fi	    if test "$build_old_libs" = no; then	      oldlibs="$output_objdir/$libname.$libext"	      build_libtool_libs=module	      build_old_libs=yes	    else	      build_libtool_libs=no	    fi	  else	    echo "*** The inter-library dependencies that have been dropped here will be"	    echo "*** automatically added whenever a program is linked with this library"	    echo "*** or is declared to -dlopen it."	  fi	fi	# Done checking deplibs!	deplibs=$newdeplibs      fi      # All the library-specific variables (install_libdir is set above).      library_names=      old_library=      dlname=            # Test again, we may have decided not to build it any more      if test "$build_libtool_libs" = yes; then	# Get the real and link names of the library.	eval library_names=\"$library_names_spec\"	set dummy $library_names	realname="$2"	shift; shift	if test -n "$soname_spec"; then	  eval soname=\"$soname_spec\"	else	  soname="$realname"	fi	lib="$output_objdir/$realname"	for link	do	  linknames="$linknames $link"	done	# Ensure that we have .o objects for linkers which dislike .lo	# (e.g. aix) in case we are running --disable-static	for obj in $libobjs; do	  xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$xdir" = "X$obj"; then	    xdir="."	  else	    xdir="$xdir"	  fi	  baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`	  oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`	  if test ! -f $xdir/$oldobj; then	    $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"	    $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?	  fi	done	# Use standard objects if they are pic	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`	# Prepare the list of exported symbols	if test -z "$export_symbols"; then	  if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then	    $show "generating symbol list for \`$libname.la'"	    export_symbols="$output_objdir/$libname.exp"	    $run $rm $export_symbols	    eval cmds=\"$export_symbols_cmds\"	    IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'	    for cmd in $cmds; do	      IFS="$save_ifs"	      $show "$cmd"	      $run eval "$cmd" || exit $?	    done	    IFS="$save_ifs"	    if test -n "$export_symbols_regex"; then	      $show "egrep -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""	      $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'	      $show "$mv \"${export_symbols}T\" \"$export_symbols\""	      $run eval '$mv "${export_symbols}T" "$export_symbols"'	    fi	  fi	fi	if test -n "$export_symbols" && test -n "$include_expsyms"; then	  $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'	fi	if test -n "$convenience"; then	  if test -n "$whole_archive_flag_spec"; then	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"	  else	    gentop="$output_objdir/${outputname}x"	    $show "${rm}r $gentop"	    $run ${rm}r "$gentop"	    $show "mkdir $gentop"	    $run mkdir "$gentop"	    status=$?	    if test $status -ne 0 && test ! -d "$gentop"; then	      exit $status	    fi	    generated="$generated $gentop"	    for xlib in $convenience; do	      # Extract the objects.	      case "$xlib" in	      [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;	      *) xabs=`pwd`"/$xlib" ;;	      esac	      xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`	      xdir="$gentop/$xlib"	      $show "${rm}r $xdir"	      $run ${rm}r "$xdir"	      $show "mkdir $xdir"	      $run mkdir "$xdir"	      status=$?	      if test $sta

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
2020日本不卡一区二区视频| 中文字幕在线不卡| 成人av网址在线| 亚洲福利视频三区| 国产精品毛片无遮挡高清| 欧美一区二区视频网站| 99久久国产综合精品色伊| 麻豆精品一二三| 夜夜嗨av一区二区三区四季av| 久久蜜桃av一区精品变态类天堂 | 国产精品无圣光一区二区| 欧美三级电影精品| 91尤物视频在线观看| 久久97超碰色| 奇米精品一区二区三区在线观看| 亚洲影院理伦片| 国产精品第13页| 国产色一区二区| 精品国产乱码久久| 91精品免费在线| 欧美伊人精品成人久久综合97| 成人免费看的视频| 国产精品资源在线| 激情丁香综合五月| 六月丁香综合在线视频| 日韩精品91亚洲二区在线观看| 一区二区三区在线不卡| 中文字幕五月欧美| 亚洲国产精品成人综合色在线婷婷| 日韩精品一区二区三区蜜臀| 宅男在线国产精品| 51精品视频一区二区三区| 欧美日韩综合一区| 欧美中文一区二区三区| 欧美亚洲尤物久久| 欧美日韩国产一区二区三区地区| 日本韩国欧美在线| 色哟哟国产精品| 在线观看日韩电影| 欧美日韩一区二区三区在线看 | 狠狠色狠狠色综合日日91app| 日韩制服丝袜av| 日本在线不卡视频| 老司机一区二区| 久久成人久久鬼色| 国内精品免费在线观看| 国产高清精品网站| av综合在线播放| 色综合天天综合狠狠| 91国模大尺度私拍在线视频| 欧美亚洲综合久久| 欧美一区二区三区系列电影| 日韩女同互慰一区二区| 精品福利一区二区三区| 国产午夜精品一区二区| 国产精品美女久久久久久久| 亚洲精品免费在线| 不卡的电影网站| 久久久久久久久久久久久女国产乱| 欧美变态口味重另类| 久久久午夜电影| 韩国av一区二区三区在线观看| 久久精品免费看| 一区二区三区不卡视频| 国产在线精品一区二区| 欧美视频在线播放| 国产精品久久三区| 九色综合狠狠综合久久| 精品视频一区三区九区| 国产精品美女www爽爽爽| 韩国一区二区在线观看| 欧美精品在线一区二区| 一区二区在线免费观看| 成人av网站免费观看| 精品国产91乱码一区二区三区| 亚洲成人av一区二区| 99久久伊人久久99| 国产清纯美女被跳蛋高潮一区二区久久w | 色老头久久综合| 国产亚洲视频系列| 久久精品国产色蜜蜜麻豆| 欧美色综合影院| 亚洲人成精品久久久久久 | wwwwxxxxx欧美| 日本大胆欧美人术艺术动态| 欧美最猛黑人xxxxx猛交| 亚洲欧美日韩在线| 99国产精品久久久久| 国产欧美一区二区精品婷婷| 精品一区二区三区久久| 日韩视频永久免费| 偷拍日韩校园综合在线| 精品视频一区三区九区| 亚洲国产人成综合网站| 欧美亚洲国产bt| 一区二区三区四区中文字幕| 91原创在线视频| 最近日韩中文字幕| 成人动漫一区二区在线| 中文字幕在线观看一区二区| 成人免费毛片高清视频| 欧美高清在线视频| 成人av资源在线| 中文字幕中文在线不卡住| 不卡的av中国片| 亚洲老司机在线| 欧美视频一区二区三区在线观看| 亚洲观看高清完整版在线观看| 精品视频1区2区3区| 五月激情六月综合| 日韩一级片在线播放| 美国欧美日韩国产在线播放| 日韩一二三四区| 国产一区二区在线影院| 国产日韩欧美精品在线| 91在线高清观看| 午夜精品久久一牛影视| 91精品综合久久久久久| 激情综合五月天| 国产片一区二区三区| 91原创在线视频| 亚洲成人动漫av| 精品国产自在久精品国产| 国产精品一卡二卡在线观看| 国产精品伦一区二区三级视频| 91国产免费看| 久久不见久久见中文字幕免费| 国产三级一区二区| 色婷婷av一区二区三区之一色屋| 亚洲成人av资源| 久久久久国产一区二区三区四区| 成人在线视频一区二区| 亚洲男帅同性gay1069| 91精品国产综合久久国产大片 | 4438成人网| 国产99久久久精品| 亚洲网友自拍偷拍| www国产亚洲精品久久麻豆| 91在线国产观看| 日韩精品一级二级| 国产日本一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 久久99精品久久久久久国产越南| 中文字幕免费不卡| 欧美日韩国产美| 国产高清成人在线| 亚洲成人在线观看视频| 久久午夜色播影院免费高清| 色婷婷精品大视频在线蜜桃视频 | 色婷婷亚洲一区二区三区| 免费成人美女在线观看.| 国产精品盗摄一区二区三区| 91麻豆精品国产91久久久久久| 成人一区在线观看| 日本欧美加勒比视频| 国产精品高清亚洲| 欧美成人欧美edvon| 91在线观看地址| 国产一区视频在线看| 亚洲激情网站免费观看| 欧美成人video| 欧美最新大片在线看| 岛国av在线一区| 日本v片在线高清不卡在线观看| 国产精品全国免费观看高清| 欧美日韩另类一区| 99久久久久免费精品国产| 理论片日本一区| 亚洲1区2区3区4区| 亚洲欧美日韩中文播放| 国产性色一区二区| 日韩视频一区二区| 欧美影视一区二区三区| 成人av中文字幕| 国产一区二区女| 奇米色777欧美一区二区| 夜夜嗨av一区二区三区中文字幕 | 中文字幕巨乱亚洲| 精品日本一线二线三线不卡| 欧美三级日本三级少妇99| 99在线视频精品| 国产成人午夜99999| 韩国女主播一区二区三区| 日韩高清中文字幕一区| 一区二区三区在线视频观看| 亚洲国产高清不卡| 2022国产精品视频| 欧美tickling挠脚心丨vk| 欧美浪妇xxxx高跟鞋交| 在线观看91视频| 色综合一区二区| a在线欧美一区| 北条麻妃一区二区三区| 国产jizzjizz一区二区| 国产综合成人久久大片91| 九九精品视频在线看| 蜜桃久久久久久久| 美女网站视频久久| 奇米一区二区三区av| 欧美aaa在线|