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

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

?? aclocal.m4

?? ARM交叉編譯工具鏈
?? M4
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
# 02111-1307, USA.AC_DEFUN([AM_PROG_INSTALL_SH],[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnlinstall_sh=${install_sh-"$am_aux_dir/install-sh"}AC_SUBST(install_sh)])# AM_PROG_INSTALL_STRIP# Copyright 2001 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.# One issue with vendor `install' (even GNU) is that you can't# specify the program used to strip binaries.  This is especially# annoying in cross-compiling environments, where the build's strip# is unlikely to handle the host's binaries.# Fortunately install-sh will honor a STRIPPROG variable, so we# always use install-sh in `make install-strip', and initialize# STRIPPROG with the value of the STRIP variable (set by the user).AC_DEFUN([AM_PROG_INSTALL_STRIP],[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl# Installed binaries are usually stripped using `strip' when the user# run `make install-strip'.  However `strip' might not be the right# tool to use in cross-compilation environments, therefore Automake# will honor the `STRIP' environment variable to overrule this program.dnl Don't test for $cross_compiling = yes, because it might be `maybe'.if test "$cross_compiling" != no; then  AC_CHECK_TOOL([STRIP], [strip], :)fiINSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"AC_SUBST([INSTALL_STRIP_PROGRAM])])# serial 4						-*- Autoconf -*-# Copyright 1999, 2000, 2001 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be# written in clear, in which case automake, when reading aclocal.m4,# will think it sees a *use*, and therefore will trigger all it's# C support machinery.  Also note that it means that autoscan, seeing# CC etc. in the Makefile, will ask for an AC_PROG_CC use...# _AM_DEPENDENCIES(NAME)# ----------------------# See how the compiler implements dependency checking.# NAME is "CC", "CXX", "GCJ", or "OBJC".# We try a few techniques and use that to set a single cache variable.## We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular# dependency, and given that the user is not expected to run this macro,# just rely on AC_PROG_CC.AC_DEFUN([_AM_DEPENDENCIES],[AC_REQUIRE([AM_SET_DEPDIR])dnlAC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnlAC_REQUIRE([AM_MAKE_INCLUDE])dnlAC_REQUIRE([AM_DEP_TRACK])dnlifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],                   [depcc="$$1"   am_compiler_list=])AC_CACHE_CHECK([dependency style of $depcc],               [am_cv_$1_dependencies_compiler_type],[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then  # We make a subdir and do the tests there.  Otherwise we can end up  # making bogus files that we don't know about and never remove.  For  # instance it was reported that on HP-UX the gcc test will end up  # making a dummy file named `D' -- because `-MD' means `put the output  # in D'.  mkdir conftest.dir  # Copy depcomp to subdir because otherwise we won't find it if we're  # using a relative directory.  cp "$am_depcomp" conftest.dir  cd conftest.dir  am_cv_$1_dependencies_compiler_type=none  if test "$am_compiler_list" = ""; then     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`  fi  for depmode in $am_compiler_list; do    # We need to recreate these files for each test, as the compiler may    # overwrite some of them when testing with obscure command lines.    # This happens at least with the AIX C compiler.    echo '#include "conftest.h"' > conftest.c    echo 'int i;' > conftest.h    echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf    case $depmode in    nosideeffect)      # after this tag, mechanisms are not by side-effect, so they'll      # only be used when explicitly requested      if test "x$enable_dependency_tracking" = xyes; then	continue      else	break      fi      ;;    none) break ;;    esac    # We check with `-c' and `-o' for the sake of the "dashmstdout"    # mode.  It turns out that the SunPro C++ compiler does not properly    # handle `-M -o', and we need to detect this.    if depmode=$depmode \       source=conftest.c object=conftest.o \       depfile=conftest.Po tmpdepfile=conftest.TPo \       $SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&       grep conftest.h conftest.Po > /dev/null 2>&1 &&       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then      am_cv_$1_dependencies_compiler_type=$depmode      break    fi  done  cd ..  rm -rf conftest.direlse  am_cv_$1_dependencies_compiler_type=nonefi])AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])])# AM_SET_DEPDIR# -------------# Choose a directory name for dependency files.# This macro is AC_REQUIREd in _AM_DEPENDENCIESAC_DEFUN([AM_SET_DEPDIR],[rm -f .deps 2>/dev/nullmkdir .deps 2>/dev/nullif test -d .deps; then  DEPDIR=.depselse  # MS-DOS does not allow filenames that begin with a dot.  DEPDIR=_depsfirmdir .deps 2>/dev/nullAC_SUBST([DEPDIR])])# AM_DEP_TRACK# ------------AC_DEFUN([AM_DEP_TRACK],[AC_ARG_ENABLE(dependency-tracking,[  --disable-dependency-tracking Speeds up one-time builds  --enable-dependency-tracking  Do not reject slow dependency extractors])if test "x$enable_dependency_tracking" != xno; then  am_depcomp="$ac_aux_dir/depcomp"  AMDEPBACKSLASH='\'fiAM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])AC_SUBST([AMDEPBACKSLASH])])# Generate code to set up dependency tracking.   -*- Autoconf -*-# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.#serial 2# _AM_OUTPUT_DEPENDENCY_COMMANDS# ------------------------------AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],[for mf in $CONFIG_FILES; do  # Strip MF so we end up with the name of the file.  mf=`echo "$mf" | sed -e 's/:.*$//'`  # Check whether this is an Automake generated Makefile or not.  # We used to match only the files named `Makefile.in', but  # some people rename them; so instead we look at the file content.  # Grep'ing the first line is not enough: some people post-process  # each Makefile.in and add a new line on top of each file to say so.  # So let's grep whole file.  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then    dirpart=`AS_DIRNAME("$mf")`  else    continue  fi  grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue  # Extract the definition of DEP_FILES from the Makefile without  # running `make'.  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`  test -z "$DEPDIR" && continue  # When using ansi2knr, U may be empty or an underscore; expand it  U=`sed -n -e '/^U = / s///p' < "$mf"`  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"  # We invoke sed twice because it is the simplest approach to  # changing $(DEPDIR) to its actual value in the expansion.  for file in `sed -n -e '    /^DEP_FILES = .*\\\\$/ {      s/^DEP_FILES = //      :loop	s/\\\\$//	p	n	/\\\\$/ b loop      p    }    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do    # Make sure the directory exists.    test -f "$dirpart/$file" && continue    fdir=`AS_DIRNAME(["$file"])`    AS_MKDIR_P([$dirpart/$fdir])    # echo "creating $dirpart/$file"    echo '# dummy' > "$dirpart/$file"  donedone])# _AM_OUTPUT_DEPENDENCY_COMMANDS# AM_OUTPUT_DEPENDENCY_COMMANDS# -----------------------------# This macro should only be invoked once -- use via AC_REQUIRE.## This code is only required when automatic dependency tracking# is enabled.  FIXME.  This creates each `.P' file that we will# need in order to bootstrap the dependency handling code.AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],[AC_CONFIG_COMMANDS([depfiles],     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])])# Copyright 2001 Free Software Foundation, Inc.             -*- Autoconf -*-# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.# serial 2# AM_MAKE_INCLUDE()# -----------------# Check to see how make treats includes.AC_DEFUN([AM_MAKE_INCLUDE],[am_make=${MAKE-make}cat > confinc << 'END'doit:	@echo doneEND# If we don't find an include directive, just comment out the code.AC_MSG_CHECKING([for style of include used by $am_make])am__include="#"am__quote=_am_result=none# First try GNU make style include.echo "include confinc" > confmf# We grep out `Entering directory' and `Leaving directory'# messages which can occur if `w' ends up in MAKEFLAGS.# In particular we don't look at `^make:' because GNU make might# be invoked under some other name (usually "gmake"), in which# case it prints its new name instead of `make'.if test "`$am_make -s -f confmf 2> /dev/null | fgrep -v 'ing directory'`" = "done"; then   am__include=include   am__quote=   _am_result=GNUfi# Now try BSD make style include.if test "$am__include" = "#"; then   echo '.include "confinc"' > confmf   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then      am__include=.include      am__quote="\""      _am_result=BSD   fifiAC_SUBST(am__include)AC_SUBST(am__quote)AC_MSG_RESULT($_am_result)rm -f confinc confmf])# AM_CONDITIONAL                                              -*- Autoconf -*-# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.# serial 5AC_PREREQ(2.52)# AM_CONDITIONAL(NAME, SHELL-CONDITION)# -------------------------------------# Define a conditional.AC_DEFUN([AM_CONDITIONAL],[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnlAC_SUBST([$1_TRUE])AC_SUBST([$1_FALSE])if $2; then  $1_TRUE=  $1_FALSE='#'else  $1_TRUE='#'  $1_FALSE=fiAC_CONFIG_COMMANDS_PRE([if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then  AC_MSG_ERROR([conditional \"$1\" was never defined.Usually this means the macro was only invoked conditionally.])fi])])

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性受xxxx黑人xyx| 欧美日韩aaa| 蜜桃传媒麻豆第一区在线观看| 亚洲精品一线二线三线无人区| 一本到高清视频免费精品| 免费亚洲电影在线| 亚洲精品国产第一综合99久久| 日韩精品自拍偷拍| 欧美影院精品一区| 成人免费视频免费观看| 三级欧美在线一区| 一区二区三区四区精品在线视频| 久久色视频免费观看| 56国语精品自产拍在线观看| 99精品欧美一区二区三区小说| 美女视频网站黄色亚洲| 亚洲一区二区五区| 一区在线播放视频| 国产偷v国产偷v亚洲高清| 欧美一区二区三区的| 日本精品一区二区三区四区的功能| 国产在线看一区| 免费成人美女在线观看.| 一区二区三区色| 国产精品久久久久久亚洲毛片 | 99精品视频中文字幕| 久久国产欧美日韩精品| 亚洲成人综合视频| 亚洲一区在线视频| 亚洲美女区一区| 成人欧美一区二区三区视频网页| 久久九九久精品国产免费直播| 欧美一二三区在线观看| 在线播放中文字幕一区| 欧美日韩五月天| 欧美欧美欧美欧美| 91精品婷婷国产综合久久性色 | 久久精品国产亚洲5555| 青青草97国产精品免费观看| 亚洲成av人片观看| 亚洲国产一区视频| 亚洲成人资源网| 偷窥国产亚洲免费视频| 亚洲不卡av一区二区三区| 一区二区三区在线观看欧美| 亚洲综合在线免费观看| 亚洲国产乱码最新视频 | 成人av网站在线观看| 成人精品视频.| 99久久99久久综合| 91成人在线精品| 欧美三区在线视频| 日韩视频国产视频| 久久天天做天天爱综合色| 精品精品国产高清a毛片牛牛| 精品成人一区二区三区四区| 26uuu精品一区二区| 欧美激情一区二区三区在线| 亚洲色图丝袜美腿| 香蕉久久一区二区不卡无毒影院| 日日噜噜夜夜狠狠视频欧美人| 青草av.久久免费一区| 国产一区二区按摩在线观看| 国产69精品久久777的优势| 97精品超碰一区二区三区| 欧美日韩黄色一区二区| 日韩一级二级三级| 久久九九99视频| 自拍偷拍国产精品| 日韩av午夜在线观看| 国产成人一区二区精品非洲| av激情综合网| 欧美日韩国产电影| 久久久99免费| 亚洲精品乱码久久久久久黑人 | 亚洲一线二线三线视频| 看电视剧不卡顿的网站| 成人高清免费在线播放| 在线欧美小视频| 日韩三级在线观看| 国产精品免费久久久久| 亚洲成人在线网站| 粉嫩aⅴ一区二区三区四区五区| 色一区在线观看| 日韩三级在线观看| 亚洲欧美偷拍卡通变态| 免费观看久久久4p| av成人老司机| 日韩三级在线免费观看| 亚洲男同1069视频| 黑人巨大精品欧美一区| 欧美中文字幕一区二区三区亚洲| 欧美xxxxx裸体时装秀| 亚洲乱码国产乱码精品精98午夜 | 国产剧情一区二区三区| 欧美色爱综合网| 国产精品对白交换视频| 开心九九激情九九欧美日韩精美视频电影 | 久久免费精品国产久精品久久久久| 亚洲免费观看在线视频| 国产九九视频一区二区三区| 欧美日韩另类国产亚洲欧美一级| 国产精品青草综合久久久久99| 日本在线不卡一区| 色欧美日韩亚洲| 国产精品―色哟哟| 国产乱码精品一区二区三区忘忧草| 精品婷婷伊人一区三区三| 中文乱码免费一区二区| 强制捆绑调教一区二区| 欧美日韩在线一区二区| 1024亚洲合集| 国产成人午夜片在线观看高清观看| 欧美精选在线播放| 一区二区在线观看av| 成人一级片在线观看| 2024国产精品| 免费一级欧美片在线观看| 欧美日韩高清在线| 亚洲最色的网站| 日本道在线观看一区二区| 国产精品不卡一区二区三区| 国产激情视频一区二区在线观看| 日韩一区二区中文字幕| 视频一区二区不卡| 欧美视频一区二区三区| 亚洲国产精品欧美一二99| 欧美性色综合网| 亚洲天天做日日做天天谢日日欢| 成人丝袜视频网| 欧美国产欧美综合| 成人ar影院免费观看视频| 国产精品视频麻豆| 成人福利视频网站| 亚洲色图在线看| 91福利精品第一导航| 亚洲午夜av在线| 欧美丰满一区二区免费视频| 亚洲自拍另类综合| 欧美性生活影院| 日韩精品一区第一页| 欧美一区二区三区婷婷月色| 日韩电影在线一区| 日韩精品一区二区三区视频播放 | 91视视频在线观看入口直接观看www | 精品国产成人系列| 黄页网站大全一区二区| 久久久亚洲精品石原莉奈| 国产成人精品综合在线观看 | 韩国av一区二区三区在线观看| 精品国产污污免费网站入口 | 国产一区二区三区蝌蚪| 久久久久九九视频| 成人综合激情网| 亚洲毛片av在线| 欧美裸体一区二区三区| 蜜桃视频一区二区三区 | 亚洲成av人片www| 精品1区2区3区| 美腿丝袜亚洲一区| 久久色中文字幕| 99国内精品久久| 婷婷中文字幕一区三区| 精品国产三级a在线观看| 国产99久久久国产精品| 亚洲精品亚洲人成人网| 欧美精品一二三| 国产精选一区二区三区| 中文字幕在线不卡视频| 欧美日韩精品一区二区三区| 看片的网站亚洲| 中文字幕一区二区不卡| 欧美精品vⅰdeose4hd| 青青国产91久久久久久| 亚洲国产激情av| 欧美三级电影在线看| 国产美女主播视频一区| 亚洲免费观看高清完整版在线观看| 欧美日韩黄视频| 国产成人免费视频网站高清观看视频| 一区二区三区av电影| 欧美mv和日韩mv的网站| 91色porny在线视频| 另类的小说在线视频另类成人小视频在线 | 欧美亚洲综合网| 精品一区二区三区的国产在线播放 | 亚洲欧洲日本在线| 91精品国产综合久久久蜜臀图片 | 国内精品久久久久影院薰衣草| 国产精品不卡一区| 日韩欧美精品三级| 色综合久久综合中文综合网| 久久精品国产亚洲高清剧情介绍| 亚洲美女免费视频| 久久久久99精品一区| 欧美日本不卡视频| 99re66热这里只有精品3直播| 理论电影国产精品| 亚洲一卡二卡三卡四卡 | 日本在线播放一区二区三区|