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

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

?? status.m4

?? autoconf 2.59版,可用于redhat系統.用于編譯原碼,編寫makefile文件.
?? 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 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.# 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.### Some uniformity exists around here, please respect it!## A macro named AC_CONFIG_FOOS has three args: the `TAG...' (or# `FILE...'  when it applies), the `COMMANDS' and the `INIT-CMDS'.  It# first checks that TAG was not registered elsewhere thanks to# AC_CONFIG_UNIQUE.  Then it registers `TAG...' in AC_LIST_FOOS, and for# each `TAG', a special line in AC_LIST_FOOS_COMMANDS which is used in# `config.status' like this:##	  case $ac_tag in#	    AC_LIST_FOOS_COMMANDS#	  esac## Finally, the `INIT-CMDS' are dumped into a special diversion, via# `_AC_CONFIG_COMMANDS_INIT'.  While `COMMANDS' are output once per TAG,# `INIT-CMDS' are dumped only once per call to AC_CONFIG_FOOS.## It also leave the TAG in the shell variable ac_config_foo which contains# those which will actually be executed.  In other words:##	if false; then#	  AC_CONFIG_FOOS(bar, [touch bar])#	fi## will not create bar.## AC_CONFIG_FOOS can be called several times (with different TAGs of# course).## Because these macros should not output anything, there should be `dnl'# everywhere.  A pain my friend, a pain.  So instead in each macro we# divert(-1) and restore the diversion at the end.### 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_SRCPATHS(BUILD-DIR-NAME)# ----------------------------# Inputs:#   - BUILD-DIR-NAME is `top-build -> build' and `top-src -> src'#   - `$srcdir' is `top-build -> top-src'## Ouputs:# - `ac_builddir' is `.', for symmetry only.# - `ac_top_builddir' 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 paths.m4_define([_AC_SRCPATHS],[ac_builddir=.if test $1 != .; then  ac_dir_suffix=/`echo $1 | sed 's,^\.[[\\/]],,'`  # A "../" for each directory in $ac_dir_suffix.  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[[^\\/]]*,../,g'`else  ac_dir_suffix= ac_top_builddir=ficase $srcdir in  .)  # No --srcdir option.  We are building in place.    ac_srcdir=.    if test -z "$ac_top_builddir"; then       ac_top_srcdir=.    else       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`    fi ;;  [[\\/]]* | ?:[[\\/]]* )  # Absolute path.    ac_srcdir=$srcdir$ac_dir_suffix;    ac_top_srcdir=$srcdir ;;  *) # Relative path.    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix    ac_top_srcdir=$ac_top_builddir$srcdir ;;esac# Do not use `cd foo && pwd` to compute absolute paths, because# the directories may not exist.AS_SET_CATFILE([ac_abs_builddir],   [`pwd`],            [$1])AS_SET_CATFILE([ac_abs_top_builddir],	                            [$ac_abs_builddir], [${ac_top_builddir}.])AS_SET_CATFILE([ac_abs_srcdir],     [$ac_abs_builddir], [$ac_srcdir])AS_SET_CATFILE([ac_abs_top_srcdir], [$ac_abs_builddir], [$ac_top_srcdir])])# _AC_SRCPATHS## ------------------------------------- #### Ensuring the uniqueness of the tags.  #### ------------------------------------- ### AC_CONFIG_IF_MEMBER(DEST, LIST-NAME, ACTION-IF-TRUE, ACTION-IF-FALSE)# ----------------------------------------------------------------# If DEST is member of LIST-NAME, expand to ACTION-IF-TRUE, else# ACTION-IF-FALSE.## LIST is an AC_CONFIG list, i.e., a list of DEST[:SOURCE], separated# with spaces.## FIXME: This macro is badly designed, but I'm not guilty: m4 is.  There# is just no way to simply compare two strings in m4, but to use pattern# matching.  The big problem is then that the active characters should# be quoted.  Currently `+*.' are quoted.m4_define([AC_CONFIG_IF_MEMBER],[m4_bmatch(m4_defn([$2]), [\(^\| \)]m4_re_escape([$1])[\([: ]\|$\)],	   [$3], [$4])])# 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_CONFIG_DEPENDENCY(DEST, [SOURCE1], [SOURCE2...])# ----------------------------------------------------# Be sure that a missing dependency is expressed as a dependency upon# `DEST.in'.m4_define([_AC_CONFIG_DEPENDENCY],[m4_ifval([$2],	  [AC_FILE_DEPENDENCY_TRACE($@)],	  [AC_FILE_DEPENDENCY_TRACE([$1], [$1.in])])])# _AC_CONFIG_DEPENDENCIES(DEST[:SOURCE1[:SOURCE2...]]...)# -------------------------------------------------------# Declare the DESTs depend upon their SOURCE1 etc.m4_define([_AC_CONFIG_DEPENDENCIES],[AC_FOREACH([AC_File], [$1],  [_AC_CONFIG_DEPENDENCY(m4_bpatsubst(AC_File, [:], [,]))])dnl])# _AC_CONFIG_UNIQUE(DEST[:SOURCE]...)# -----------------------------------## Verify that there is no double definition of an output file# (precisely, guarantees there is no common elements between# CONFIG_HEADERS, CONFIG_FILES, CONFIG_LINKS, and CONFIG_SUBDIRS).## Note that this macro does not check if the list $[1] itself# contains doubles.m4_define([_AC_CONFIG_UNIQUE],[AC_FOREACH([AC_File], [$1],[m4_pushdef([AC_Dest], m4_bpatsubst(AC_File, [:.*]))dnl  AC_CONFIG_IF_MEMBER(AC_Dest, [AC_LIST_HEADERS],     [AC_FATAL(`AC_Dest' [is already registered with AC_CONFIG_HEADERS.])])dnl  AC_CONFIG_IF_MEMBER(AC_Dest, [AC_LIST_LINKS],     [AC_FATAL(`AC_Dest' [is already registered with AC_CONFIG_LINKS.])])dnl  AC_CONFIG_IF_MEMBER(AC_Dest, [_AC_LIST_SUBDIRS],     [AC_FATAL(`AC_Dest' [is already registered with AC_CONFIG_SUBDIRS.])])dnl  AC_CONFIG_IF_MEMBER(AC_Dest, [AC_LIST_COMMANDS],     [AC_FATAL(`AC_Dest' [is already registered with AC_CONFIG_COMMANDS.])])dnl  AC_CONFIG_IF_MEMBER(AC_Dest, [AC_LIST_FILES],     [AC_FATAL(`AC_Dest' [is already registered with AC_CONFIG_FILES.])])dnlm4_popdef([AC_Dest])])dnl])## ------------------------ #### Configuration commands.  #### ------------------------ ### _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])])])# Initialize.m4_define([_AC_OUTPUT_COMMANDS_INIT])# _AC_CONFIG_COMMAND(NAME, [COMMANDS])# ------------------------------------# See below.m4_define([_AC_CONFIG_COMMAND],[_AC_CONFIG_UNIQUE([$1])dnlm4_append([AC_LIST_COMMANDS], [ $1])dnlm4_ifval([$2],[m4_append([AC_LIST_COMMANDS_COMMANDS],[    ]m4_bpatsubst([$1], [:.*])[ ) $2 ;;])])dnl])# AC_CONFIG_COMMANDS(NAME...,[COMMANDS], [INIT-CMDS])# ---------------------------------------------------## Specify additional commands to be run by config.status.  This# commands must be associated with a NAME, which should be thought# as the name of a file the COMMANDS create.AC_DEFUN([AC_CONFIG_COMMANDS],[AC_FOREACH([AC_Name], [$1], [_AC_CONFIG_COMMAND(m4_defn([AC_Name]), [$2])])dnl_AC_CONFIG_COMMANDS_INIT([$3])dnlac_config_commands="$ac_config_commands $1"])# Initialize the lists.m4_define([AC_LIST_COMMANDS])m4_define([AC_LIST_COMMANDS_COMMANDS])# AC_OUTPUT_COMMANDS(EXTRA-CMDS, INIT-CMDS)# -----------------------------------------## Add additional commands for AC_OUTPUT to put into config.status.## This macro is an obsolete version of AC_CONFIG_COMMANDS.  The only# difficulty in mapping AC_OUTPUT_COMMANDS to AC_CONFIG_COMMANDS is# to give a unique key.  The scheme we have chosen is `default-1',# `default-2' etc. for each call.## Unfortunately this scheme is fragile: bad things might happen# if you update an included file and configure.ac: you might have# clashes :(  On the other hand, I'd like to avoid weird keys (e.g.,# depending upon __file__ or the pid).AU_DEFUN([AC_OUTPUT_COMMANDS],[m4_define([_AC_OUTPUT_COMMANDS_CNT], m4_incr(_AC_OUTPUT_COMMANDS_CNT))dnldnl Double quoted since that was the case in the original macro.AC_CONFIG_COMMANDS([default-]_AC_OUTPUT_COMMANDS_CNT, [[$1]], [[$2]])dnl])# Initialize.AU_DEFUN([_AC_OUTPUT_COMMANDS_CNT], 0)# AC_CONFIG_COMMANDS_PRE(CMDS)# ----------------------------# Commands to run right before config.status is created. Accumulates.AC_DEFUN([AC_CONFIG_COMMANDS_PRE],[m4_append([AC_OUTPUT_COMMANDS_PRE], [$1])])# AC_OUTPUT_COMMANDS_PRE# ----------------------# A *variable* in which we append all the actions that must be# performed before *creating* config.status.  For a start, clean# up all the LIBOBJ mess.m4_define([AC_OUTPUT_COMMANDS_PRE],[_AC_LIBOBJS_NORMALIZE()])# AC_CONFIG_COMMANDS_POST(CMDS)# -----------------------------# Commands to run after config.status was created.  Accumulates.AC_DEFUN([AC_CONFIG_COMMANDS_POST],[m4_append([AC_OUTPUT_COMMANDS_POST], [$1])])# Initialize.m4_define([AC_OUTPUT_COMMANDS_POST])# _AC_OUTPUT_COMMANDS# -------------------# This is a subroutine of AC_OUTPUT, in charge of issuing the code# related to AC_CONFIG_COMMANDS.## It has to send itself into $CONFIG_STATUS (eg, via here documents).# Upon exit, no here document shall be opened.m4_define([_AC_OUTPUT_COMMANDS],[cat >>$CONFIG_STATUS <<\_ACEOF## CONFIG_COMMANDS section.#for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`  ac_source=`echo "$ac_file" | sed 's,[[^:]]*:,,'`  ac_dir=`AS_DIRNAME(["$ac_dest"])`  AS_MKDIR_P(["$ac_dir"])  _AC_SRCPATHS(["$ac_dir"])  AC_MSG_NOTICE([executing $ac_dest commands])dnl Some shells don't like empty case/esacm4_ifset([AC_LIST_COMMANDS_COMMANDS],[  case $ac_dest inAC_LIST_COMMANDS_COMMANDS()dnl  esac])dnldone_ACEOF])# _AC_OUTPUT_COMMANDS## ----------------------- #### Configuration headers.  #### ----------------------- ### _AC_CONFIG_HEADER(HEADER, [COMMANDS])# -------------------------------------# See below.m4_define([_AC_CONFIG_HEADER],[_AC_CONFIG_UNIQUE([$1])dnlm4_append([AC_LIST_HEADERS], [ $1])dnl_AC_CONFIG_DEPENDENCIES([$1])dnldnl Register the commandsm4_ifval([$2],

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品色在线| 国产制服丝袜一区| 狠狠色综合日日| 在线一区二区三区四区| 久久蜜臀精品av| 日韩高清不卡一区| 91视频观看视频| 久久精品在线观看| 蜜桃视频在线观看一区| 97精品国产露脸对白| 欧美精品一区二区在线观看| 日韩不卡手机在线v区| 丁香一区二区三区| 精品久久久久久久久久久久包黑料| 国产精品国产三级国产aⅴ入口| 美女视频免费一区| 欧美精选一区二区| 一区二区成人在线| 一本色道亚洲精品aⅴ| 国产欧美日韩在线视频| 精品午夜一区二区三区在线观看| 欧美日韩综合在线免费观看| 亚洲欧美在线高清| 粉嫩aⅴ一区二区三区四区| 欧美videofree性高清杂交| 天天做天天摸天天爽国产一区| 91在线国产福利| 国产精品久久久久一区二区三区 | 奇米影视7777精品一区二区| 欧美日韩中文字幕一区二区| 亚洲色大成网站www久久九九| 成人黄色av网站在线| 国产午夜亚洲精品羞羞网站| 国产成人亚洲综合色影视| 久久影院视频免费| 国产精品2024| 国产精品高清亚洲| 99免费精品在线| 日韩美女视频19| 91久久国产最好的精华液| 一区二区三区四区国产精品| 91九色最新地址| 天堂va蜜桃一区二区三区漫画版| 欧美日韩国产另类一区| 日韩精品一级二级 | 欧美在线你懂得| 亚洲国产精品一区二区尤物区| 欧美日韩国产一二三| 麻豆一区二区三| 国产偷v国产偷v亚洲高清 | 美腿丝袜亚洲一区| 精品对白一区国产伦| 成人免费视频一区二区| 国产精品久久精品日日| 欧美色男人天堂| 美女一区二区视频| 中文字幕免费不卡| 欧美亚洲一区三区| 精品中文字幕一区二区小辣椒| 26uuu成人网一区二区三区| 成人ar影院免费观看视频| 午夜精品福利一区二区蜜股av| 日韩一区二区三区av| 国产高清精品网站| 一区二区三国产精华液| 日韩一级黄色片| 99精品久久免费看蜜臀剧情介绍| 亚洲第一电影网| 国产日韩av一区| 欧美少妇一区二区| 国产aⅴ综合色| 天天色天天操综合| 国产精品久久久久影视| 欧美日韩二区三区| 国产成人精品综合在线观看 | 久久综合色综合88| 色婷婷久久久亚洲一区二区三区 | 欧美午夜电影网| 国产一本一道久久香蕉| 亚洲精品乱码久久久久| 久久先锋影音av鲁色资源网| 色婷婷av一区二区三区之一色屋| 免费高清不卡av| 亚洲精品国产视频| 精品三级av在线| 在线观看网站黄不卡| 国模套图日韩精品一区二区| 亚洲国产一区二区三区| 欧美极品少妇xxxxⅹ高跟鞋| 91精品国产高清一区二区三区| 成人三级在线视频| 国产在线不卡一区| 美女视频第一区二区三区免费观看网站| 中文字幕免费一区| 久久久久久亚洲综合影院红桃| 欧美日韩国产色站一区二区三区| 97精品久久久久中文字幕| 国产精品亚洲第一区在线暖暖韩国| 亚洲福利一区二区| 一区二区三区在线高清| 亚洲欧洲三级电影| 国产精品色在线观看| 国产午夜亚洲精品羞羞网站| 精品少妇一区二区三区免费观看 | 日韩中文字幕亚洲一区二区va在线| 亚洲国产精品成人综合色在线婷婷| 日韩欧美自拍偷拍| 日韩欧美国产电影| 欧美一级二级在线观看| 宅男在线国产精品| 欧美日本不卡视频| 91精品黄色片免费大全| 欧美顶级少妇做爰| 91精品国产全国免费观看| 91精品在线麻豆| 欧美一区二区三区的| 日韩美女一区二区三区| 欧美一级二级在线观看| 日韩一区二区三区免费看 | 久久久久久一二三区| 精品国产乱码久久久久久蜜臀 | 国产欧美日韩另类一区| 国产丝袜美腿一区二区三区| 精品福利在线导航| 久久影音资源网| 欧美韩日一区二区三区四区| 欧美激情在线看| 亚洲欧美二区三区| 亚洲高清免费视频| 免费观看30秒视频久久| 精品影院一区二区久久久| 久久成人综合网| 成人一区二区视频| 91福利国产精品| 91麻豆精品久久久久蜜臀| 精品国产一二三区| 国产精品传媒在线| 一区二区三区欧美日韩| 日本中文在线一区| 国产91高潮流白浆在线麻豆 | 亚洲午夜av在线| 日本伊人色综合网| 国产91综合一区在线观看| 91无套直看片红桃| 91精品国产福利在线观看| 久久久久97国产精华液好用吗| 1024成人网| 久久99久久久欧美国产| 99久久综合99久久综合网站| 欧美最猛黑人xxxxx猛交| 日韩欧美一级在线播放| 国产精品麻豆一区二区| 香蕉久久一区二区不卡无毒影院| 久久99精品国产91久久来源| 成人av小说网| 日韩午夜激情视频| 综合电影一区二区三区| 久久精品国产亚洲一区二区三区| 波多野洁衣一区| 欧美岛国在线观看| 一区二区三区高清| 国产中文字幕一区| 欧美乱妇15p| 中文字幕欧美一区| 久国产精品韩国三级视频| 色综合婷婷久久| 久久综合狠狠综合久久综合88| 亚洲欧美视频在线观看| 国模一区二区三区白浆| 欧美日韩精品久久久| 国产精品护士白丝一区av| 日韩av网站在线观看| 日本韩国精品在线| 欧美激情在线观看视频免费| 日本va欧美va瓶| 欧美性受极品xxxx喷水| 国产精品国模大尺度视频| 久久91精品久久久久久秒播| 欧美午夜免费电影| 1024国产精品| 岛国一区二区在线观看| 精品国产乱码久久久久久久 | 亚洲国产精品高清| 精品制服美女丁香| 欧美一级二级三级乱码| 亚洲高清久久久| 欧美手机在线视频| 亚洲欧美日韩综合aⅴ视频| 成人h版在线观看| 欧美国产综合色视频| 国产成人精品在线看| 国产午夜亚洲精品不卡| 国产精品99久| 国产色产综合产在线视频| 国产精品综合网| 久久麻豆一区二区| 国产精品66部| 中文字幕免费一区| 成人福利在线看| 亚洲欧洲制服丝袜|