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

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

?? aclocal.m4

?? linux下開發的針對所有磁盤的數據恢復的源碼
?? M4
?? 第 1 頁 / 共 5 頁
字號:
# aclocal.m4 generated automatically by aclocal 1.6.3 -*- Autoconf -*-# Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002# Free Software Foundation, Inc.# This file is free software; the Free Software Foundation# gives unlimited permission to copy and/or distribute it,# with or without modifications, as long as this notice is preserved.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY, to the extent permitted by law; without# even the implied warranty of MERCHANTABILITY or FITNESS FOR A# PARTICULAR PURPOSE.# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-# Copyright 1996, 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.AC_PREREQ([2.52])# serial 6# When config.status generates a header, we must update the stamp-h file.# This file resides in the same directory as the config header# that is generated.  We must strip everything past the first ":",# and everything past the last "/".# _AM_DIRNAME(PATH)# -----------------# Like AS_DIRNAME, only do it during macro expansionAC_DEFUN([_AM_DIRNAME],       [m4_if(regexp([$1], [^.*[^/]//*[^/][^/]*/*$]), -1,	      m4_if(regexp([$1], [^//\([^/]\|$\)]), -1,		    m4_if(regexp([$1], [^/.*]), -1,			  [.],			  patsubst([$1], [^\(/\).*], [\1])),		    patsubst([$1], [^\(//\)\([^/].*\|$\)], [\1])),	      patsubst([$1], [^\(.*[^/]\)//*[^/][^/]*/*$], [\1]))[]dnl])# _AM_DIRNAME# The stamp files are numbered to have different names.# We could number them on a directory basis, but that's additional# complications, let's have a unique counter.m4_define([_AM_STAMP_Count], [0])# _AM_STAMP(HEADER)# -----------------# The name of the stamp file for HEADER.AC_DEFUN([_AM_STAMP],[m4_define([_AM_STAMP_Count], m4_incr(_AM_STAMP_Count))dnlAS_ESCAPE(_AM_DIRNAME(patsubst([$1],                               [:.*])))/stamp-h[]_AM_STAMP_Count])# _AM_CONFIG_HEADER(HEADER[:SOURCES], COMMANDS, INIT-COMMANDS)# ------------------------------------------------------------# We used to try to get a real timestamp in stamp-h.  But the fear is that# that will cause unnecessary cvs conflicts.AC_DEFUN([_AM_CONFIG_HEADER],[# Add the stamp file to the list of files AC keeps track of,# along with our hook.AC_CONFIG_HEADERS([$1],                  [# update the timestampecho 'timestamp for $1' >"_AM_STAMP([$1])"$2],                  [$3])])# _AM_CONFIG_HEADER# AM_CONFIG_HEADER(HEADER[:SOURCES]..., COMMANDS, INIT-COMMANDS)# --------------------------------------------------------------AC_DEFUN([AM_CONFIG_HEADER],[AC_FOREACH([_AM_File], [$1], [_AM_CONFIG_HEADER(_AM_File, [$2], [$3])])])# AM_CONFIG_HEADER# Do all the work for Automake.                            -*- Autoconf -*-# This macro actually does too much some checks are only needed if# your package does certain things.  But this isn't really a big deal.# Copyright 1996, 1997, 1998, 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 8# 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...AC_PREREQ([2.52])# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow# the ones we care about.m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])# AM_INIT_AUTOMAKE([OPTIONS])# -----------------------------------------------# The call with PACKAGE and VERSION arguments is the old style# call (pre autoconf-2.50), which is being phased out.  PACKAGE# and VERSION should now be passed to AC_INIT and removed from# the call to AM_INIT_AUTOMAKE.# We support both call styles for the transition.  After# the next Automake release, Autoconf can make the AC_INIT# arguments mandatory, and then we can depend on a new Autoconf# release and drop the old call support.AC_DEFUN([AM_INIT_AUTOMAKE],[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl# test to see if srcdir already configuredif test "`cd $srcdir && pwd`" != "`pwd`" &&   test -f $srcdir/config.status; then  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])fi# Define the identity of the package.dnl Distinguish between old-style and new-style calls.m4_ifval([$2],[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])],[_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME])dnl AC_SUBST([VERSION], [AC_PACKAGE_VERSION])])dnl_AM_IF_OPTION([no-define],,[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl# Some tools Automake needs.AC_REQUIRE([AM_SANITY_CHECK])dnlAC_REQUIRE([AC_ARG_PROGRAM])dnlAM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})AM_MISSING_PROG(AUTOCONF, autoconf)AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})AM_MISSING_PROG(AUTOHEADER, autoheader)AM_MISSING_PROG(MAKEINFO, makeinfo)AM_MISSING_PROG(AMTAR, tar)AM_PROG_INSTALL_SHAM_PROG_INSTALL_STRIP# We need awk for the "check" target.  The system "awk" is bad on# some platforms.AC_REQUIRE([AC_PROG_AWK])dnlAC_REQUIRE([AC_PROG_MAKE_SET])dnl_AM_IF_OPTION([no-dependencies],,[AC_PROVIDE_IFELSE([AC_PROG_][CC],                  [_AM_DEPENDENCIES(CC)],                  [define([AC_PROG_][CC],                          defn([AC_PROG_][CC])[_AM_DEPENDENCIES(CC)])])dnlAC_PROVIDE_IFELSE([AC_PROG_][CXX],                  [_AM_DEPENDENCIES(CXX)],                  [define([AC_PROG_][CXX],                          defn([AC_PROG_][CXX])[_AM_DEPENDENCIES(CXX)])])dnl])])# Copyright 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# AM_AUTOMAKE_VERSION(VERSION)# ----------------------------# Automake X.Y traces this macro to ensure aclocal.m4 has been# generated from the m4 files accompanying Automake X.Y.AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.6"])# AM_SET_CURRENT_AUTOMAKE_VERSION# -------------------------------# Call AM_AUTOMAKE_VERSION so it can be traced.# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],	 [AM_AUTOMAKE_VERSION([1.6.3])])# Helper functions for option handling.                    -*- Autoconf -*-# Copyright 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_MANGLE_OPTION(NAME)# -----------------------AC_DEFUN([_AM_MANGLE_OPTION],[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])# _AM_SET_OPTION(NAME)# ------------------------------# Set option NAME.  Presently that only means defining a flag for this option.AC_DEFUN([_AM_SET_OPTION],[m4_define(_AM_MANGLE_OPTION([$1]), 1)])# _AM_SET_OPTIONS(OPTIONS)# ----------------------------------# OPTIONS is a space-separated list of Automake options.AC_DEFUN([_AM_SET_OPTIONS],[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])# -------------------------------------------# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.AC_DEFUN([_AM_IF_OPTION],[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])## Check to make sure that the build environment is sane.## Copyright 1996, 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 3# AM_SANITY_CHECK# ---------------AC_DEFUN([AM_SANITY_CHECK],[AC_MSG_CHECKING([whether build environment is sane])# Just in casesleep 1echo timestamp > conftest.file# Do `set' in a subshell so we don't clobber the current shell's# arguments.  Must try -L first in case configure is actually a# symlink; some systems play weird games with the mod time of symlinks# (eg FreeBSD returns the mod time of the symlink's containing# directory).if (   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`   if test "$[*]" = "X"; then      # -L didn't work.      set X `ls -t $srcdir/configure conftest.file`   fi   rm -f conftest.file   if test "$[*]" != "X $srcdir/configure conftest.file" \      && test "$[*]" != "X conftest.file $srcdir/configure"; then      # If neither matched, then we have a broken ls.  This can happen      # if, for instance, CONFIG_SHELL is bash and it inherits a      # broken ls alias from the environment.  This has actually      # happened.  Such a system could not be considered "sane".      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a brokenalias in your environment])   fi   test "$[2]" = conftest.file   )then   # Ok.   :else   AC_MSG_ERROR([newly created file is older than distributed files!Check your system clock])fiAC_MSG_RESULT(yes)])#  -*- Autoconf -*-# Copyright 1997, 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.# serial 3# AM_MISSING_PROG(NAME, PROGRAM)# ------------------------------AC_DEFUN([AM_MISSING_PROG],[AC_REQUIRE([AM_MISSING_HAS_RUN])$1=${$1-"${am_missing_run}$2"}AC_SUBST($1)])# AM_MISSING_HAS_RUN# ------------------# Define MISSING if not defined so far and test if it supports --run.# If it does, set am_missing_run to use it, otherwise, to nothing.AC_DEFUN([AM_MISSING_HAS_RUN],[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnltest x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"# Use eval to expand $SHELLif eval "$MISSING --run true"; then  am_missing_run="$MISSING --run "else  am_missing_run=  AC_MSG_WARN([`missing' script is too old or missing])fi])# AM_AUX_DIR_EXPAND# 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.# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to# `$srcdir', `$srcdir/..', or `$srcdir/../..'.#

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线影院国内精品| 精品久久久三级丝袜| 日韩美女在线视频| 国产精品情趣视频| 日韩成人午夜电影| 99re热视频这里只精品| 欧美一区二区在线视频| 1区2区3区国产精品| 青椒成人免费视频| 色乱码一区二区三区88| 久久一区二区三区国产精品| 亚洲一区二区欧美| 成人黄页毛片网站| www激情久久| 视频在线观看国产精品| 91免费观看视频在线| 国产日韩欧美麻豆| 麻豆精品国产传媒mv男同 | 欧美狂野另类xxxxoooo| 国产精品狼人久久影院观看方式| 麻豆成人综合网| 欧美久久久久久久久| 亚洲精品国产精华液| 成人高清免费在线播放| 久久久久久久久久美女| 免费xxxx性欧美18vr| 欧美色精品在线视频| 亚洲乱码国产乱码精品精小说 | 午夜亚洲福利老司机| 不卡电影一区二区三区| 国产欧美日韩精品a在线观看| 蜜臀va亚洲va欧美va天堂| 欧美丰满嫩嫩电影| 久久精品国产色蜜蜜麻豆| 91麻豆精品国产91久久久久久久久| 亚洲另类一区二区| 色综合色综合色综合| 亚洲精品中文在线| 色综合天天视频在线观看| 亚洲免费观看高清在线观看| 99久久99久久精品国产片果冻| 国产精品无遮挡| 色综合视频在线观看| 亚洲午夜久久久久久久久久久| 日本道精品一区二区三区| 亚洲午夜日本在线观看| 欧美日韩极品在线观看一区| 三级精品在线观看| 精品国产免费一区二区三区四区 | 欧美大肚乱孕交hd孕妇| 久久精品国产亚洲一区二区三区| 欧美一级爆毛片| 精品一区二区免费视频| 久久久一区二区三区| 成人免费视频播放| 亚洲激情六月丁香| 91精品国产91久久综合桃花 | 婷婷开心久久网| 日韩一区二区三区免费看| 久99久精品视频免费观看| 国产欧美日韩在线视频| 在线观看一区二区精品视频| 美女免费视频一区二区| 日本一区二区视频在线| 欧美色国产精品| 国产老肥熟一区二区三区| 亚洲三级在线免费观看| 在线综合亚洲欧美在线视频| 国产福利视频一区二区三区| 亚洲免费在线视频一区 二区| 欧美日韩精品福利| 国产成a人亚洲精品| 亚洲乱码国产乱码精品精98午夜 | 久久综合精品国产一区二区三区| 丁香六月综合激情| 亚洲成人动漫av| 久久久久久夜精品精品免费| 91丨九色丨国产丨porny| 首页欧美精品中文字幕| 国产日韩精品一区二区三区 | 国产成人av电影在线| 亚洲福利视频三区| 国产精品嫩草99a| 欧美嫩在线观看| 波多野结衣亚洲一区| 久久电影网站中文字幕| 一区二区三区四区在线| 国产肉丝袜一区二区| 51精品视频一区二区三区| 91亚洲精品乱码久久久久久蜜桃| 久久99精品国产麻豆婷婷| 亚洲一区二区三区精品在线| 欧美激情中文不卡| 日韩美女视频在线| 欧美日韩成人激情| 成人免费毛片嘿嘿连载视频| 韩国精品一区二区| 日韩影视精彩在线| 亚洲成人av电影在线| 亚洲欧美经典视频| 国产欧美日韩在线看| 久久综合久久综合九色| 日韩一区二区视频在线观看| 欧美日韩一区二区不卡| 一本到高清视频免费精品| eeuss鲁一区二区三区| 国产毛片精品国产一区二区三区| 免费在线观看精品| 日韩精品一区第一页| 99v久久综合狠狠综合久久| 国产精品中文欧美| 国内精品国产三级国产a久久| 日韩国产欧美在线视频| 亚洲丰满少妇videoshd| 亚洲综合免费观看高清在线观看| 国产精品久久一卡二卡| 国产精品久久久久影视| 中文字幕在线播放不卡一区| 国产精品无遮挡| 亚洲日本丝袜连裤袜办公室| 1000精品久久久久久久久| 成人免费一区二区三区在线观看| 中文字幕视频一区| 亚洲伦理在线精品| 亚洲国产精品一区二区久久恐怖片| 亚洲女同一区二区| 亚洲国产精品久久久久秋霞影院 | 蜜臀av一区二区在线免费观看 | 国产精品亚洲午夜一区二区三区| 久久超碰97人人做人人爱| 久久精品国内一区二区三区| 精品一区二区三区av| 国产一区二区三区免费| 欧美一级一区二区| 日韩天堂在线观看| 久久精品网站免费观看| 国产精品久久久久久久久动漫 | 亚洲国产精品黑人久久久| 亚洲欧洲一区二区在线播放| 亚洲一区二区三区视频在线播放 | 中文字幕中文字幕一区二区| 亚洲欧美日韩国产成人精品影院| 亚洲无线码一区二区三区| 免费高清成人在线| 国产老肥熟一区二区三区| 91美女视频网站| 欧美一级午夜免费电影| 欧美国产视频在线| 亚洲一区二区中文在线| 毛片av中文字幕一区二区| 成人午夜伦理影院| 欧美日韩在线一区二区| 久久欧美一区二区| 亚洲黄色尤物视频| 国内精品免费**视频| 91黄色小视频| 国产亚洲精久久久久久| 亚洲国产精品久久不卡毛片| 狠狠色综合色综合网络| 欧美性受xxxx黑人xyx性爽| 精品国产成人在线影院| 伊人色综合久久天天人手人婷| 久久精工是国产品牌吗| 91网站黄www| 精品99999| 亚洲第一精品在线| a亚洲天堂av| 日韩西西人体444www| 亚洲手机成人高清视频| 国产在线视频一区二区三区| 欧美特级限制片免费在线观看| 26uuu精品一区二区| 亚洲国产成人高清精品| 99久久久无码国产精品| www激情久久| 奇米影视在线99精品| 久久久www成人免费毛片麻豆| 亚洲一区中文日韩| 成人av动漫在线| 欧美xxxx老人做受| 日韩中文字幕区一区有砖一区| 99精品欧美一区| 中文字幕精品综合| 久草在线在线精品观看| 69堂精品视频| 亚洲国产精品久久久久婷婷884| 成人av在线电影| 国产丝袜在线精品| 久久爱www久久做| 欧美一区二区久久| 性欧美大战久久久久久久久| 色素色在线综合| 亚洲图片激情小说| www.日韩在线| 国产精品免费久久| 成人av片在线观看| 国产精品福利av| 99久久精品情趣| 中文字幕日韩一区二区| 99精品国产一区二区三区不卡|