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

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

?? aclocal.m4

?? this will produce the dci program in the src/ directory, or in /path/to/your/installation/bin if y
?? M4
?? 第 1 頁 / 共 2 頁
字號:
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])])#                                                          -*- Autoconf -*-# Copyright (C) 2003  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 1# Check whether the underlying file-system supports filenames# with a leading dot.  For instance MS-DOS doesn't.AC_DEFUN([AM_SET_LEADING_DOT],[rm -rf .tst 2>/dev/nullmkdir .tst 2>/dev/nullif test -d .tst; then  am__leading_dot=.else  am__leading_dot=_firmdir .tst 2>/dev/nullAC_SUBST([am__leading_dot])])# serial 5						-*- Autoconf -*-# Copyright (C) 1999, 2000, 2001, 2002, 2003  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 -o conftest.o conftest.c \         >/dev/null 2>conftest.err &&       grep conftest.h conftest.Po > /dev/null 2>&1 &&       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then      # icc doesn't choke on unknown options, it will just issue warnings      # (even with -Werror).  So we grep stderr for any message      # that says an option was ignored.      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else        am_cv_$1_dependencies_compiler_type=$depmode        break      fi    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_CONDITIONAL([am__fastdep$1], [  test "x$enable_dependency_tracking" != xno \  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])])# AM_SET_DEPDIR# -------------# Choose a directory name for dependency files.# This macro is AC_REQUIREd in _AM_DEPENDENCIESAC_DEFUN([AM_SET_DEPDIR],[AC_REQUIRE([AM_SET_LEADING_DOT])dnlAC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl])# 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"])])# Check to see how 'make' treats includes.	-*- Autoconf -*-# Copyright (C) 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_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 | grep -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])])

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人性视频网站| 国产在线精品一区二区| 热久久久久久久| 9人人澡人人爽人人精品| 欧美美女视频在线观看| 欧美激情一区在线观看| 日韩精品免费视频人成| 成人午夜伦理影院| 亚洲精品在线免费观看视频| 亚洲老司机在线| 国产69精品一区二区亚洲孕妇| 色妹子一区二区| 国产欧美一区二区精品性色| 日韩精品一二三四| 在线视频一区二区三区| 中文字幕一区二区三区在线不卡| 免费av成人在线| 欧美高清www午色夜在线视频| 国产精品网站在线观看| 精品一区二区三区视频| 欧美精品久久一区二区三区| 亚洲精品亚洲人成人网| av电影在线观看完整版一区二区| 精品国产人成亚洲区| 日本免费在线视频不卡一不卡二| 欧美日韩午夜精品| 一区二区三区四区中文字幕| 成人免费va视频| 国产亚洲精品超碰| 国产久卡久卡久卡久卡视频精品| 欧美电影免费观看高清完整版在线| 亚洲电影一区二区| 欧美视频精品在线观看| 亚洲在线视频一区| 欧美日韩日日骚| 视频一区二区国产| 欧美一区二区视频观看视频| 三级影片在线观看欧美日韩一区二区 | 紧缚奴在线一区二区三区| 欧美伦理视频网站| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美精品xxxxbbbb| 日本一道高清亚洲日美韩| 欧美一区二区三区免费大片| 日本亚洲电影天堂| 精品久久久久久久一区二区蜜臀| 久久不见久久见免费视频7| 欧美一二三在线| 国产精品1024久久| 国产精品电影一区二区三区| eeuss鲁片一区二区三区在线观看| 亚洲欧美影音先锋| 欧美性色黄大片| 免费成人av在线播放| 久久精品一区四区| 色综合一个色综合| 日本亚洲三级在线| 久久精品网站免费观看| 成人涩涩免费视频| 亚洲午夜久久久久中文字幕久| 欧美二区在线观看| 国产成人综合视频| 亚洲成人精品影院| 337p日本欧洲亚洲大胆精品| 99精品热视频| 另类调教123区| 国产精品的网站| 欧美视频精品在线观看| 国产乱色国产精品免费视频| 国产精品家庭影院| 日韩一区二区高清| 色婷婷综合久久久| 免费久久精品视频| 国产精品久久久久久久午夜片| 在线观看视频一区| 国内外精品视频| 一区av在线播放| 国产欧美精品国产国产专区| 欧美日韩一区 二区 三区 久久精品| 国产一区二区三区四区五区美女| 亚洲色图欧美偷拍| 精品福利av导航| 在线区一区二视频| 成人丝袜视频网| 久久国产精品第一页| 一区二区三区在线影院| 久久精品男人天堂av| 欧美日韩精品一区二区天天拍小说 | 国产一区在线不卡| 视频精品一区二区| 亚洲精品伦理在线| 国产欧美精品一区二区色综合| 91精品久久久久久久99蜜桃| 91丝袜呻吟高潮美腿白嫩在线观看| 日本欧美肥老太交大片| 亚洲午夜在线视频| 亚洲免费视频成人| 国产精品乱码一区二区三区软件 | 日本亚洲最大的色成网站www| 亚洲色图视频网站| 国产精品乱人伦中文| 欧美成人女星排行榜| 欧美日韩一区二区欧美激情| 色综合视频在线观看| 粗大黑人巨茎大战欧美成人| 裸体一区二区三区| 免费日本视频一区| 奇米色一区二区三区四区| 一个色综合网站| 亚洲精品成人a在线观看| 亚洲婷婷在线视频| 亚洲视频资源在线| 亚洲人成精品久久久久久| 欧美国产激情一区二区三区蜜月| 亚洲精品一区在线观看| 欧美精品一区二区三区四区 | 日韩限制级电影在线观看| 日本精品裸体写真集在线观看| 99精品偷自拍| 色先锋久久av资源部| 91蜜桃免费观看视频| 99免费精品视频| 91视视频在线观看入口直接观看www| 国产盗摄女厕一区二区三区| 国产乱码精品一区二区三区av | 亚洲欧美日韩一区二区三区在线观看| 国产精品丝袜一区| 亚洲欧洲av在线| 亚洲精品久久久久久国产精华液 | 久久众筹精品私拍模特| 亚洲精品一区在线观看| 久久亚洲精华国产精华液| 亚洲精品一区二区三区99| 国产亚洲视频系列| 自拍偷拍亚洲综合| 亚洲电影中文字幕在线观看| 午夜不卡在线视频| 久久99久久久欧美国产| 韩国女主播成人在线观看| 成人免费电影视频| 欧美羞羞免费网站| 欧美成人激情免费网| 国产精品麻豆视频| 亚洲va韩国va欧美va精品| 蜜桃一区二区三区在线观看| 韩国精品免费视频| 91网站最新网址| 91精品国产美女浴室洗澡无遮挡| 欧美不卡在线视频| 亚洲美女在线国产| 免费人成网站在线观看欧美高清| 黄色资源网久久资源365| 91在线一区二区| 日韩午夜激情免费电影| 国产人妖乱国产精品人妖| 亚洲综合无码一区二区| 国产在线国偷精品免费看| 91麻豆国产福利在线观看| 日韩免费成人网| 亚洲日本丝袜连裤袜办公室| 日韩精品1区2区3区| 国产成人高清视频| 欧美日韩免费观看一区三区| 久久天堂av综合合色蜜桃网| 一区二区三区四区高清精品免费观看 | 日本美女一区二区三区视频| 国产一本一道久久香蕉| 欧美色图在线观看| 国产精品久久久久久久蜜臀 | 亚洲精选视频免费看| 看电影不卡的网站| 色欧美片视频在线观看| 国产丝袜欧美中文另类| 日韩中文字幕区一区有砖一区 | 欧美性感一类影片在线播放| 久久久久久久久99精品| 五月激情综合婷婷| 91久久香蕉国产日韩欧美9色| 51久久夜色精品国产麻豆| 日韩伦理av电影| 风间由美中文字幕在线看视频国产欧美| 欧美性一级生活| 亚洲欧美综合色| 大桥未久av一区二区三区中文| 国产成人在线视频网站| 日韩精品一区二区三区老鸭窝 | 欧美激情一区二区三区不卡| 日本美女一区二区三区视频| 欧美亚洲国产bt| 亚洲精品中文字幕在线观看| 国产成人精品在线看| 久久综合久久综合久久| 蜜乳av一区二区三区| 欧美日韩国产免费一区二区 | 久久色在线观看| 九九九精品视频| 精品伦理精品一区| 韩国女主播一区| 久久久久国产精品麻豆| 国产一区久久久|