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

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

?? aclocal.m4

?? TCPDUMP的C語言源代碼,是在數據鏈路層的應用
?? M4
?? 第 1 頁 / 共 3 頁
字號:
dnl @(#) $Header: /tcpdump/master/tcpdump/aclocal.m4,v 1.113.2.3 2008-09-25 21:50:04 guy Exp $ (LBL)dnldnl Copyright (c) 1995, 1996, 1997, 1998dnl	The Regents of the University of California.  All rights reserved.dnldnl Redistribution and use in source and binary forms, with or withoutdnl modification, are permitted provided that: (1) source code distributionsdnl retain the above copyright notice and this paragraph in its entirety, (2)dnl distributions including binary code include the above copyright notice anddnl this paragraph in its entirety in the documentation or other materialsdnl provided with the distribution, and (3) all advertising materials mentioningdnl features or use of this software display the following acknowledgement:dnl ``This product includes software developed by the University of California,dnl Lawrence Berkeley Laboratory and its contributors.'' Neither the name ofdnl the University nor the names of its contributors may be used to endorsednl or promote products derived from this software without specific priordnl written permission.dnl THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIEDdnl WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OFdnl MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.dnldnl LBL autoconf macrosdnldnldnl Determine which compiler we're using (cc or gcc)dnl If using gcc, determine the version numberdnl If using cc, require that it support ansi prototypesdnl If using gcc, use -O2 (otherwise use -O)dnl If using cc, explicitly specify /usr/local/includednldnl usage:dnldnl	AC_LBL_C_INIT(copt, incls)dnldnl results:dnldnl	$1 (copt set)dnl	$2 (incls set)dnl	CCdnl	LDFLAGSdnl	ac_cv_lbl_gcc_versdnl	LBL_CFLAGSdnlAC_DEFUN(AC_LBL_C_INIT,    [AC_PREREQ(2.12)    AC_BEFORE([$0], [AC_PROG_CC])    AC_BEFORE([$0], [AC_LBL_FIXINCLUDES])    AC_BEFORE([$0], [AC_LBL_DEVEL])    AC_ARG_WITH(gcc, [  --without-gcc           don't use gcc])    $1="-O"    $2=""    if test "${srcdir}" != "." ; then	    $2="-I\$(srcdir)"    fi    if test "${CFLAGS+set}" = set; then	    LBL_CFLAGS="$CFLAGS"    fi    if test -z "$CC" ; then	    case "$host_os" in	    bsdi*)		    AC_CHECK_PROG(SHLICC2, shlicc2, yes, no)		    if test $SHLICC2 = yes ; then			    CC=shlicc2			    export CC		    fi		    ;;	    esac    fi    if test -z "$CC" -a "$with_gcc" = no ; then	    CC=cc	    export CC    fi    AC_PROG_CC    if test "$GCC" = yes ; then	    if test "$SHLICC2" = yes ; then		    ac_cv_lbl_gcc_vers=2		    $1="-O2"	    else		    AC_MSG_CHECKING(gcc version)		    AC_CACHE_VAL(ac_cv_lbl_gcc_vers,			ac_cv_lbl_gcc_vers=`$CC -v 2>&1 | \			    sed -e '/^gcc version /!d' \				-e 's/^gcc version //' \				-e 's/ .*//' -e 's/^[[[^0-9]]]*//' \				-e 's/\..*//'`)		    AC_MSG_RESULT($ac_cv_lbl_gcc_vers)		    if test $ac_cv_lbl_gcc_vers -gt 1 ; then			    $1="-O2"		    fi	    fi    else	    AC_MSG_CHECKING(that $CC handles ansi prototypes)	    AC_CACHE_VAL(ac_cv_lbl_cc_ansi_prototypes,		AC_TRY_COMPILE(		    [#include <sys/types.h>],		    [int frob(int, char *)],		    ac_cv_lbl_cc_ansi_prototypes=yes,		    ac_cv_lbl_cc_ansi_prototypes=no))	    AC_MSG_RESULT($ac_cv_lbl_cc_ansi_prototypes)	    if test $ac_cv_lbl_cc_ansi_prototypes = no ; then		    case "$host_os" in		    hpux*)			    AC_MSG_CHECKING(for HP-UX ansi compiler ($CC -Aa -D_HPUX_SOURCE))			    savedcflags="$CFLAGS"			    CFLAGS="-Aa -D_HPUX_SOURCE $CFLAGS"			    AC_CACHE_VAL(ac_cv_lbl_cc_hpux_cc_aa,				AC_TRY_COMPILE(				    [#include <sys/types.h>],				    [int frob(int, char *)],				    ac_cv_lbl_cc_hpux_cc_aa=yes,				    ac_cv_lbl_cc_hpux_cc_aa=no))			    AC_MSG_RESULT($ac_cv_lbl_cc_hpux_cc_aa)			    if test $ac_cv_lbl_cc_hpux_cc_aa = no ; then				    AC_MSG_ERROR(see the INSTALL doc for more info)			    fi			    CFLAGS="$savedcflags"			    V_CCOPT="-Aa $V_CCOPT"			    AC_DEFINE(_HPUX_SOURCE)			    ;;		    *)			    AC_MSG_ERROR(see the INSTALL doc for more info)			    ;;		    esac	    fi	    $2="$$2 -I/usr/local/include"	    LDFLAGS="$LDFLAGS -L/usr/local/lib"	    case "$host_os" in	    irix*)		    V_CCOPT="$V_CCOPT -xansi -signed -O"		    ;;	    osf*)		    V_CCOPT="$V_CCOPT -std1 -O"		    ;;	    ultrix*)		    AC_MSG_CHECKING(that Ultrix $CC hacks const in prototypes)		    AC_CACHE_VAL(ac_cv_lbl_cc_const_proto,			AC_TRY_COMPILE(			    [#include <sys/types.h>],			    [struct a { int b; };			    void c(const struct a *)],			    ac_cv_lbl_cc_const_proto=yes,			    ac_cv_lbl_cc_const_proto=no))		    AC_MSG_RESULT($ac_cv_lbl_cc_const_proto)		    if test $ac_cv_lbl_cc_const_proto = no ; then			    AC_DEFINE(const,)		    fi		    ;;	    esac    fi])## Try compiling a sample of the type of code that appears in# gencode.c with "inline", "__inline__", and "__inline".## Autoconf's AC_C_INLINE, at least in autoconf 2.13, isn't good enough,# as it just tests whether a function returning "int" can be inlined;# at least some versions of HP's C compiler can inline that, but can't# inline a function that returns a struct pointer.#AC_DEFUN(AC_LBL_C_INLINE,    [AC_MSG_CHECKING(for inline)    AC_CACHE_VAL(ac_cv_lbl_inline, [	ac_cv_lbl_inline=""	ac_lbl_cc_inline=no	for ac_lbl_inline in inline __inline__ __inline	do	    AC_TRY_COMPILE(		[#define inline $ac_lbl_inline		static inline struct iltest *foo(void);		struct iltest {		    int iltest1;		    int iltest2;		};		static inline struct iltest *		foo()		{		    static struct iltest xxx;		    return &xxx;		}],,ac_lbl_cc_inline=yes,)	    if test "$ac_lbl_cc_inline" = yes ; then		break;	    fi	done	if test "$ac_lbl_cc_inline" = yes ; then	    ac_cv_lbl_inline=$ac_lbl_inline	fi])    if test ! -z "$ac_cv_lbl_inline" ; then	AC_MSG_RESULT($ac_cv_lbl_inline)    else	AC_MSG_RESULT(no)    fi    AC_DEFINE_UNQUOTED(inline, $ac_cv_lbl_inline, [Define as token for inline if inlining supported])])dnldnl Use pfopen.c if available and pfopen() not in standard librariesdnl Require libpcapdnl Look for libpcap in ..dnl Use the installed libpcap if there is no local versiondnldnl usage:dnldnl	AC_LBL_LIBPCAP(pcapdep, incls)dnldnl results:dnldnl	$1 (pcapdep set)dnl	$2 (incls appended)dnl	LIBSdnl	LBL_LIBSdnlAC_DEFUN(AC_LBL_LIBPCAP,    [AC_REQUIRE([AC_LBL_LIBRARY_NET])    dnl    dnl save a copy before locating libpcap.a    dnl    LBL_LIBS="$LIBS"    pfopen=/usr/examples/packetfilter/pfopen.c    if test -f $pfopen ; then	    AC_CHECK_FUNCS(pfopen)	    if test $ac_cv_func_pfopen = "no" ; then		    AC_MSG_RESULT(Using $pfopen)		    LIBS="$LIBS $pfopen"	    fi    fi    AC_MSG_CHECKING(for local pcap library)    libpcap=FAIL    lastdir=FAIL    places=`ls $srcdir/.. | sed -e 's,/$,,' -e "s,^,$srcdir/../," | \	egrep '/libpcap-[[0-9]]*.[[0-9]]*(.[[0-9]]*)?([[ab]][[0-9]]*)?$'`    for dir in $places $srcdir/../libpcap $srcdir/libpcap ; do	    basedir=`echo $dir | sed -e 's/[[ab]][[0-9]]*$//'`	    if test $lastdir = $basedir ; then		    dnl skip alphas when an actual release is present		    continue;	    fi	    lastdir=$dir	    if test -r $dir/libpcap.a ; then		    libpcap=$dir/libpcap.a		    d=$dir		    dnl continue and select the last one that exists	    fi    done    if test $libpcap = FAIL ; then	    AC_MSG_RESULT(not found)	    AC_CHECK_LIB(pcap, main, libpcap="-lpcap")	    if test $libpcap = FAIL ; then		    AC_MSG_ERROR(see the INSTALL doc for more info)	    fi	    dnl	    dnl Some versions of Red Hat Linux put "pcap.h" in	    dnl "/usr/include/pcap"; had the LBL folks done so,	    dnl that would have been a good idea, but for	    dnl the Red Hat folks to do so just breaks source	    dnl compatibility with other systems.	    dnl	    dnl We work around this by assuming that, as we didn't	    dnl find a local libpcap, libpcap is in /usr/lib or	    dnl /usr/local/lib and that the corresponding header	    dnl file is under one of those directories; if we don't	    dnl find it in either of those directories, we check to	    dnl see if it's in a "pcap" subdirectory of them and,	    dnl if so, add that subdirectory to the "-I" list.	    dnl	    dnl (We now also put pcap.h in /usr/include/pcap, but we	    dnl leave behind a /usr/include/pcap.h that includes it,	    dnl so you can still just include <pcap.h>.)	    dnl	    AC_MSG_CHECKING(for extraneous pcap header directories)	    if test \( ! -r /usr/local/include/pcap.h \) -a \			\( ! -r /usr/include/pcap.h \); then		if test -r /usr/local/include/pcap/pcap.h; then		    d="/usr/local/include/pcap"		elif test -r /usr/include/pcap/pcap.h; then		    d="/usr/include/pcap"		fi	    fi	    if test -z "$d" ; then		AC_MSG_RESULT(not found)	    else		$2="-I$d $$2"		AC_MSG_RESULT(found -- -I$d added)	    fi    else	    $1=$libpcap	    places=`ls $srcdir/.. | sed -e 's,/$,,' -e "s,^,$srcdir/../," | \    	 		egrep '/libpcap-[[0-9]]*.[[0-9]]*(.[[0-9]]*)?([[ab]][[0-9]]*)?$'`	    if test -r $d/pcap.h; then		    $2="-I$d $$2"	    elif test -r $places/pcap.h; then		    $2="-I$places $$2"	    else                    AC_MSG_ERROR(cannot find pcap.h, see INSTALL) 	    fi	    AC_MSG_RESULT($libpcap)    fi    LIBS="$libpcap $LIBS"    case "$host_os" in    aix*)	    pseexe="/lib/pse.exp"	    AC_MSG_CHECKING(for $pseexe)	    if test -f $pseexe ; then		    AC_MSG_RESULT(yes)		    LIBS="$LIBS -I:$pseexe"	    fi	    #	    # We need "-lodm" and "-lcfg", as libpcap requires them on	    # AIX, and we just build a static libpcap.a and thus can't	    # arrange that when you link with libpcap you automatically	    # link with those libraries.	    #	    LIBS="$LIBS -lodm -lcfg"	    ;;    esac    dnl    dnl Check for "pcap_list_datalinks()", "pcap_set_datalink()",    dnl and "pcap_datalink_name_to_val()", and use substitute versions    dnl if they're not present.    dnl    AC_CHECK_FUNC(pcap_list_datalinks,	AC_DEFINE(HAVE_PCAP_LIST_DATALINKS),	[	    AC_LIBOBJ(datalinks)	])    AC_CHECK_FUNC(pcap_set_datalink,	AC_DEFINE(HAVE_PCAP_SET_DATALINK))    AC_CHECK_FUNC(pcap_datalink_name_to_val,	[	    AC_DEFINE(HAVE_PCAP_DATALINK_NAME_TO_VAL)	    AC_CHECK_FUNC(pcap_datalink_val_to_description,		AC_DEFINE(HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION),		[		    AC_LIBOBJ(dlnames)		])	],	[	    AC_LIBOBJ(dlnames)	])    dnl    dnl Check for "pcap_breakloop()"; you can't substitute for it if    dnl it's absent (it has hooks into the live capture routines),    dnl so just define the HAVE_ value if it's there.    dnl    AC_CHECK_FUNCS(pcap_breakloop)    dnl    dnl Check for "pcap_dump_ftell()" and use a substitute version    dnl if it's not present.    AC_CHECK_FUNC(pcap_dump_ftell,	AC_DEFINE(HAVE_PCAP_DUMP_FTELL),	[	    AC_LIBOBJ(pcap_dump_ftell)	])])dnldnl Define RETSIGTYPE and RETSIGVALdnldnl usage:dnldnl	AC_LBL_TYPE_SIGNALdnldnl results:dnldnl	RETSIGTYPE (defined)dnl	RETSIGVAL (defined)dnlAC_DEFUN(AC_LBL_TYPE_SIGNAL,    [AC_BEFORE([$0], [AC_LBL_LIBPCAP])    AC_TYPE_SIGNAL    if test "$ac_cv_type_signal" = void ; then	    AC_DEFINE(RETSIGVAL,)    else	    AC_DEFINE(RETSIGVAL,(0))    fi    case "$host_os" in    irix*)	    AC_DEFINE(_BSD_SIGNALS)	    ;;    *)	    dnl prefer sigaction() to sigset()	    AC_CHECK_FUNCS(sigaction)	    if test $ac_cv_func_sigaction = no ; then		    AC_CHECK_FUNCS(sigset)	    fi	    ;;    esac])dnldnl If using gcc, make sure we have ANSI ioctl definitionsdnldnl usage:dnldnl	AC_LBL_FIXINCLUDESdnlAC_DEFUN(AC_LBL_FIXINCLUDES,    [if test "$GCC" = yes ; then	    AC_MSG_CHECKING(for ANSI ioctl definitions)	    AC_CACHE_VAL(ac_cv_lbl_gcc_fixincludes,		AC_TRY_COMPILE(		    [/*		     * This generates a "duplicate case value" when fixincludes		     * has not be run.		     */#		include <sys/types.h>#		include <sys/time.h>#		include <sys/ioctl.h>#		ifdef HAVE_SYS_IOCCOM_H#		include <sys/ioccom.h>#		endif],		    [switch (0) {		    case _IO('A', 1):;		    case _IO('B', 1):;		    }],

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产综合色精品一区二区三区| 欧美三级电影一区| 欧美色图免费看| 国产婷婷一区二区| 午夜精品久久久久久久| 国产91综合网| 欧美成人女星排名| 日本欧美一区二区| 色诱亚洲精品久久久久久| 26uuu亚洲| 久久精品国产**网站演员| 99精品热视频| 日本一区二区三区dvd视频在线| 天堂av在线一区| 91原创在线视频| 亚洲国产精品av| 国产精品影视在线观看| 日韩欧美国产午夜精品| 天堂久久久久va久久久久| 91久久线看在观草草青青| 中文字幕高清一区| 国产超碰在线一区| 久久久九九九九| 国产激情视频一区二区三区欧美 | 亚洲三级在线播放| 国产高清不卡一区| 久久久国际精品| 国产盗摄一区二区| 久久精品一区二区三区不卡牛牛 | 亚洲国产成人91porn| 色婷婷综合久久久中文字幕| 中文字幕一区二区三区不卡在线| 国产精品一区二区三区四区| 久久麻豆一区二区| 国产成人在线色| 国产精品成人网| 91麻豆高清视频| 亚洲国产欧美在线| 欧美一二三四区在线| 日产精品久久久久久久性色| 欧美日本在线一区| 久久国产免费看| 欧美激情一区二区三区四区| 成人小视频免费观看| 国产精品美女久久久久久久久久久| 国产福利一区二区| 国产精品精品国产色婷婷| 99天天综合性| 亚洲综合免费观看高清在线观看| 欧美伊人久久久久久午夜久久久久| 亚洲va欧美va人人爽午夜| 日韩一区二区三区电影| 激情偷乱视频一区二区三区| 久久精品欧美一区二区三区麻豆 | 884aa四虎影成人精品一区| 日本不卡一二三| 国产日产欧美一区二区视频| 91视频国产观看| 日韩国产成人精品| 欧美国产日韩精品免费观看| 欧美天天综合网| 九色综合狠狠综合久久| 亚洲少妇30p| 日韩免费观看高清完整版 | 欧美成人官网二区| 国产999精品久久久久久绿帽| 亚洲人成人一区二区在线观看| 欧美日韩国产精品成人| 国产精品1区二区.| 午夜影院在线观看欧美| 日韩免费观看高清完整版在线观看| 国产馆精品极品| 婷婷丁香激情综合| 中文字幕在线观看不卡视频| 这里只有精品视频在线观看| 国产91精品一区二区| 亚洲成a人v欧美综合天堂| 久久久久久久久久美女| 欧美男女性生活在线直播观看| 国产夫妻精品视频| 奇米综合一区二区三区精品视频| 国产精品视频免费看| 91精品国产综合久久久蜜臀粉嫩| 成人小视频免费在线观看| 蜜臀av性久久久久蜜臀av麻豆| 亚洲色大成网站www久久九九| 337p日本欧洲亚洲大胆色噜噜| 欧美少妇xxx| 99国产精品一区| 国产v综合v亚洲欧| 捆绑调教一区二区三区| 偷窥少妇高潮呻吟av久久免费| 中文字幕一区二区三| 久久亚洲影视婷婷| 欧美一二三区精品| 欧美精品三级日韩久久| 91激情在线视频| 91在线porny国产在线看| 国产69精品久久久久777| 九九国产精品视频| 久久精品二区亚洲w码| 免费在线成人网| 日韩不卡在线观看日韩不卡视频| 亚洲狠狠爱一区二区三区| 樱花草国产18久久久久| 成人免费小视频| 成人免费视频在线观看| 中文字幕制服丝袜成人av| 久久久久久毛片| 国产亚洲欧美激情| 国产欧美日韩在线看| 久久综合色鬼综合色| 久久综合九色综合久久久精品综合| 日韩西西人体444www| 日韩一区二区三区四区五区六区| 91精品蜜臀在线一区尤物| 欧美高清dvd| 欧美一区二区三区人| 日韩一区二区在线看| 精品久久久久久综合日本欧美| 精品少妇一区二区三区在线视频| 日韩午夜三级在线| 2017欧美狠狠色| 国产精品国产三级国产普通话三级| 国产日韩精品一区二区三区| 中文字幕欧美日韩一区| 国产精品高潮呻吟| 亚洲情趣在线观看| 亚洲小说春色综合另类电影| 性做久久久久久免费观看| 性感美女极品91精品| 日韩影院在线观看| 韩国一区二区视频| 成人午夜免费av| 91福利在线观看| 日韩一卡二卡三卡四卡| 国产欧美日韩久久| 亚洲欧洲制服丝袜| 蜜臀a∨国产成人精品| 国产中文字幕一区| 91免费视频大全| 91精品国产一区二区三区| 精品国产乱码久久久久久闺蜜| 国产午夜精品在线观看| 综合激情成人伊人| 日韩精品91亚洲二区在线观看| 国产一区二区三区在线观看免费视频 | 欧美日韩卡一卡二| 精品剧情v国产在线观看在线| 国产三级一区二区| 亚洲综合一区二区精品导航| 美日韩一区二区| jlzzjlzz亚洲日本少妇| 欧美久久久久久久久久| 国产欧美一区二区三区鸳鸯浴 | 日本一区二区三区电影| 亚洲一线二线三线视频| 国内精品国产三级国产a久久| 97久久精品人人澡人人爽| 日韩精品资源二区在线| 亚洲色图.com| 国产精品亚洲第一区在线暖暖韩国| 欧美在线小视频| 国产精品看片你懂得| 久久精品久久精品| 欧美日韩免费不卡视频一区二区三区| 久久久久国产精品人| 天天综合网 天天综合色| 成人蜜臀av电影| 精品国产自在久精品国产| 亚洲午夜日本在线观看| 国产成人免费xxxxxxxx| 日韩欧美在线综合网| 亚洲国产一区二区三区| 国产99精品视频| 久久噜噜亚洲综合| 免费av网站大全久久| 在线观看一区二区视频| 国产精品久久久久影院| 九一九一国产精品| 日韩一区二区三区免费观看| 一区二区三区欧美久久| 成人小视频免费观看| 久久丝袜美腿综合| 韩国一区二区视频| 精品国产一区二区三区不卡| 亚洲成人在线观看视频| 欧美综合色免费| 夜夜揉揉日日人人青青一国产精品| 成人深夜在线观看| 久久久久久久网| 国产美女一区二区三区| 久久夜色精品国产噜噜av| 国内一区二区在线| 精品国产乱码久久久久久图片| 狠狠色丁香九九婷婷综合五月| 欧美成人a在线| 麻豆精品国产传媒mv男同| 欧美一区二区黄| 久久99国内精品|