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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? aclocal.m4

?? khtml在gtk上的移植版本
?? M4
?? 第 1 頁 / 共 5 頁
字號:
# 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 -*-# Copyright 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 5AC_PREREQ(2.52)# AM_CONDITIONAL(NAME, SHELL-CONDITION)# -------------------------------------# Define a conditional.AC_DEFUN([AM_CONDITIONAL],[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnlAC_SUBST([$1_TRUE])AC_SUBST([$1_FALSE])if $2; then  $1_TRUE=  $1_FALSE='#'else  $1_TRUE='#'  $1_FALSE=fiAC_CONFIG_COMMANDS_PRE([if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then  AC_MSG_ERROR([conditional \"$1\" was never defined.Usually this means the macro was only invoked conditionally.])fi])])# 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])

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色婷婷综合在线| 91精品一区二区三区在线观看| 精品系列免费在线观看| 日韩中文字幕区一区有砖一区| 亚洲免费伊人电影| 亚洲美女视频在线| 洋洋av久久久久久久一区| 一个色在线综合| 亚洲成在线观看| 天堂成人免费av电影一区| 婷婷综合另类小说色区| 日本不卡一二三| 狠狠色2019综合网| 国产成人av影院| 成人天堂资源www在线| 91麻豆国产精品久久| 欧美视频自拍偷拍| 欧美精品日日鲁夜夜添| 日韩视频在线一区二区| 久久久久久久网| 国产精品国产三级国产aⅴ无密码| 亚洲欧美综合另类在线卡通| 亚洲精品一二三区| 亚洲高清久久久| 日本sm残虐另类| 粉嫩高潮美女一区二区三区| 91免费在线视频观看| 欧美猛男超大videosgay| 欧美大片一区二区| 国产欧美日韩三级| 亚洲一区二区三区国产| 麻豆精品久久久| 丁香六月综合激情| 欧美亚洲一区二区在线| 精品少妇一区二区三区在线视频| 欧美国产一区在线| 亚洲午夜一二三区视频| 久久99最新地址| 一本到高清视频免费精品| 欧美一区二区福利视频| 国产欧美va欧美不卡在线| 亚洲一二三四区| 久久精品国产一区二区| 99re成人精品视频| 日韩一区二区三区观看| 国产精品美女久久久久久| 视频一区视频二区中文| 丁香婷婷综合激情五月色| 欧美精品在欧美一区二区少妇| 2019国产精品| 亚洲图片欧美一区| 成人免费看黄yyy456| 91精品国产综合久久国产大片| 国产欧美一二三区| 免费三级欧美电影| 97se亚洲国产综合在线| 精品日韩在线观看| 亚洲成a人片在线观看中文| 国产高清精品网站| 日韩一区二区在线观看视频| 国产精品久久久久精k8| 精品一区二区免费视频| 欧美日韩国产精选| 亚洲日本免费电影| 国产精品1区二区.| 日韩一级成人av| 一区二区三区日韩欧美精品| 国产99久久久国产精品| 日韩丝袜情趣美女图片| 亚洲成人av电影在线| 91麻豆成人久久精品二区三区| 久久久久久久久久久电影| 免费不卡在线观看| 欧美自拍丝袜亚洲| 亚洲婷婷综合久久一本伊一区| 激情综合色丁香一区二区| 欧美日韩在线播| 亚洲日本丝袜连裤袜办公室| 国产99久久久国产精品潘金| 2023国产精品| 久久99精品久久久久久久久久久久| 在线观看精品一区| 亚洲少妇30p| proumb性欧美在线观看| 久久久影视传媒| 久久69国产一区二区蜜臀| 6080yy午夜一二三区久久| 亚洲一区二区三区四区在线观看| 91原创在线视频| 亚洲美女电影在线| 91在线观看视频| 亚洲视频在线观看一区| av一二三不卡影片| 国产精品私人影院| 国产久卡久卡久卡久卡视频精品| 日韩三级精品电影久久久 | 亚洲一级不卡视频| 色狠狠av一区二区三区| 一区二区欧美视频| 色菇凉天天综合网| 亚洲午夜在线电影| 欧美精选午夜久久久乱码6080| 日韩精品欧美成人高清一区二区| 欧美日韩国产另类一区| 日韩高清电影一区| 日韩一区二区三免费高清| 美女免费视频一区二区| 日韩手机在线导航| 国产麻豆精品一区二区| 久久精品视频免费观看| 国产一区在线观看麻豆| 国产欧美日韩卡一| 91啪九色porn原创视频在线观看| 一区二区三区在线免费播放| 欧美剧情电影在线观看完整版免费励志电影| 亚洲一区二区三区四区在线观看 | 欧美三级视频在线播放| 亚洲成人精品一区| 日韩欧美中文字幕公布| 国产.欧美.日韩| 综合电影一区二区三区| 欧美午夜精品理论片a级按摩| 亚洲第一狼人社区| 精品人在线二区三区| 国产成人午夜高潮毛片| 亚洲美女在线一区| 欧美一区二区在线不卡| 国产在线精品免费| 中文字幕一区二区日韩精品绯色| 色天天综合色天天久久| 午夜不卡av在线| 久久久久9999亚洲精品| 99国产精品久久久久久久久久久| 午夜精品123| 久久久国际精品| 欧美亚洲国产一卡| 精品一区二区免费看| 中文字幕在线一区免费| 欧美三级视频在线| 国产成人小视频| 天天射综合影视| 国产夜色精品一区二区av| 色天使色偷偷av一区二区| 蜜桃免费网站一区二区三区| 国产精品进线69影院| 欧美喷潮久久久xxxxx| 丁香一区二区三区| 日韩精品每日更新| 国产精品夫妻自拍| 日韩久久精品一区| 色综合网站在线| 精品亚洲porn| 亚洲成人在线网站| 国产精品剧情在线亚洲| 欧美一区二区三区男人的天堂| 盗摄精品av一区二区三区| 日韩国产在线一| 最新中文字幕一区二区三区| 91精品国产91久久久久久一区二区| 不卡区在线中文字幕| 蜜桃精品视频在线观看| 亚洲女同一区二区| 国产视频一区二区三区在线观看| 欧美日韩一区成人| 成人一级视频在线观看| 日本午夜精品一区二区三区电影| 亚洲视频在线观看三级| 久久伊人中文字幕| 欧美久久久久久久久| 色哟哟一区二区| 国产成人在线视频网站| 美女免费视频一区| 亚洲国产日日夜夜| 国产欧美日韩亚州综合 | 亚洲国产婷婷综合在线精品| 欧美激情一区二区在线| 精品免费一区二区三区| 欧美日韩aaaaaa| 欧美群妇大交群中文字幕| av成人动漫在线观看| 国产一区二区三区视频在线播放| 午夜在线成人av| 亚洲小说欧美激情另类| 亚洲日本在线视频观看| 国产精品毛片大码女人| 2017欧美狠狠色| 欧美xxxxx牲另类人与| 欧美一区二区在线看| 欧美日韩视频一区二区| 色婷婷综合久久久中文字幕| 成人久久18免费网站麻豆| 国产成人免费9x9x人网站视频| 捆绑调教一区二区三区| 久久精品国产免费| 奇米精品一区二区三区在线观看| 亚洲成av人**亚洲成av**| 亚洲国产精品一区二区久久| 一区二区三区欧美亚洲| 亚洲欧美一区二区久久| 亚洲欧美激情在线|