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

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

?? aclocal.m4

?? linux下開發的針對所有磁盤的數據恢復的源碼
?? M4
?? 第 1 頁 / 共 5 頁
字號:
# Of course, Automake must honor this variable whenever it calls a# tool from the auxiliary directory.  The problem is that $srcdir (and# therefore $ac_aux_dir as well) can be either absolute or relative,# depending on how configure is run.  This is pretty annoying, since# it makes $ac_aux_dir quite unusable in subdirectories: in the top# source directory, any form will work fine, but in subdirectories a# relative path needs to be adjusted first.## $ac_aux_dir/missing#    fails when called from a subdirectory if $ac_aux_dir is relative# $top_srcdir/$ac_aux_dir/missing#    fails if $ac_aux_dir is absolute,#    fails when called from a subdirectory in a VPATH build with#          a relative $ac_aux_dir## The reason of the latter failure is that $top_srcdir and $ac_aux_dir# are both prefixed by $srcdir.  In an in-source build this is usually# harmless because $srcdir is `.', but things will broke when you# start a VPATH build or use an absolute $srcdir.## So we could use something similar to $top_srcdir/$ac_aux_dir/missing,# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`# and then we would define $MISSING as#   MISSING="\${SHELL} $am_aux_dir/missing"# This will work as long as MISSING is not called from configure, because# unfortunately $(top_srcdir) has no meaning in configure.# However there are other variables, like CC, which are often used in# configure, and could therefore not use this "fixed" $ac_aux_dir.## Another solution, used here, is to always expand $ac_aux_dir to an# absolute PATH.  The drawback is that using absolute paths prevent a# configured tree to be moved without reconfiguration.# Rely on autoconf to set up CDPATH properly.AC_PREREQ([2.50])AC_DEFUN([AM_AUX_DIR_EXPAND], [# expand $ac_aux_dir to an absolute patham_aux_dir=`cd $ac_aux_dir && pwd`])# AM_PROG_INSTALL_SH# ------------------# Define $install_sh.# 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.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 -*-

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色呦呦日韩精品| 亚洲国产成人一区二区三区| 亚洲综合色丁香婷婷六月图片| 成人av网在线| 中文字幕一区二区三区视频| 色欧美片视频在线观看| 亚洲一区二区三区视频在线| 欧美喷潮久久久xxxxx| 蜜桃av一区二区三区电影| 日韩一二三四区| 国产成人自拍网| 国产精品久久久久久久久免费桃花| 成人精品视频一区| 亚洲欧美日韩国产中文在线| 欧美日韩亚洲综合| 久久99精品一区二区三区三区| 精品欧美乱码久久久久久| 国产成人av电影在线| 中文字幕一区三区| 欧美精品aⅴ在线视频| 国产精品自拍一区| 亚洲bdsm女犯bdsm网站| 久久麻豆一区二区| 欧美网站大全在线观看| 久久av资源站| 中文字幕精品一区二区三区精品| 欧美在线观看视频在线| 国产在线视视频有精品| 亚洲免费观看高清完整版在线| 欧美专区在线观看一区| 韩国一区二区在线观看| 亚洲男人都懂的| 精品欧美乱码久久久久久1区2区| 99国产精品99久久久久久| 日本中文字幕一区二区视频 | 91蜜桃网址入口| 日韩中文字幕麻豆| 中文字幕在线不卡一区| 精品国产一区二区国模嫣然| 一本高清dvd不卡在线观看| 久久成人免费网| 亚洲一区二区中文在线| 欧美激情综合在线| 日韩精品中文字幕一区二区三区 | 精品一区精品二区高清| 亚洲欧美在线观看| 久久婷婷成人综合色| 精品视频在线看| 成人免费看视频| 激情五月婷婷综合| 亚洲成a人v欧美综合天堂| 日本一区二区免费在线| 日韩欧美激情一区| 欧美日韩一区二区在线观看视频| 成人av免费在线| 精品在线你懂的| 人人狠狠综合久久亚洲| 一级精品视频在线观看宜春院| 国产精品色在线观看| 欧美电视剧在线看免费| 欧美视频中文一区二区三区在线观看| 成人手机在线视频| 激情国产一区二区| 美国欧美日韩国产在线播放| 亚洲午夜在线电影| 亚洲日本欧美天堂| 国产精品色一区二区三区| 精品少妇一区二区三区免费观看 | 国产一区二区伦理| 久久亚洲综合色一区二区三区| 一本色道久久综合亚洲91| 亚洲a一区二区| 国产精品网友自拍| 国产精品久久久久久户外露出| 中文字幕欧美国产| 欧美国产欧美综合| 亚洲婷婷在线视频| 亚洲欧美一区二区三区国产精品 | 久久91精品久久久久久秒播| 奇米888四色在线精品| 蜜桃精品视频在线| 极品少妇xxxx精品少妇偷拍| 久久国产精品72免费观看| 激情深爱一区二区| 国产成人一区二区精品非洲| 国产美女娇喘av呻吟久久| 国产精品一级片| 国产不卡视频在线播放| 91香蕉视频mp4| 在线看不卡av| 欧美一区二区三区在线| 欧美一级在线观看| www国产精品av| 国产欧美一区二区精品性 | 亚洲人精品一区| 亚洲最大成人网4388xx| 日韩激情视频网站| 韩国成人福利片在线播放| 国产超碰在线一区| 色婷婷综合视频在线观看| 欧美日韩国产在线观看| 日韩精品在线一区二区| 久久精品亚洲一区二区三区浴池| 国产精品入口麻豆九色| 亚洲另类色综合网站| 丝袜亚洲另类欧美综合| 94-欧美-setu| 日本丶国产丶欧美色综合| 久久99国内精品| 久久综合狠狠综合久久激情| 欧美男男青年gay1069videost | 久久99国产精品免费网站| 老司机精品视频在线| 日韩二区三区在线观看| 欧美日韩亚洲丝袜制服| 日本韩国视频一区二区| 在线观看视频欧美| 欧美一区二区日韩| 国产精品伦一区| 日一区二区三区| 国产成a人无v码亚洲福利| 欧美亚洲动漫制服丝袜| 精品99一区二区三区| 亚洲精品欧美在线| 国产一区视频在线看| 在线观看区一区二| 国产亚洲污的网站| 亚洲成人免费观看| 北条麻妃一区二区三区| 日韩一卡二卡三卡四卡| 综合激情成人伊人| 久久成人免费电影| 欧洲精品在线观看| 欧美国产亚洲另类动漫| 免费不卡在线视频| 欧洲精品中文字幕| 国产精品久久久久一区| 韩日欧美一区二区三区| 欧美日本不卡视频| 亚洲欧美日韩小说| 国产精品一区二区三区四区 | 日本在线不卡视频一二三区| 91玉足脚交白嫩脚丫在线播放| 欧美成人在线直播| 亚洲国产cao| 色综合久久中文字幕| 欧美韩国日本不卡| 韩国一区二区在线观看| 欧美久久久久久久久久| 亚洲六月丁香色婷婷综合久久 | 日韩欧美电影一区| 亚洲大片免费看| 在线视频你懂得一区| 国产精品久久久久国产精品日日 | zzijzzij亚洲日本少妇熟睡| 精品国产凹凸成av人导航| 天天做天天摸天天爽国产一区| 91小视频免费观看| 日韩毛片在线免费观看| 99久久综合精品| 国产精品午夜免费| 风间由美中文字幕在线看视频国产欧美| 欧美二区在线观看| 天天av天天翘天天综合网| 在线免费av一区| 亚洲chinese男男1069| 欧美日韩一本到| 夜夜精品视频一区二区| 欧美丝袜自拍制服另类| 亚洲一二三四在线| 欧美日韩专区在线| 亚洲超碰97人人做人人爱| 欧美巨大另类极品videosbest | 中文字幕一区二区三区在线播放| 成人综合激情网| 国产精品国产精品国产专区不蜜| 99精品桃花视频在线观看| 国产精品福利一区| 色综合久久综合中文综合网| 亚洲欧美一区二区三区极速播放 | 国产成都精品91一区二区三| 欧美高清在线一区| 色悠悠亚洲一区二区| 亚洲成人三级小说| 日韩一级片网址| 国产毛片精品视频| 中文字幕亚洲综合久久菠萝蜜| 91亚洲资源网| 午夜精品视频一区| 欧美大片日本大片免费观看| 国产激情精品久久久第一区二区| 国产精品热久久久久夜色精品三区 | 亚洲人妖av一区二区| 欧美日韩国产影片| 国产在线精品视频| 中文字幕一区二区在线观看| 欧美日韩在线播| 国产资源在线一区| 亚洲欧美成aⅴ人在线观看| 欧美剧在线免费观看网站|