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

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

?? configure

?? gz124src.zip is a mini Gzip.
??
?? 第 1 頁 / 共 2 頁
字號:
#!/bin/sh# Guess values for system-dependent variables and create Makefiles.# Generated automatically using autoconf.# Copyright (C) 1991, 1992, 1993 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., 675 Mass Ave, Cambridge, MA 02139, USA.# Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]#        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]# Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and# --with-PACKAGE unless this script has special code to handle it.for argdo  # Handle --exec-prefix with a space before the argument.  if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=  # Handle --host with a space before the argument.  elif test x$next_host = xyes; then next_host=  # Handle --prefix with a space before the argument.  elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=  # Handle --srcdir with a space before the argument.  elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=  else    case $arg in     # For backward compatibility, also recognize exact --exec_prefix.     -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)	exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;     -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)	next_exec_prefix=yes ;;     -gas | --gas | --ga | --g) ;;     -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;     -host | --host | --hos | --ho | --h)	next_host=yes ;;     -nfp | --nfp | --nf) ;;     -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)        no_create=1 ;;     -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)	prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;     -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)	next_prefix=yes ;;     -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)	srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;     -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)	next_srcdir=yes ;;     -with-* | --with-*)       package=`echo $arg|sed 's/-*with-//'`       # Delete all the valid chars; see if any are left.       if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then         echo "configure: $package: invalid package name" >&2; exit 1       fi       eval "with_`echo $package|sed s/-/_/g`=1" ;;     -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)       verbose=yes ;;     *) ;;    esac  fidonetrap 'rm -f conftest* core; exit 1' 1 3 15# Needed for some versions of `tr' so that character classes in `[]' work.if test "${LANG+set}" = "set" ; then   LANG=C   LC_ALL=C   export LANG LC_ALLfirm -f conftest*compile='${CC-cc} $CFLAGS $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'# A filename unique to this package, relative to the directory that# configure is in, which we can look for to find out if srcdir is correct.unique_file=gzip.c# Find the source files, if location was not specified.if test -z "$srcdir"; then  srcdirdefaulted=yes  # Try the directory containing this script, then `..'.  prog=$0  confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`  test "X$confdir" = "X$prog" && confdir=.  srcdir=$confdir  if test ! -r $srcdir/$unique_file; then    srcdir=..  fifiif test ! -r $srcdir/$unique_file; then  if test x$srcdirdefaulted = xyes; then    echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2  else    echo "configure: Can not find sources in \`${srcdir}'." 1>&2  fi  exit 1fi# Preserve a srcdir of `.' to avoid automounter screwups with pwd.# But we can't avoid them for `..', to make subdirectories work.case $srcdir in  .|/*|~*) ;;  *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.esacif test -z "$CC"; then  # Extract the first word of `gcc', so it can be a program name with args.  set dummy gcc; word=$2  echo checking for $word  IFS="${IFS= 	}"; saveifs="$IFS"; IFS="${IFS}:"  for dir in $PATH; do    test -z "$dir" && dir=.    if test -f $dir/$word; then      CC="gcc"      break    fi  done  IFS="$saveifs"fitest -z "$CC" && CC="cc"test -n "$CC" -a -n "$verbose" && echo "	setting CC to $CC"# Find out if we are using GNU C, under whatever name.cat > conftest.c <<EOF#ifdef __GNUC__  yes#endifEOF${CC-cc} -E conftest.c > conftest.out 2>&1if egrep yes conftest.out >/dev/null 2>&1; then  GCC=1 # For later tests.  CFLAGS="${CFLAGS--O}"firm -f conftest*echo checking how to run the C preprocessorif test -z "$CPP"; then  CPP='${CC-cc} -E'  cat > conftest.c <<EOF#include <stdio.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  :else  CPP=/lib/cppfirm -f conftest*fiecho checking for underline in external namestest -z "$ASCPP" -a -f /lib/cpp && ASCPP=/lib/cpptest -z "$ASCPP" && ASCPP="$CC -E"cat > conftest.c <<EOFint foo() {return 0;}EOFeval "$CC -c conftest.c > /dev/null 2>&1"if nm conftest.o | grep _foo > /dev/null 2>&1 ; then  :else  ASCPP="${ASCPP} -DNO_UNDERLINE"firm -f _match.o conftest.c conftest.oif echo "$DEFS" | grep NO_ASM >/dev/null; then  :else  echo checking for assembler  OBJA=""  if eval "$ASCPP $srcdir/match.S > _match.s 2>/dev/null"; then    if test ! -s _match.s || grep error < _match.s > /dev/null; then      :    elif eval "$CC -c _match.s >/dev/null 2>&1" && test -f _match.o; then      DEFS="${DEFS} -DASMV"      OBJA=match.o    fi  fi  rm -f _match.s _match.ofi# Make sure to not get the incompatible SysV /etc/install and# /usr/sbin/install, which might be in PATH before a BSD-like install,# or the SunOS /usr/etc/install directory, or the AIX /bin/install,# or the AFS install, which mishandles nonexistent args, or# /usr/ucb/install on SVR4, which tries to use the nonexistent group# `staff'.  On most BSDish systems install is in /usr/bin, not /usr/ucb# anyway.  Sigh.if test "z${INSTALL}" = "z" ; then  echo checking for install  IFS="${IFS= 	}"; saveifs="$IFS"; IFS="${IFS}:"  for dir in $PATH; do    test -z "$dir" && dir=.    case $dir in    /etc|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;    *)      if test -f $dir/installbsd; then	INSTALL="$dir/installbsd -c" # OSF1	INSTALL_PROGRAM='$(INSTALL)'	INSTALL_DATA='$(INSTALL) -m 644'	break      fi      if test -f $dir/install; then	if grep dspmsg $dir/install >/dev/null 2>&1; then	  : # AIX	else	  INSTALL="$dir/install -c"	  INSTALL_PROGRAM='$(INSTALL)'	  INSTALL_DATA='$(INSTALL) -m 644'	  break	fi      fi      ;;    esac  done  IFS="$saveifs"fiINSTALL=${INSTALL-cp}INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}echo checking for AIXcat > conftest.c <<EOF#ifdef _AIX  yes#endifEOFeval "$CPP \$DEFS conftest.c > conftest.out 2>&1"if egrep "yes" conftest.out >/dev/null 2>&1; then  {test -n "$verbose" && \echo '	defining' _ALL_SOURCEDEFS="$DEFS -D_ALL_SOURCE=1"}firm -f conftest*echo checking for minix/config.hcat > conftest.c <<EOF#include <minix/config.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  MINIX=1firm -f conftest*# The Minix shell can't assign to the same variable on the same line!if test -n "$MINIX"; then  {test -n "$verbose" && \echo '	defining' _POSIX_SOURCEDEFS="$DEFS -D_POSIX_SOURCE=1"}  {test -n "$verbose" && \echo '	defining' _POSIX_1_SOURCE to be '2'DEFS="$DEFS -D_POSIX_1_SOURCE=2"}  {test -n "$verbose" && \echo '	defining' _MINIXDEFS="$DEFS -D_MINIX=1"}fiecho checking for POSIXized ISCif test -d /etc/conf/kconfig.d &&  grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1then  ISC=1 # If later tests want to check for ISC.  {test -n "$verbose" && \echo '	defining' _POSIX_SOURCEDEFS="$DEFS -D_POSIX_SOURCE=1"}  if test -n "$GCC"; then    CC="$CC -posix"  else    CC="$CC -Xp"  fifiecho checking for DYNIX/ptx libseqcat > conftest.c <<EOF#if defined(_SEQUENT_)  yes#endifEOFeval "$CPP \$DEFS conftest.c > conftest.out 2>&1"if egrep "yes" conftest.out >/dev/null 2>&1; then  SEQUENT=1firm -f conftest*test -n "$SEQUENT" && test -f /usr/lib/libseq.a &&  LIBS="$LIBS -lseq"echo checking for ANSI C header filescat > conftest.c <<EOF#include <stdlib.h>#include <stdarg.h>#include <string.h>#include <float.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.echo '#include <string.h>' > conftest.ceval "$CPP \$DEFS conftest.c > conftest.out 2>&1"if egrep "memchr" conftest.out >/dev/null 2>&1; then  # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.cat > conftest.c <<EOF#include <ctype.h>#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))#define XOR(e,f) (((e) && !(f)) || (!(e) && (f)))int main () { int i; for (i = 0; i < 256; i++)if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);exit (0); }EOFeval $compileif test -s conftest && (./conftest; exit) 2>/dev/null; then  {test -n "$verbose" && \echo '	defining' STDC_HEADERSDEFS="$DEFS -DSTDC_HEADERS=1"}firm -f conftest*firm -f conftest*firm -f conftest*echo checking for string.hcat > conftest.c <<EOF#include <string.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  :else  {test -n "$verbose" && \echo '	defining' NO_STRING_HDEFS="$DEFS -DNO_STRING_H=1"}firm -f conftest*echo checking for stdlib.hcat > conftest.c <<EOF#include <stdlib.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  :else  {test -n "$verbose" && \echo '	defining' NO_STDLIB_HDEFS="$DEFS -DNO_STDLIB_H=1"}firm -f conftest*echo checking for memory.hcat > conftest.c <<EOF#include <memory.h>EOFerr=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`if test -z "$err"; then  :else  {test -n "$verbose" && \echo '	defining' NO_MEMORY_HDEFS="$DEFS -DNO_MEMORY_H=1"}firm -f conftest*echo checking for fcntl.hcat > conftest.c <<EOF

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久一区二区| 亚洲人精品午夜| 欧美日韩国产乱码电影| 91麻豆123| 91视频一区二区| 久久国产精品露脸对白| 国产性做久久久久久| 另类小说视频一区二区| 麻豆精品久久久| 亚洲国产精品久久久男人的天堂| 日韩精品国产精品| 国产精品国产自产拍高清av| 国产日韩欧美制服另类| 亚洲精品一区二区三区四区高清| 精品精品国产高清a毛片牛牛 | 亚洲精品网站在线观看| 亚洲欧洲国产专区| 一区二区三区在线播| 国产精品不卡一区| 久久精品视频在线免费观看| 舔着乳尖日韩一区| 日韩精品最新网址| www激情久久| 中文字幕在线不卡| 日韩av午夜在线观看| 精品一区在线看| 99免费精品视频| 一本到不卡精品视频在线观看 | 久久综合国产精品| 国产精品私人影院| 午夜久久久久久电影| 国精产品一区一区三区mba视频| 国产盗摄女厕一区二区三区| 在线观看日产精品| 26uuu亚洲综合色欧美| 亚洲精品一二三| 国内精品伊人久久久久av一坑| 成人丝袜高跟foot| 日韩免费视频一区| 亚洲精品视频在线观看网站| 开心九九激情九九欧美日韩精美视频电影 | 欧美日韩在线免费视频| 26uuu色噜噜精品一区| 亚洲二区在线视频| 成人永久免费视频| 欧美电影免费观看高清完整版| 亚洲欧洲av一区二区三区久久| 蜜臀91精品一区二区三区 | 欧美变态tickling挠脚心| 国产精品成人在线观看| 青青草原综合久久大伊人精品| 99国产欧美另类久久久精品 | 色综合久久久久| 亚洲精品一区二区三区精华液 | 极品美女销魂一区二区三区免费| 色综合天天做天天爱| 久久久91精品国产一区二区精品 | 欧美激情在线免费观看| 精品一区二区三区在线播放视频| 欧美唯美清纯偷拍| 久久精品在这里| 久久99精品国产麻豆婷婷| 欧美伊人久久久久久久久影院 | 午夜欧美电影在线观看| 在线免费观看日韩欧美| 国产精品国产精品国产专区不片| 韩国v欧美v日本v亚洲v| 欧美一级日韩不卡播放免费| 亚洲一区av在线| 国产iv一区二区三区| 久久在线免费观看| 久色婷婷小香蕉久久| 欧美一区二区三区视频免费 | 91精品国产一区二区| 午夜精品国产更新| 欧美日韩国产首页| 亚洲成人先锋电影| 日韩欧美中文字幕制服| 欧美日韩黄色影视| 亚洲制服欧美中文字幕中文字幕| 成人欧美一区二区三区视频网页 | 欧美日韩国产综合久久| 1024成人网色www| a在线播放不卡| 国产精品福利一区| 成人中文字幕在线| 亚洲视频网在线直播| 97se亚洲国产综合在线| 一色屋精品亚洲香蕉网站| 99免费精品在线观看| 亚洲欧美韩国综合色| 91福利社在线观看| 亚洲成人动漫一区| 日韩精品一区二区三区视频| 国产在线不卡一区| 亚洲国产精品视频| 日韩欧美国产精品一区| 国产精品一区二区不卡| 欧美经典一区二区| 色婷婷综合激情| 午夜精品久久久久久久久| 欧美一区二区黄| 国产成人午夜99999| 亚洲精品视频一区| 7777精品久久久大香线蕉| 国产一区二三区好的| 亚洲欧洲三级电影| 欧美日韩不卡视频| 国产乱码精品一区二区三区忘忧草| 中文字幕欧美日韩一区| 欧美亚洲动漫精品| 国产一区二区三区免费在线观看| 亚洲天堂网中文字| 日韩一区二区三区视频在线| 国产99久久久久| 琪琪久久久久日韩精品| 日本一区二区成人| 911精品产国品一二三产区 | 久久色视频免费观看| av在线播放成人| 全国精品久久少妇| 国产精品乱码一区二区三区软件| 欧美日韩免费一区二区三区| 国产美女精品在线| 亚洲成a人片综合在线| 久久亚洲一级片| 777奇米成人网| 一本大道久久精品懂色aⅴ| 美腿丝袜在线亚洲一区| 一区二区三区在线观看视频 | 欧美日韩国产首页在线观看| 成人教育av在线| 国产自产v一区二区三区c| 亚洲主播在线播放| 亚洲你懂的在线视频| 久久噜噜亚洲综合| 日韩三级.com| 欧美日本免费一区二区三区| 91视频一区二区| 成人免费av在线| 国产乱国产乱300精品| 欧美精品一区二区高清在线观看| 色中色一区二区| 亚洲一区自拍偷拍| 亚洲人成7777| 国产亚洲综合色| 久久影院午夜片一区| 日韩一区二区精品葵司在线| 欧美日韩一本到| 欧美午夜精品一区二区三区| 99久久99久久精品国产片果冻 | 一本一本大道香蕉久在线精品 | 日韩亚洲欧美成人一区| 欧美日韩精品一区二区三区四区 | 亚洲三级理论片| 国产精品国产三级国产专播品爱网| 国产欧美日韩亚州综合| 欧美大片一区二区三区| 欧美一二三四在线| 91精品国产综合久久福利软件| 欧美乱熟臀69xxxxxx| 欧美日韩综合不卡| 一本一本久久a久久精品综合麻豆| 久热成人在线视频| 不卡视频在线看| 亚洲精品高清在线观看| 国产精品精品国产色婷婷| 亚洲日本va午夜在线电影| 亚洲天堂2014| 曰韩精品一区二区| 亚洲蜜桃精久久久久久久| 一区二区三区在线观看视频 | 一本到三区不卡视频| 日本高清免费不卡视频| 欧美日韩大陆在线| 精品国产乱码久久久久久久| 日本一区二区成人| 中文字幕日本不卡| 亚洲一级二级三级| 久久99精品国产91久久来源| 国产乱淫av一区二区三区| jlzzjlzz亚洲女人18| 欧美日韩综合在线| 精品精品国产高清a毛片牛牛| 中文字幕第一区第二区| 亚洲国产精品久久久久婷婷884| 另类小说图片综合网| 北条麻妃一区二区三区| 欧美肥胖老妇做爰| 久久久久久久免费视频了| 亚洲宅男天堂在线观看无病毒| 蜜桃久久久久久久| 99精品久久只有精品| 日韩一区二区在线观看视频| 久久久久国产成人精品亚洲午夜| 亚洲欧美电影一区二区| 裸体一区二区三区| 色中色一区二区| 久久免费看少妇高潮| 国产91丝袜在线播放0|