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

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

?? status.m4

?? autoconf是一個產生可以自動配置源代碼包
?? M4
?? 第 1 頁 / 共 4 頁
字號:
# This file is part of Autoconf.                       -*- Autoconf -*-# Parameterizing and creating config.status.# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,# 2002, 2003, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA# 02110-1301, USA.# As a special exception, the Free Software Foundation gives unlimited# permission to copy, distribute and modify the configure scripts that# are the output of Autoconf.  You need not follow the terms of the GNU# General Public License when using or distributing such scripts, even# though portions of the text of Autoconf appear in them.  The GNU# General Public License (GPL) does govern all other use of the material# that constitutes the Autoconf program.## Certain portions of the Autoconf source text are designed to be copied# (in certain cases, depending on the input) into the output of# Autoconf.  We call these the "data" portions.  The rest of the Autoconf# source text consists of comments plus executable code that decides which# of the data portions to output in any given case.  We call these# comments and executable code the "non-data" portions.  Autoconf never# copies any of the non-data portions into its output.## This special exception to the GPL applies to versions of Autoconf# released by the Free Software Foundation.  When you make and# distribute a modified version of Autoconf, you may extend this special# exception to the GPL to apply to your modified version as well, *unless*# your modified version has the potential to copy into its output some# of the text that was the non-data portion of the version that you started# with.  (In other words, unless your change moves or copies text from# the non-data portions to the data portions.)  If your modification has# such potential, you must delete any notice of this special exception# to the GPL from your modified version.## Written by David MacKenzie, with help from# Franc,ois Pinard, Karl Berry, Richard Pixley, Ian Lance Taylor,# Roland McGrath, Noah Friedman, david d zuhn, and many others.# This file handles about all the preparation aspects for# `config.status': registering the configuration files, the headers,# the links, and the commands `config.status' will run.  There is a# little mixture though of things actually handled by `configure',# such as running the `configure' in the sub directories.  Minor# detail.## There are two kinds of commands:## COMMANDS:##   They are output into `config.status' via a quoted here doc.  These#   commands are always associated to a tag which the user can use to#   tell `config.status' what are the commands she wants to run.## INIT-CMDS:##   They are output via an *unquoted* here-doc.  As a consequence $var#   will be output as the value of VAR.  This is typically used by#   `configure' to give `config.status' some variables it needs to run#   the COMMANDS.  At the difference of COMMANDS, the INIT-CMDS are#   always run.### Honorable members of this family are AC_CONFIG_FILES,# AC_CONFIG_HEADERS, AC_CONFIG_LINKS and AC_CONFIG_COMMANDS.  Bad boys# are AC_LINK_FILES, AC_OUTPUT_COMMANDS and AC_OUTPUT when used with# arguments.  False members are AC_CONFIG_SRCDIR, AC_CONFIG_SUBDIRS# and AC_CONFIG_AUX_DIR.  Cousins are AC_CONFIG_COMMANDS_PRE and# AC_CONFIG_COMMANDS_POST.## ------------------ #### Auxiliary macros.  #### ------------------ ### _AC_SRCDIRS(BUILD-DIR-NAME)# ---------------------------# Inputs:#   - BUILD-DIR-NAME is `top-build -> build' and `top-src -> src'#   - `$srcdir' is `top-build -> top-src'## Outputs:# - `ac_builddir' is `.', for symmetry only.# - `ac_top_builddir_sub' is `build -> top_build'.#      This is used for @top_builddir@.# - `ac_top_build_prefix' is `build -> top_build'.#      If not empty, has a trailing slash.# - `ac_srcdir' is `build -> src'.# - `ac_top_srcdir' is `build -> top-src'.# and `ac_abs_builddir' etc., the absolute directory names.m4_define([_AC_SRCDIRS],[ac_builddir=.case $1 in.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;*)  ac_dir_suffix=/`echo $1 | sed 's,^\.[[\\/]],,'`  # A ".." for each directory in $ac_dir_suffix.  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[[^\\/]]*,/..,g;s,/,,'`  case $ac_top_builddir_sub in  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;  esac ;;esacac_abs_top_builddir=$ac_pwdac_abs_builddir=$ac_pwd$ac_dir_suffix# for backward compatibility:ac_top_builddir=$ac_top_build_prefixcase $srcdir in  .)  # We are building in place.    ac_srcdir=.    ac_top_srcdir=$ac_top_builddir_sub    ac_abs_top_srcdir=$ac_pwd ;;  [[\\/]]* | ?:[[\\/]]* )  # Absolute name.    ac_srcdir=$srcdir$ac_dir_suffix;    ac_top_srcdir=$srcdir    ac_abs_top_srcdir=$srcdir ;;  *) # Relative name.    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix    ac_top_srcdir=$ac_top_build_prefix$srcdir    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;esacac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix])# _AC_SRCDIRS## ---------------------- #### Registering the tags.  #### ---------------------- ### _AC_CONFIG_COMMANDS_INIT([INIT-COMMANDS])# -----------------------------------------## Register INIT-COMMANDS as command pasted *unquoted* in# `config.status'.  This is typically used to pass variables from# `configure' to `config.status'.  Note that $[1] is not over quoted as# was the case in AC_OUTPUT_COMMANDS.m4_define([_AC_CONFIG_COMMANDS_INIT],[m4_ifval([$1],	  [m4_append([_AC_OUTPUT_COMMANDS_INIT],		     [$1])])])# AC_FILE_DEPENDENCY_TRACE(DEST, SOURCE1, [SOURCE2...])# -----------------------------------------------------# This macro does nothing, it's a hook to be read with `autoconf --trace'.## It announces DEST depends upon the SOURCE1 etc.m4_define([AC_FILE_DEPENDENCY_TRACE], [])# _AC_FILE_DEPENDENCY_TRACE_COLON(DEST:SOURCE1[:SOURCE2...])# ----------------------------------------------------------# Declare that DEST depends upon SOURCE1 etc.#m4_define([_AC_FILE_DEPENDENCY_TRACE_COLON],[AC_FILE_DEPENDENCY_TRACE(m4_bpatsubst([$1], [:], [,]))dnl])# _AC_CONFIG_DEPENDENCY(MODE, DEST[:SOURCE1...])# ---------------------------------------------# MODE is `FILES', `HEADERS', or `LINKS'.## Be sure that a missing dependency is expressed as a dependency upon# `DEST.in' (except with config links).#m4_define([_AC_CONFIG_DEPENDENCY],[_AC_FILE_DEPENDENCY_TRACE_COLON([$2]_AC_CONFIG_DEPENDENCY_DEFAULT($@))dnl])# _AC_CONFIG_DEPENDENCY_DEFAULT(MODE, DEST[:SOURCE1...])# ------------------------------------------------------# Expand to `:DEST.in' if appropriate, or to empty string otherwise.## More detailed edscription:# If the tag contains `:', expand to nothing.# Otherwise, for a config file or header, add `:DEST.in'.# For config link, DEST.in is not appropriate:#  - if the tag is literal, complain.#  - otherwise, just expand to nothing and proceed with fingers crossed.#    (We get to this case from the obsolete AC_LINK_FILES, for example.)#m4_define([_AC_CONFIG_DEPENDENCY_DEFAULT],[m4_bmatch([$2], [:], [],	   [m4_if([$1], [LINKS],		  [AS_LITERAL_IF([$2], [AC_FATAL([Invalid AC_CONFIG_LINKS tag: `$2'])])],		  [:$2.in])])dnl])# _AC_CONFIG_UNIQUE(MODE, DEST)# -----------------------------# MODE is `FILES', `HEADERS', `LINKS', `COMMANDS', or `SUBDIRS'.## Verify that there is no double definition of an output file.#m4_define([_AC_CONFIG_UNIQUE],[m4_ifdef([_AC_SEEN_TAG($2)],   [AC_FATAL([`$2' is already registered with AC_CONFIG_]m4_defn([_AC_SEEN_TAG($2)]).)],   [m4_define([_AC_SEEN_TAG($2)], [$1])])dnl])# _AC_CONFIG_FOOS(MODE, TAGS..., [COMMANDS], [INIT-CMDS])# -------------------------------------------------------# MODE is `FILES', `HEADERS', `LINKS', or `COMMANDS'.## Associate the COMMANDS to each TAG, i.e., when config.status creates TAG,# run COMMANDS afterwards.  (This is done in _AC_CONFIG_REGISTER_DEST.)## For COMMANDS, do not m4_normalize TAGS before adding it to ac_config_commands.# This historical difference allows macro calls in TAGS.#m4_define([_AC_CONFIG_FOOS],[m4_foreach_w([AC_File], [$2],	      [_AC_CONFIG_REGISTER([$1], m4_defn([AC_File]), [$3])])dnlm4_define([_AC_SEEN_CONFIG(ANY)])dnlm4_define([_AC_SEEN_CONFIG($1)])dnl_AC_CONFIG_COMMANDS_INIT([$4])dnlac_config_[]m4_tolower([$1])="$ac_config_[]m4_tolower([$1]) dnlm4_if([$1], [COMMANDS], [$2], [m4_normalize([$2])])"])# _AC_CONFIG_REGISTER(MODE, TAG, [COMMANDS])# ------------------------------------------# MODE is `FILES', `HEADERS', `LINKS', or `COMMANDS'.#m4_define([_AC_CONFIG_REGISTER],[m4_if([$1], [COMMANDS],       [],       [_AC_CONFIG_DEPENDENCY([$1], [$2])])dnl_AC_CONFIG_REGISTER_DEST([$1], [$2], m4_bpatsubst([[$2]], [:.*\(.\)$], [\1]), [$3])dnl])# _AC_CONFIG_REGISTER_DEST(MODE, TAG, DEST, [COMMANDS])# -----------------------------------------------------# MODE is `FILES', `HEADERS', `LINKS', or `COMMANDS'.# TAG is in the form DEST[:SOURCE...].# Thus parameter $3 is the first part of $2.## With CONFIG_LINKS, reject DEST=., because it is makes it hard for ./config.status# to guess the links to establish (`./config.status .').## Save the name of the first config header to AH_HEADER.#m4_define([_AC_CONFIG_REGISTER_DEST],[_AC_CONFIG_UNIQUE([$1], [$3])dnlm4_if([$1 $3], [LINKS .],      [AC_FATAL([invalid destination of a config link: `.'])])dnlm4_if([$1], [HEADERS],      [m4_define_default([AH_HEADER], [$3])])dnldnldnl Recognize TAG as an argument to config.status:dnlm4_append([_AC_LIST_TAGS],[    "$3") CONFIG_$1="$CONFIG_$1 $2" ;;])dnldnldnl Register the associated commands, if any:dnlm4_ifval([$4],[m4_append([_AC_LIST_TAG_COMMANDS],[    "$3":]m4_bpatsubst([$1], [^\(.\).*$], [\1])[) $4 ;;])])dnl])# _AC_CONFIG_REGISTER_DEST## --------------------- #### Configuration files.  #### --------------------- ### AC_CONFIG_FILES(FILE..., [COMMANDS], [INIT-CMDS])# -------------------------------------------------# Specify output files, i.e., files that are configured with AC_SUBST.#AC_DEFUN([AC_CONFIG_FILES], [_AC_CONFIG_FOOS([FILES], $@)])# _AC_SED_CMD_LIMIT# -----------------# Evaluate to an m4 number equal to the maximum number of commands to put# in any single sed program, not counting ":" commands.## Some seds have small command number limits, like on Digital OSF/1 and HP-UX.m4_define([_AC_SED_CMD_LIMIT],dnl One cannot portably go further than 99 commands because of HP-UX.[99])# _AC_OUTPUT_FILES_PREPARE# ------------------------# Create the sed scripts needed for CONFIG_FILES.# Support multiline substitutions and make sure that the substitutions are# not evaluated recursively.# The intention is to have readable config.status and configure, even# though this m4 code might be scaring.## This code was written by Dan Manthey.## This macro is expanded inside a here document.  If the here document is# closed, it has to be reopened with "cat >>$CONFIG_STATUS <<\_ACEOF".#m4_define([_AC_OUTPUT_FILES_PREPARE],[## Set up the sed scripts for CONFIG_FILES section.#dnl ... and define _AC_SED_CMDS, the pipeline which executes them.m4_define([_AC_SED_CMDS], [])dnl# No need to generate the scripts if there are no CONFIG_FILES.# This happens for instance when ./config.status config.hif test -n "$CONFIG_FILES"; then_ACEOFm4_pushdef([_AC_SED_FRAG_NUM], 0)dnl Fragment number.m4_pushdef([_AC_SED_CMD_NUM], 2)dnl Num of commands in current frag so far.m4_pushdef([_AC_SED_DELIM_NUM], 0)dnl Expected number of delimiters in file.m4_pushdef([_AC_SED_FRAG], [])dnl The constant part of the current fragment.dnlm4_ifdef([_AC_SUBST_FILES],[# Create sed commands to just substitute file output variables.m4_foreach_w([_AC_Var], m4_defn([_AC_SUBST_FILES]),[dnl End fragments at beginning of loop so that last fragment is not ended.m4_if(m4_eval(_AC_SED_CMD_NUM + 3 > _AC_SED_CMD_LIMIT), 1,[dnl Fragment is full and not the last one, so no need for the final un-escape.dnl Increment fragment number.m4_define([_AC_SED_FRAG_NUM], m4_incr(_AC_SED_FRAG_NUM))dnldnl Record that this fragment will need to be used.m4_define([_AC_SED_CMDS],  m4_defn([_AC_SED_CMDS])[| sed -f "$tmp/subs-]_AC_SED_FRAG_NUM[.sed" ])dnl[cat >>$CONFIG_STATUS <<_ACEOFcat >"\$tmp/subs-]_AC_SED_FRAG_NUM[.sed" <<\CEOF/@[a-zA-Z_][a-zA-Z_0-9]*@/!b]m4_defn([_AC_SED_FRAG])dnl[CEOF_ACEOF]m4_define([_AC_SED_CMD_NUM], 2)m4_define([_AC_SED_FRAG])dnl])dnl Last fragment ended.m4_define([_AC_SED_CMD_NUM], m4_eval(_AC_SED_CMD_NUM + 3))dnlm4_define([_AC_SED_FRAG],m4_defn([_AC_SED_FRAG])dnl[/^[	 ]*@]_AC_Var[@[	 ]*$/{r $]_AC_Var[d}])dnl])dnl# Remaining file output variables are in a fragment that also has non-file# output varibles.])dnlm4_define([_AC_SED_FRAG], []m4_defn([_AC_SED_FRAG]))dnlm4_foreach_w([_AC_Var],m4_ifdef([_AC_SUBST_VARS], [m4_defn([_AC_SUBST_VARS]) ])[@END@],

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 午夜精品福利一区二区三区蜜桃| 青椒成人免费视频| 久久66热re国产| 在线观看视频一区| 精品盗摄一区二区三区| 亚洲欧美一区二区不卡| 精品亚洲国内自在自线福利| 色噜噜狠狠一区二区三区果冻| 2014亚洲片线观看视频免费| 午夜影院在线观看欧美| 99re视频精品| 国产精品污www在线观看| 美女免费视频一区| 欧美挠脚心视频网站| 亚洲欧美日韩中文播放| 高清国产一区二区三区| 欧美zozo另类异族| 日本va欧美va精品发布| 欧美午夜不卡视频| 亚洲毛片av在线| 99免费精品视频| 欧美国产亚洲另类动漫| 激情av综合网| 亚洲精品一区二区在线观看| 视频一区二区三区在线| 欧美三级日韩在线| 亚洲午夜电影在线观看| 欧美视频一区在线| 亚洲资源在线观看| 在线一区二区三区四区五区| 国产精品久久久久三级| 成av人片一区二区| 1000精品久久久久久久久| 成+人+亚洲+综合天堂| 亚洲欧洲一区二区在线播放| 99久久亚洲一区二区三区青草| 国产精品三级av| av激情成人网| 一区二区在线观看视频在线观看| 色综合久久久网| 玉足女爽爽91| 欧美日韩精品专区| 奇米777欧美一区二区| 精品美女一区二区| 国产成人午夜精品影院观看视频 | 日韩精品乱码av一区二区| 欧洲人成人精品| 婷婷丁香久久五月婷婷| 日韩西西人体444www| 精品一区二区av| 国产欧美日韩精品一区| 成人sese在线| 一区二区理论电影在线观看| 在线播放欧美女士性生活| 麻豆91精品视频| 国产精品美女久久久久aⅴ国产馆| 成人白浆超碰人人人人| 亚洲一区成人在线| 91精品国产丝袜白色高跟鞋| 激情六月婷婷久久| 国产精品免费视频一区| 在线视频欧美区| 麻豆freexxxx性91精品| 国产精品丝袜在线| 欧美日本精品一区二区三区| 不卡一区二区中文字幕| 亚洲综合999| 精品国产区一区| 色爱区综合激月婷婷| 日韩avvvv在线播放| 国产色产综合色产在线视频| 一本一本久久a久久精品综合麻豆| 日韩国产精品大片| 中文字幕成人网| 91麻豆精品国产91久久久 | 国产大陆精品国产| 一区二区三区中文字幕电影| 欧美电视剧在线看免费| 91蜜桃在线免费视频| 久久99热狠狠色一区二区| 亚洲日本韩国一区| 欧美精品一区二区三区很污很色的| 色悠悠亚洲一区二区| 久久99精品久久久| 亚洲妇女屁股眼交7| 国产人久久人人人人爽| 欧美一区二区人人喊爽| 一本久久精品一区二区| 国产剧情一区在线| 婷婷综合久久一区二区三区| 国产精品第五页| 欧美变态tickle挠乳网站| 欧美日本一区二区在线观看| 99久久婷婷国产| 国产精品99久| 久久精品国产网站| 五月天激情小说综合| 亚洲免费av观看| 国产精品久久久久一区二区三区共 | 91精品福利视频| 国产成人av福利| 美女一区二区三区在线观看| 亚洲午夜国产一区99re久久| 亚洲欧美激情小说另类| 欧美—级在线免费片| 精品国产在天天线2019| 欧美一区中文字幕| 欧美色区777第一页| 欧亚一区二区三区| 在线精品视频一区二区三四| av一二三不卡影片| 99这里只有精品| www.日韩大片| 99久久婷婷国产综合精品电影 | 日本欧美一区二区| 午夜国产精品一区| 午夜欧美视频在线观看| 亚洲狠狠爱一区二区三区| 亚洲综合一区二区三区| 一区二区三区在线免费视频| 亚洲精选视频免费看| 亚洲人午夜精品天堂一二香蕉| 国产精品麻豆久久久| 国产精品国产精品国产专区不蜜 | 国产真实乱对白精彩久久| 黄色资源网久久资源365| 黄色日韩三级电影| 777a∨成人精品桃花网| 精品乱人伦小说| 国产精品国产三级国产aⅴ入口 | 欧美高清在线一区二区| 久久伊人蜜桃av一区二区| 久久综合色天天久久综合图片| 精品国产不卡一区二区三区| 国产亚洲精品超碰| 国产精品久久久久久妇女6080| 亚洲丝袜自拍清纯另类| 午夜久久久久久久久| 久久 天天综合| gogogo免费视频观看亚洲一| 欧洲av在线精品| 欧美一级在线观看| 国产欧美精品一区二区三区四区| 国产精品午夜在线观看| 亚洲综合视频在线观看| 久久国产麻豆精品| 国产盗摄一区二区| 在线观看亚洲一区| 日韩一区二区三区观看| 国产精品三级电影| 日韩高清不卡在线| 成人国产精品视频| 欧美伦理视频网站| 欧美国产国产综合| 首页国产欧美久久| 国产高清不卡一区二区| 欧美色综合影院| 国产亚洲欧美在线| 五月婷婷久久综合| 波多野结衣精品在线| 日韩一区二区三区观看| 亚洲日本在线观看| 激情久久久久久久久久久久久久久久| av一二三不卡影片| 日韩精品一区二区三区在线播放| 国产精品乱码妇女bbbb| 秋霞国产午夜精品免费视频| 99久久国产综合色|国产精品| 欧美一区二区三区四区视频| 一区在线播放视频| 国产美女在线精品| 91精品在线麻豆| 亚洲欧美日韩一区二区| 国产一区二区三区av电影 | 日韩欧美专区在线| 亚洲乱码中文字幕综合| 国产真实乱偷精品视频免| 3d成人h动漫网站入口| 亚洲女同一区二区| 成人黄动漫网站免费app| 精品国产乱码久久久久久牛牛| 亚洲国产综合在线| 91社区在线播放| 欧美国产丝袜视频| 激情图片小说一区| 欧美一区二区免费观在线| 亚洲午夜久久久| 色婷婷激情综合| 自拍偷自拍亚洲精品播放| 国产成人精品网址| www亚洲一区| 久久99国产精品麻豆| 日韩一区二区在线播放| 亚洲第一精品在线| 日韩美女视频一区二区在线观看| 天天色天天爱天天射综合| 欧美在线不卡视频| 亚洲综合在线观看视频| 欧美亚洲丝袜传媒另类|