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

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

?? aclocal.m4

?? 一個開源的VPN原碼
?? M4
?? 第 1 頁 / 共 3 頁
字號:
# 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/:.*$//'`  if (sed 1q $mf | fgrep 'generated by automake') > /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])])

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国模冰冰炮一区二区| 欧美日韩一区二区电影| 国产成人av资源| 国产精品一区专区| 国产在线精品一区二区| 国产一区二区看久久| 国内一区二区视频| 国产成人自拍在线| jlzzjlzz亚洲女人18| 91视视频在线直接观看在线看网页在线看| kk眼镜猥琐国模调教系列一区二区| 成人免费毛片嘿嘿连载视频| 成人精品小蝌蚪| 一本色道亚洲精品aⅴ| 在线视频欧美精品| 日韩一区二区三区观看| 久久久久一区二区三区四区| 国产欧美一区二区在线观看| 国产精品乱人伦中文| 亚洲最大成人综合| 天天综合网 天天综合色| 麻豆一区二区在线| 国产+成+人+亚洲欧洲自线| 99精品欧美一区二区三区小说 | 国产成人免费在线| 成人h动漫精品一区二| 色狠狠一区二区三区香蕉| 91麻豆精品国产综合久久久久久| 欧美一区二区三区在| 久久久www成人免费毛片麻豆| 国产精品成人在线观看| 视频精品一区二区| 国产99久久久久久免费看农村| 日本乱码高清不卡字幕| 7777精品伊人久久久大香线蕉经典版下载 | 久久综合色天天久久综合图片| 中文字幕电影一区| 亚洲一区二区欧美激情| 久久成人久久爱| 99在线热播精品免费| 8x8x8国产精品| 欧美激情一区二区三区不卡| 亚洲二区在线视频| 国产馆精品极品| 欧美网站一区二区| 欧美韩国日本不卡| 亚洲国产精品一区二区久久| 国产精品1024| 欧美欧美午夜aⅴ在线观看| 国产亚洲精品7777| 午夜在线电影亚洲一区| 成人综合婷婷国产精品久久蜜臀 | 91精品国产色综合久久ai换脸| 久久免费看少妇高潮| 樱花影视一区二区| 国产激情精品久久久第一区二区| 欧美伊人精品成人久久综合97| 久久久91精品国产一区二区三区| 亚洲国产精品影院| 99综合影院在线| 久久蜜桃av一区精品变态类天堂| 亚洲高清视频的网址| 成人在线视频一区二区| 日韩区在线观看| 亚洲国产精品天堂| 99久久精品免费| 亚洲综合男人的天堂| 国产一本一道久久香蕉| 欧美日韩午夜影院| 亚洲精品乱码久久久久久日本蜜臀| 国产一区二区看久久| 欧美一级夜夜爽| 亚洲五码中文字幕| 91麻豆国产自产在线观看| 久久精品综合网| 精品制服美女久久| 欧美精品久久一区| 一区二区三区 在线观看视频| 成年人网站91| 欧美极品xxx| 国产大陆精品国产| 26uuu另类欧美亚洲曰本| 另类综合日韩欧美亚洲| 欧美一区二区不卡视频| 亚洲成av人影院| 在线观看欧美日本| 亚洲精品高清在线| 色妹子一区二区| 日韩伦理电影网| a在线播放不卡| 国产精品欧美综合在线| 国产91丝袜在线播放| 久久久久久日产精品| 国产一区二区影院| 久久老女人爱爱| 国产高清精品久久久久| 国产婷婷色一区二区三区四区| 国产一区二区网址| 久久久久久电影| 国产成都精品91一区二区三| 国产欧美精品一区二区色综合| 国产一区二区主播在线| 久久久www成人免费毛片麻豆 | 91美女视频网站| 一区二区三区在线观看动漫 | 久久久蜜桃精品| 国产盗摄一区二区| 中文字幕va一区二区三区| 大白屁股一区二区视频| 国产精品动漫网站| 91电影在线观看| 亚洲成人精品一区二区| 欧美一区日本一区韩国一区| 日本亚洲欧美天堂免费| 欧美电视剧在线观看完整版| 九色porny丨国产精品| 久久久亚洲精品石原莉奈| 成人激情文学综合网| 亚洲精品写真福利| 欧美乱熟臀69xxxxxx| 久久精品免费观看| 国产视频一区在线播放| 91蜜桃在线免费视频| 亚洲18女电影在线观看| 精品国产乱码久久久久久久久| 国产成人精品影视| 一区二区三区高清在线| 欧美一卡在线观看| 国产精品亚洲а∨天堂免在线| 1024亚洲合集| 欧美一区二区三区在线观看| 国产成人小视频| 亚洲午夜久久久久中文字幕久| 3d动漫精品啪啪一区二区竹菊 | 日本韩国精品在线| 天天色天天操综合| 久久亚洲一区二区三区四区| 99久久久无码国产精品| 日韩在线一二三区| 中文字幕欧美日本乱码一线二线| 91高清视频免费看| 精品中文av资源站在线观看| 中文字幕一区视频| 欧美一区二区三区四区在线观看| 丁香五精品蜜臀久久久久99网站| 亚洲在线成人精品| 久久―日本道色综合久久| 色综合色狠狠综合色| 麻豆国产91在线播放| 中文字幕一区日韩精品欧美| 欧美精品久久久久久久多人混战| 国产一区二区三区久久悠悠色av| 亚洲色大成网站www久久九九| 3751色影院一区二区三区| 顶级嫩模精品视频在线看| 亚洲第一久久影院| 国产精品理伦片| 欧美mv日韩mv国产| 欧美日韩一区二区三区四区 | 成人97人人超碰人人99| 蜜臀av性久久久久蜜臀aⅴ四虎| 国产片一区二区| 日韩一区二区三区电影| 91啪九色porn原创视频在线观看| 久久电影国产免费久久电影| 亚洲精品国产成人久久av盗摄 | 中文字幕日韩一区二区| 91精品国产综合久久精品app| 99re成人在线| 国产剧情一区在线| 日日夜夜免费精品| 一区二区不卡在线视频 午夜欧美不卡在| 欧美xxx久久| 91精品综合久久久久久| 一本色道久久综合狠狠躁的推荐| 国产乱码一区二区三区| 日韩一区精品视频| 亚洲精品视频观看| 国产欧美一区二区三区网站 | 奇米色一区二区| 亚洲va欧美va国产va天堂影院| 18涩涩午夜精品.www| 国产精品美女久久久久高潮| 久久亚区不卡日本| 日韩欧美美女一区二区三区| 欧美三级视频在线| 色欧美片视频在线观看| 99re热视频精品| a美女胸又www黄视频久久| 高清免费成人av| 成人性色生活片| 国产91在线看| 成人免费福利片| 成人高清免费观看| 国产成人啪午夜精品网站男同| 国产乱码精品1区2区3区| 六月丁香婷婷色狠狠久久| 日本aⅴ免费视频一区二区三区 | 国产精品一级在线| 久久99热这里只有精品|