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

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

?? aclocal.m4

?? shrike is a utility application that acts as a testbed for shaders written in Sh
?? M4
?? 第 1 頁 / 共 5 頁
字號:
# 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/../..'.## Of course, Automake must honor this variable whenever it calls a# tool from the auxiliary directory.  The problem is that $srcdir (and# therefore $ac_aux_dir as well) can be either absolute or relative,# depending on how configure is run.  This is pretty annoying, since# it makes $ac_aux_dir quite unusable in subdirectories: in the top# source directory, any form will work fine, but in subdirectories a# relative path needs to be adjusted first.## $ac_aux_dir/missing#    fails when called from a subdirectory if $ac_aux_dir is relative# $top_srcdir/$ac_aux_dir/missing#    fails if $ac_aux_dir is absolute,#    fails when called from a subdirectory in a VPATH build with#          a relative $ac_aux_dir## The reason of the latter failure is that $top_srcdir and $ac_aux_dir# are both prefixed by $srcdir.  In an in-source build this is usually# harmless because $srcdir is `.', but things will broke when you# start a VPATH build or use an absolute $srcdir.## So we could use something similar to $top_srcdir/$ac_aux_dir/missing,# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`# and then we would define $MISSING as#   MISSING="\${SHELL} $am_aux_dir/missing"# This will work as long as MISSING is not called from configure, because# unfortunately $(top_srcdir) has no meaning in configure.# However there are other variables, like CC, which are often used in# configure, and could therefore not use this "fixed" $ac_aux_dir.## Another solution, used here, is to always expand $ac_aux_dir to an# absolute PATH.  The drawback is that using absolute paths prevent a# configured tree to be moved without reconfiguration.# Rely on autoconf to set up CDPATH properly.AC_PREREQ([2.50])AC_DEFUN([AM_AUX_DIR_EXPAND], [# expand $ac_aux_dir to an absolute patham_aux_dir=`cd $ac_aux_dir && pwd`])# AM_PROG_INSTALL_SH# ------------------# Define $install_sh.# 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.AC_DEFUN([AM_PROG_INSTALL_SH],[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnlinstall_sh=${install_sh-"$am_aux_dir/install-sh"}AC_SUBST(install_sh)])# AM_PROG_INSTALL_STRIP# 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.# One issue with vendor `install' (even GNU) is that you can't# 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])])#                                                          -*- Autoconf -*-# Copyright (C) 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.# serial 1# Check whether the underlying file-system supports filenames# with a leading dot.  For instance MS-DOS doesn't.AC_DEFUN([AM_SET_LEADING_DOT],[rm -rf .tst 2>/dev/nullmkdir .tst 2>/dev/nullif test -d .tst; then  am__leading_dot=.else  am__leading_dot=_firmdir .tst 2>/dev/nullAC_SUBST([am__leading_dot])])# serial 5						-*- Autoconf -*-# Copyright (C) 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.# 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  # We will build objects and dependencies in a subdirectory because  # it helps to detect inapplicable dependency modes.  For instance  # both Tru64's cc and ICC support -MD to output dependencies as a  # side effect of compilation, but ICC will put the dependencies in  # the current directory while Tru64 will put them in the object  # directory.  mkdir sub  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    # Setup a source with many dependencies, because some compilers    # like to wrap large dependency lists on column 80 (with \), and    # we should not choose a depcomp mode which is confused by this.    #    # 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.    : > sub/conftest.c    for i in 1 2 3 4 5 6; do      echo '#include "conftst'$i'.h"' >> sub/conftest.c      : > sub/conftst$i.h    done    echo "${am__include} ${am__quote}sub/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=sub/conftest.c object=sub/conftest.${OBJEXT-o} \       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \         >/dev/null 2>conftest.err &&       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then      # icc doesn't choke on unknown options, it will just issue warnings      # (even with -Werror).  So we grep stderr for any message      # that says an option was ignored.      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else        am_cv_$1_dependencies_compiler_type=$depmode        break      fi    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_CONDITIONAL([am__fastdep$1], [  test "x$enable_dependency_tracking" != xno \  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])])# AM_SET_DEPDIR# -------------# Choose a directory name for dependency files.# This macro is AC_REQUIREd in _AM_DEPENDENCIESAC_DEFUN([AM_SET_DEPDIR],[AC_REQUIRE([AM_SET_LEADING_DOT])dnlAC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl])

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
不卡av免费在线观看| 国产视频一区不卡| 国产网红主播福利一区二区| 亚洲欧美福利一区二区| 国产在线精品一区二区夜色| 91精品1区2区| 国产精品毛片久久久久久久| 蜜桃av一区二区三区电影| 91丨九色丨蝌蚪丨老版| 久久久久久久精| 日韩精品免费专区| 欧美午夜精品一区二区蜜桃| 亚洲在线视频网站| 国产成a人亚洲精| 欧美电影免费观看高清完整版| 亚洲欧美日韩久久| 成人黄色av网站在线| 久久久青草青青国产亚洲免观| 亚洲1区2区3区视频| 91福利在线播放| 亚洲婷婷综合久久一本伊一区| 激情小说欧美图片| 日韩欧美中文字幕一区| 婷婷激情综合网| 欧美日韩一区高清| 亚洲综合色自拍一区| 色婷婷一区二区三区四区| 中文字幕一区二区三区色视频| 国产精一区二区三区| 亚洲精品一区二区三区蜜桃下载 | 97精品视频在线观看自产线路二| 精品久久99ma| 黄色日韩网站视频| 精品日本一线二线三线不卡| 日韩电影在线一区| 欧美一区二区三区免费视频| 日日夜夜精品免费视频| 欧美一区二区在线免费播放 | 欧美丝袜丝交足nylons| 亚洲一区二区三区视频在线播放| 99久久精品国产一区二区三区 | 欧美一三区三区四区免费在线看| 午夜精品久久久久影视| 欧美剧情电影在线观看完整版免费励志电影| 亚洲女同一区二区| 欧美私人免费视频| 美女www一区二区| 久久久不卡网国产精品一区| 国产suv精品一区二区三区| 精品婷婷伊人一区三区三| 亚洲欧美日韩中文播放| 在线亚洲人成电影网站色www| 亚洲伦在线观看| 欧美最猛性xxxxx直播| 亚洲一区二区影院| 欧美成人精品1314www| 国产精品一二三四区| 亚洲日本丝袜连裤袜办公室| 欧美喷水一区二区| 国产一区免费电影| 亚洲激情在线激情| 国产精品乱人伦| 91福利视频久久久久| 七七婷婷婷婷精品国产| 久久精品一区四区| 色婷婷国产精品久久包臀 | 蜜臂av日日欢夜夜爽一区| 精品国产91乱码一区二区三区 | 日本视频免费一区| 国产午夜精品一区二区三区嫩草| 91啪九色porn原创视频在线观看| 日本一区中文字幕| 亚洲欧洲三级电影| 欧美一级高清片在线观看| 国产成人精品三级| 日韩国产欧美一区二区三区| 久久精品一区八戒影视| 欧美日韩在线电影| 成人黄色a**站在线观看| 视频一区视频二区中文| 中文字幕在线观看不卡视频| 欧美一二三四区在线| 91理论电影在线观看| 精品一区二区三区不卡| 亚洲一区二区成人在线观看| 26uuu国产在线精品一区二区| 欧美在线看片a免费观看| 粉嫩av一区二区三区| 日本欧美肥老太交大片| 玉足女爽爽91| 欧美国产精品一区二区三区| 欧美一级在线免费| 欧美日韩在线观看一区二区| 99re这里只有精品视频首页| 国产精品一卡二卡| 久久精品国产久精国产爱| 亚洲电影一级片| 亚洲精品视频在线观看网站| 欧美国产日韩a欧美在线观看| 精品国产乱码久久久久久图片| 欧美日韩亚洲综合| 91国产福利在线| 日韩精品一区二区三区在线播放 | 国产最新精品精品你懂的| 午夜亚洲国产au精品一区二区| 成人免费在线观看入口| 国产欧美一区二区在线观看| 欧美成人综合网站| 日韩女同互慰一区二区| 日韩欧美一级二级三级| 正在播放一区二区| 91精品在线一区二区| 欧美日韩精品一区二区| 欧美日韩大陆一区二区| 欧美三级在线看| 欧美精选午夜久久久乱码6080| 在线免费观看日本欧美| 日本乱人伦aⅴ精品| 在线观看一区二区视频| 日本精品裸体写真集在线观看| 99精品一区二区| 日本电影欧美片| 欧美日韩专区在线| 欧美一级视频精品观看| 欧美xxxxx裸体时装秀| 久久亚洲一级片| 久久嫩草精品久久久久| 久久中文字幕电影| 国产精品每日更新在线播放网址| 国产精品国产三级国产有无不卡| 中文字幕在线不卡一区| 亚洲国产三级在线| 蜜臀va亚洲va欧美va天堂| 精品一区免费av| 成人av电影免费在线播放| 色综合天天做天天爱| 精品视频一区二区三区免费| 3d动漫精品啪啪| 久久精子c满五个校花| 亚洲欧洲日韩综合一区二区| 一区二区欧美精品| 美国毛片一区二区三区| 国产成人精品免费| 色噜噜久久综合| 日韩欧美一级二级三级久久久| 久久免费视频色| 亚洲精品videosex极品| 男男成人高潮片免费网站| 国产一区二区在线视频| 91污片在线观看| 欧美一级片免费看| 国产精品伦理一区二区| 日韩精品一级二级| gogo大胆日本视频一区| 在线不卡免费欧美| 亚洲国产精品成人综合色在线婷婷| 一区二区三区中文字幕| 国内成+人亚洲+欧美+综合在线| 99久久久国产精品| 精品国产污污免费网站入口 | 欧美一区二区三区影视| 国产精品白丝在线| 免费看欧美女人艹b| 91丨九色porny丨蝌蚪| 欧美成人福利视频| 亚洲一二三专区| 成人激情开心网| 日韩女优av电影| 亚洲国产美国国产综合一区二区| 国产精品影视在线| 欧美一区二区三区人| 一区二区三区高清不卡| 国产精品1区二区.| 欧美电影免费观看高清完整版在 | 午夜av电影一区| 97久久久精品综合88久久| 精品99一区二区| 天堂久久久久va久久久久| 色综合久久88色综合天天| 国产日产欧美一区| 精一区二区三区| 欧美一区二区三区公司| 亚洲国产欧美日韩另类综合 | 精东粉嫩av免费一区二区三区| 欧美日韩免费不卡视频一区二区三区| 国产欧美一区二区三区沐欲| 免费观看成人av| 欧美一级一区二区| 日韩黄色片在线观看| 在线国产亚洲欧美| 亚洲综合在线视频| 在线观看日韩国产| 亚洲精品久久久蜜桃| 91视频一区二区| 日韩理论片中文av| 色综合中文字幕国产| 欧美国产精品一区| 风间由美性色一区二区三区| 欧美激情一区三区| 99re视频精品|