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

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

?? status.m4

?? autoconf 2.59版,可用于redhat系統.用于編譯原碼,編寫makefile文件.
?? M4
?? 第 1 頁 / 共 4 頁
字號:
[m4_append([AC_LIST_HEADERS_COMMANDS],[    ]m4_bpatsubst([$1], [:.*])[ ) $2 ;;])])dnl])# AC_CONFIG_HEADERS(HEADERS..., [COMMANDS], [INIT-CMDS])# ------------------------------------------------------# Specify that the HEADERS are to be created by instantiation of the# AC_DEFINEs.  Associate the COMMANDS to the HEADERS.  This macro# accumulates if called several times.## The commands are stored in a growing string AC_LIST_HEADERS_COMMANDS# which should be used like this:##      case $ac_file in#        AC_LIST_HEADERS_COMMANDS#      esacAC_DEFUN([AC_CONFIG_HEADERS],[AC_FOREACH([AC_File], [$1], [_AC_CONFIG_HEADER(m4_defn([AC_File]), [$2])])dnl_AC_CONFIG_COMMANDS_INIT([$3])dnlac_config_headers="$ac_config_headers m4_normalize([$1])"])# Initialize to empty.  It is much easier and uniform to have a config# list expand to empty when undefined, instead of special casing when# not defined (since in this case, AC_CONFIG_FOO expands to AC_CONFIG_FOO).m4_define([AC_LIST_HEADERS])m4_define([AC_LIST_HEADERS_COMMANDS])# AC_CONFIG_HEADER(HEADER-TO-CREATE ...)# --------------------------------------# FIXME: Make it obsolete?AC_DEFUN([AC_CONFIG_HEADER],[AC_CONFIG_HEADERS([$1])])# _AC_OUTPUT_HEADERS# ------------------## Output the code which instantiates the `config.h' files from their# `config.h.in'.## This is a subroutine of _AC_OUTPUT_CONFIG_STATUS.  It has to send# itself into $CONFIG_STATUS (eg, via here documents).  Upon exit, no# here document shall be opened.### The code produced used to be extremely costly: there are was a# single sed script (n lines) handling both `#define' templates,# `#undef' templates with trailing space, and `#undef' templates# without trailing spaces.  The full script was run on each of the m# lines of `config.h.in', i.e., about n x m.## Now there are two scripts: `conftest.defines' for the `#define'# templates, and `conftest.undef' for the `#undef' templates.## Optimization 1.  It is incredibly costly to run two `#undef'# scripts, so just remove trailing spaces first.  Removes about a# third of the cost.## Optimization 2.  Since `#define' are rare and obsoleted,# `conftest.defines' is built and run only if grep says there are# `#define'.  Improves by at least a factor 2, since in addition we# avoid the cost of *producing* the sed script.## Optimization 3.  In each script, first check that the current input# line is a template.  This avoids running the full sed script on# empty lines and comments (divides the cost by about 3 since each# template chunk is typically a comment, a template, an empty line).## Optimization 4.  Once a substitution performed, since there can be# only one per line, immediately restart the script on the next input# line (using the `t' sed instruction).  Divides by about 2.# *Note:* In the case of the AC_SUBST sed script (_AC_OUTPUT_FILES)# this optimization cannot be applied as is, because there can be# several substitutions per line.### The result is about, hm, ... times blah... plus....  Ahem.  The# result is about much faster.m4_define([_AC_OUTPUT_HEADERS],[cat >>$CONFIG_STATUS <<\_ACEOF## CONFIG_HEADER section.## These sed commands are passed to sed as "A NAME B NAME C VALUE D", where# NAME is the cpp macro being defined and VALUE is the value it is being given.## ac_d sets the value in "#define NAME VALUE" lines.dnl Double quote for the `[ ]' and `define'.[ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'ac_dB='[	 ].*$,\1#\2'ac_dC=' 'ac_dD=',;t'# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'ac_uB='$,\1#\2define\3'ac_uC=' 'ac_uD=',;t']for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".  case $ac_file in  - | *:- | *:-:* ) # input from stdin	cat >$tmp/stdin	ac_file_in=`echo "$ac_file" | sed 's,[[^:]]*:,,'`	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[[^:]]*:,,'`	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;  * )   ac_file_in=$ac_file.in ;;  esac  test x"$ac_file" != x- && AC_MSG_NOTICE([creating $ac_file])  # First look for the input files in the build tree, otherwise in the  # src tree.  ac_file_inputs=`IFS=:    for f in $ac_file_in; do      case $f in      -) echo $tmp/stdin ;;      [[\\/$]]*)	 # Absolute (can't be DOS-style, as IFS=:)	 test -f "$f" || AC_MSG_ERROR([cannot find input file: $f])	 # Do quote $f, to prevent DOS paths from being IFS'd.	 echo "$f";;      *) # Relative	 if test -f "$f"; then	   # Build tree	   echo "$f"	 elif test -f "$srcdir/$f"; then	   # Source tree	   echo "$srcdir/$f"	 else	   # /dev/null tree	   AC_MSG_ERROR([cannot find input file: $f])	 fi;;      esac    done` || AS_EXIT([1])  # Remove the trailing spaces.  sed 's/[[	 ]]*$//' $ac_file_inputs >$tmp/in_ACEOF# Transform confdefs.h into two sed scripts, `conftest.defines' and# `conftest.undefs', that substitutes the proper values into# config.h.in to produce config.h.  The first handles `#define'# templates, and the second `#undef' templates.# And first: Protect against being on the right side of a sed subst in# config.status.  Protect against being in an unquoted here document# in config.status.rm -f conftest.defines conftest.undefs# Using a here document instead of a string reduces the quoting nightmare.# Putting comments in sed scripts is not portable.## `end' is used to avoid that the second main sed command (meant for# 0-ary CPP macros) applies to n-ary macro definitions.# See the Autoconf documentation for `clear'.cat >confdef2sed.sed <<\_ACEOFdnl Double quote for `[ ]' and `define'.[s/[\\&,]/\\&/gs,[\\$`],\\&,gt clear: clears,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*\)\(([^)]*)\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gpt ends,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp: end]_ACEOF# If some macros were called several times there might be several times# the same #defines, which is useless.  Nevertheless, we may not want to# sort them, since we want the *last* AC-DEFINE to be honored.uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.definessed 's/ac_d/ac_u/g' conftest.defines >conftest.undefsrm -f confdef2sed.sed# This sed command replaces #undef with comments.  This is necessary, for# example, in the case of _POSIX_SOURCE, which is predefined and required# on some systems where configure will not decide to define it.cat >>conftest.undefs <<\_ACEOF[s,^[	 ]*#[	 ]*undef[	 ][	 ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,]_ACEOF# Break up conftest.defines because some shells have a limit on the size# of here documents, and old seds have small limits too (100 cmds).echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUSecho '  if grep ["^[	 ]*#[	 ]*define"] $tmp/in >/dev/null; then' >>$CONFIG_STATUSecho '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUSecho '  :' >>$CONFIG_STATUSrm -f conftest.tailwhile grep . conftest.defines >/dev/nulldo  # Write a limited-size here document to $tmp/defines.sed.  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS  # Speed up: don't consider the non `#define' lines.  echo ['/^[	 ]*#[	 ]*define/!b'] >>$CONFIG_STATUS  # Work around the forget-to-reset-the-flag bug.  echo 't clr' >>$CONFIG_STATUS  echo ': clr' >>$CONFIG_STATUS  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS  echo 'CEOF  sed -f $tmp/defines.sed $tmp/in >$tmp/out  rm -f $tmp/in  mv $tmp/out $tmp/in' >>$CONFIG_STATUS  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail  rm -f conftest.defines  mv conftest.tail conftest.definesdonerm -f conftest.definesecho '  fi # grep' >>$CONFIG_STATUSecho >>$CONFIG_STATUS# Break up conftest.undefs because some shells have a limit on the size# of here documents, and old seds have small limits too (100 cmds).echo '  # Handle all the #undef templates' >>$CONFIG_STATUSrm -f conftest.tailwhile grep . conftest.undefs >/dev/nulldo  # Write a limited-size here document to $tmp/undefs.sed.  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS  # Speed up: don't consider the non `#undef'  echo ['/^[	 ]*#[	 ]*undef/!b'] >>$CONFIG_STATUS  # Work around the forget-to-reset-the-flag bug.  echo 't clr' >>$CONFIG_STATUS  echo ': clr' >>$CONFIG_STATUS  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS  echo 'CEOF  sed -f $tmp/undefs.sed $tmp/in >$tmp/out  rm -f $tmp/in  mv $tmp/out $tmp/in' >>$CONFIG_STATUS  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail  rm -f conftest.undefs  mv conftest.tail conftest.undefsdonerm -f conftest.undefsdnl Now back to your regularly scheduled config.status.cat >>$CONFIG_STATUS <<\_ACEOF  # Let's still pretend it is `configure' which instantiates (i.e., don't  # use $as_me), people would be surprised to read:  #    /* config.h.  Generated by config.status.  */  if test x"$ac_file" = x-; then    echo "/* Generated by configure.  */" >$tmp/config.h  else    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h  fi  cat $tmp/in >>$tmp/config.h  rm -f $tmp/in  if test x"$ac_file" != x-; then    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then      AC_MSG_NOTICE([$ac_file is unchanged])    else      ac_dir=`AS_DIRNAME(["$ac_file"])`      AS_MKDIR_P(["$ac_dir"])      rm -f $ac_file      mv $tmp/config.h $ac_file    fi  else    cat $tmp/config.h    rm -f $tmp/config.h  fidnl If running for Automake, be ready to perform additionaldnl commands to set up the timestamp files.m4_ifdef([_AC_AM_CONFIG_HEADER_HOOK],	 [_AC_AM_CONFIG_HEADER_HOOK([$ac_file])])dnlm4_ifset([AC_LIST_HEADERS_COMMANDS],[  # Run the commands associated with the file.  case $ac_file inAC_LIST_HEADERS_COMMANDS()dnl  esac])dnldone_ACEOF])# _AC_OUTPUT_HEADERS## --------------------- #### Configuration links.  #### --------------------- ### _AC_CONFIG_LINK(DEST:SOURCE, [COMMANDS])# ----------------------------------------# See below.m4_define([_AC_CONFIG_LINK],[_AC_CONFIG_UNIQUE([$1])dnlm4_append([AC_LIST_LINKS], [ $1])dnl_AC_CONFIG_DEPENDENCIES([$1])dnlm4_bmatch([$1], [^\.:\| \.:], [m4_fatal([$0: invalid destination: `.'])])dnldnl Register the commandsm4_ifval([$2],[m4_append([AC_LIST_LINKS_COMMANDS],[    ]m4_bpatsubst([$1], [:.*])[ ) $2 ;;])])dnl])# AC_CONFIG_LINKS(DEST:SOURCE..., [COMMANDS], [INIT-CMDS])# --------------------------------------------------------# Specify that config.status should establish a (symbolic if possible)# link from TOP_SRCDIR/SOURCE to TOP_SRCDIR/DEST.# Reject DEST=., because it is makes it hard for ./config.status# to guess the links to establish (`./config.status .').AC_DEFUN([AC_CONFIG_LINKS],[AC_FOREACH([AC_File], [$1], [_AC_CONFIG_LINK(m4_defn([AC_File]), [$2])])dnl_AC_CONFIG_COMMANDS_INIT([$3])dnlac_config_links="$ac_config_links m4_normalize([$1])"])# Initialize the list.m4_define([AC_LIST_LINKS])m4_define([AC_LIST_LINKS_COMMANDS])# AC_LINK_FILES(SOURCE..., DEST...)# ---------------------------------# Link each of the existing files SOURCE... to the corresponding# link name in DEST...## Unfortunately we can't provide a very good autoupdate service here,# since in `AC_LINK_FILES($from, $to)' it is possible that `$from'# and `$to' are actually lists.  It would then be completely wrong to# replace it with `AC_CONFIG_LINKS($to:$from).  It is possible in the# case of literal values though, but because I don't think there is any# interest in creating config links with literal values, no special# mechanism is implemented to handle them.## _AC_LINK_CNT is used to be robust to multiple calls.AU_DEFUN([AC_LINK_FILES],[m4_if($#, 2, ,       [m4_fatal([$0: incorrect number of arguments])])dnlm4_define([_AC_LINK_FILES_CNT], m4_incr(_AC_LINK_FILES_CNT))dnlac_sources="$1"ac_dests="$2"while test -n "$ac_sources"; do  set $ac_dests; ac_dest=$[1]; shift; ac_dests=$[*]  set $ac_sources; ac_source=$[1]; shift; ac_sources=$[*]  [ac_config_links_]_AC_LINK_FILES_CNT="$[ac_config_links_]_AC_LINK_FILES_CNT $ac_dest:$ac_source"doneAC_CONFIG_LINKS($[ac_config_links_]_AC_LINK_FILES_CNT)dnl],[  It is technically impossible to `autoupdate' cleanly from AC_LINK_FILES  to AC_CONFIG_FILES.  `autoupdate' provides a functional but inelegant  update, you should probably tune the result yourself.])# AC_LINK_FILES# Initialize.AU_DEFUN([_AC_LINK_FILES_CNT], 0)# _AC_OUTPUT_LINKS# ----------------# This is a subroutine of AC_OUTPUT.## It has to send itself into $CONFIG_STATUS (eg, via here documents).# Upon exit, no here document shall be opened.m4_define([_AC_OUTPUT_LINKS],[cat >>$CONFIG_STATUS <<\_ACEOF## CONFIG_LINKS section.#dnl Here we use : instead of .. because if AC_LINK_FILES was useddnl with empty parameters (as in gettext.m4), then we obtain herednl `:', which we want to skip.  So let's keep a single exception: `:'.for ac_file in : $CONFIG_LINKS; do test "x$ac_file" = x: && continue  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`  ac_source=`echo "$ac_file" | sed 's,[[^:]]*:,,'`  AC_MSG_NOTICE([linking $srcdir/$ac_source to $ac_dest])  if test ! -r $srcdir/$ac_source; then    AC_MSG_ERROR([$srcdir/$ac_source: file not found])  fi  rm -f $ac_dest  # Make relative symlinks.  ac_dest_dir=`AS_DIRNAME(["$ac_dest"])`  AS_MKDIR_P(["$ac_dest_dir"])  _AC_SRCPATHS(["$ac_dest_dir"])  case $srcdir in  [[\\/$]]* | ?:[[\\/]]* ) ac_rel_source=$srcdir/$ac_source ;;      *) ac_rel_source=$ac_top_builddir$srcdir/$ac_source ;;  esac  # Try a symlink, then a hard link, then a copy.  ln -s $ac_rel_source $ac_dest 2>/dev/null ||    ln $srcdir/$ac_source $ac_dest 2>/dev/null ||    cp -p $srcdir/$ac_source $ac_dest ||    AC_MSG_ERROR([cannot link or copy $srcdir/$ac_source to $ac_dest])m4_ifset([AC_LIST_LINKS_COMMANDS],[  # Run the commands associated with the file.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91久久精品日日躁夜夜躁欧美| 日韩制服丝袜先锋影音| 欧美大白屁股肥臀xxxxxx| 欧美在线高清视频| 在线观看成人免费视频| 欧美最猛性xxxxx直播| 日本乱码高清不卡字幕| 色天使久久综合网天天| 色狠狠一区二区三区香蕉| 色一情一伦一子一伦一区| 在线看一区二区| 欧美吻胸吃奶大尺度电影| 欧美精品1区2区3区| 欧美一区二区二区| 2020日本不卡一区二区视频| 久久久久久**毛片大全| 国产精品青草久久| 亚洲激情图片小说视频| 亚洲高清免费观看 | 韩国三级中文字幕hd久久精品| 日韩不卡一二三区| 久久国产夜色精品鲁鲁99| 极品美女销魂一区二区三区| 国产成人一区在线| 色呦呦国产精品| 91精品国产综合久久久蜜臀粉嫩 | 久久精品国产99国产| 国产综合色产在线精品| 成人黄色软件下载| 在线视频国内一区二区| 在线播放国产精品二区一二区四区| 日韩一区国产二区欧美三区| 国产欧美精品一区二区色综合朱莉 | 亚洲色图欧洲色图| 天堂蜜桃91精品| 国产精品一二一区| 在线精品视频小说1| 精品少妇一区二区三区| 综合激情网...| 亚洲六月丁香色婷婷综合久久 | 国内久久精品视频| 91麻豆高清视频| 日韩一区二区免费在线观看| 国产精品国产三级国产普通话三级| 一二三区精品视频| 国产成a人无v码亚洲福利| 欧美三级视频在线观看| 国产欧美一区二区精品婷婷 | 欧美裸体bbwbbwbbw| 国产亚洲va综合人人澡精品| 亚洲一区二区在线免费观看视频| 国产乱对白刺激视频不卡| 91官网在线免费观看| 久久精子c满五个校花| 亚洲一区二区三区视频在线播放| 国模无码大尺度一区二区三区| 在线观看免费视频综合| 久久九九全国免费| 麻豆成人免费电影| 精品视频全国免费看| 欧美极品少妇xxxxⅹ高跟鞋| 青青草视频一区| 欧美日韩中文字幕一区| 亚洲美女在线一区| 国产精一品亚洲二区在线视频| 制服视频三区第一页精品| 亚洲综合丁香婷婷六月香| 99久久婷婷国产综合精品| 久久久久久久久久久电影| 久久国产精品99精品国产| 宅男噜噜噜66一区二区66| 亚洲电影你懂得| 色吊一区二区三区| 一区二区欧美在线观看| 色噜噜狠狠成人中文综合| 国产精品高潮久久久久无| 东方欧美亚洲色图在线| 欧美国产成人精品| 成人黄色777网| 国产精品视频免费| 成人h动漫精品| 亚洲日本欧美天堂| 欧美在线不卡一区| 亚洲bt欧美bt精品777| 欧美人动与zoxxxx乱| 日韩精品福利网| 日韩免费电影网站| 国产中文一区二区三区| 精品福利一区二区三区免费视频| 久久99久久久久| 久久久久综合网| 成人精品鲁一区一区二区| 中文字幕在线不卡视频| 91国在线观看| 秋霞电影网一区二区| 日韩一区二区在线看| 国精产品一区一区三区mba桃花 | 欧美丰满一区二区免费视频| 日韩精品视频网站| 久久久国产精品午夜一区ai换脸| 国产suv精品一区二区三区| 中文字幕日本乱码精品影院| 91电影在线观看| 蜜臀av国产精品久久久久| 久久久久一区二区三区四区| 99麻豆久久久国产精品免费优播| 一区二区三区国产精品| 日韩精品一区二区三区四区 | 蜜臀久久99精品久久久久久9| 欧美va在线播放| 成人动漫av在线| 日韩精品乱码免费| 国产精品麻豆一区二区 | 日韩高清不卡在线| 国产免费观看久久| 欧美亚男人的天堂| 国产成人av电影免费在线观看| 亚洲主播在线观看| 久久久亚洲高清| 欧美日韩一区二区三区在线| 国产精品一区免费视频| 一区二区三区在线影院| 久久久噜噜噜久久人人看| 欧美男生操女生| 99在线视频精品| 国产在线精品免费| 五月激情综合色| 中文字幕亚洲在| 久久亚洲综合色一区二区三区| 在线观看一区不卡| 国产精品一区二区男女羞羞无遮挡| 一区二区三区四区激情| 国产香蕉久久精品综合网| 欧美精品v日韩精品v韩国精品v| 97精品视频在线观看自产线路二| 韩国av一区二区三区四区| 亚洲1区2区3区4区| 亚洲女同ⅹxx女同tv| 国产丝袜在线精品| 日韩视频免费观看高清在线视频| 96av麻豆蜜桃一区二区| 国产成都精品91一区二区三| 久久99久国产精品黄毛片色诱| 日本中文字幕不卡| 偷拍一区二区三区| 亚洲成人免费影院| 一区二区三区在线观看网站| 成人免费在线观看入口| 中文字幕国产一区| 欧美va日韩va| 日韩午夜三级在线| 欧美一区二区三区日韩视频| 欧美日韩国产精品成人| 欧美影院一区二区| 欧美性做爰猛烈叫床潮| 色妞www精品视频| 色婷婷精品久久二区二区蜜臂av| 成人深夜福利app| 成人午夜在线视频| 成人免费av在线| 97久久人人超碰| 欧美午夜一区二区三区免费大片| 91在线观看污| 91福利区一区二区三区| 精品视频在线看| 欧美一区二区国产| 精品国产一二三| 国产网站一区二区三区| 欧美经典一区二区三区| 国产精品美女久久久久aⅴ| 国产精品久久久久久久第一福利| 亚洲欧洲一区二区在线播放| 亚洲高清不卡在线| 色综合久久中文综合久久97| 国产a久久麻豆| av电影在线观看完整版一区二区| 粉嫩蜜臀av国产精品网站| 波多野洁衣一区| 欧美综合视频在线观看| 制服视频三区第一页精品| 日韩精品一区二| 国产精品三级在线观看| 亚洲欧美日韩国产一区二区三区| 亚洲精品国久久99热| 天天综合色天天综合| 狠狠色丁香久久婷婷综合_中| 国产盗摄视频一区二区三区| 色综合久久精品| 日韩欧美一二三四区| 欧美激情一区二区三区不卡 | 午夜一区二区三区在线观看| 美女脱光内衣内裤视频久久网站| 国产成人自拍网| 欧美在线免费视屏| 久久色在线观看| 亚洲成人自拍网| 成人自拍视频在线| 欧美一区二区三区日韩视频| 国产精品久久久久影视| 久久精品理论片|