⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 traces.0

📁 Linux下关于TPM的一些检测小工具
💻 0
📖 第 1 页 / 共 5 页
字号:
  fi  AC_SUBST([HAVE_ASPRINTF])  if test "$ac_cv_func_snprintf" = yes; then    HAVE_SNPRINTF=1  else    HAVE_SNPRINTF=0  fi  AC_SUBST([HAVE_SNPRINTF])  if test "$ac_cv_func_wprintf" = yes; then    HAVE_WPRINTF=1  else    HAVE_WPRINTF=0  fi  AC_SUBST([HAVE_WPRINTF])  AM_ICONV  AM_LANGINFO_CODESET  if test $ac_cv_header_locale_h = yes; then    AM_LC_MESSAGES  fi  dnl intl/plural.c is generated from intl/plural.y. It requires bison,  dnl because plural.y uses bison specific features. It requires at least  dnl bison-1.26 because earlier versions generate a plural.c that doesn't  dnl compile.  dnl bison is only needed for the maintainer (who touches plural.y). But in  dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put  dnl the rule in general Makefile. Now, some people carelessly touch the  dnl files or have a broken "make" program, hence the plural.c rule will  dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not  dnl present or too old.  AC_CHECK_PROGS([INTLBISON], [bison])  if test -z "$INTLBISON"; then    ac_verc_fail=yes  else    dnl Found it, now check the version.    AC_MSG_CHECKING([version of bison])changequote(<<,>>)dnl    ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`    case $ac_prog_version in      '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;      1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)changequote([,])dnl         ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;      *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;    esac    AC_MSG_RESULT([$ac_prog_version])  fi  if test $ac_verc_fail = yes; then    INTLBISON=:  fi])m4trace:/usr/share/aclocal/gettext.m4:483: -1- AC_DEFUN([gt_CHECK_DECL], [  AC_CACHE_CHECK([whether $1 is declared], ac_cv_have_decl_$1,    [AC_TRY_COMPILE([$2], [#ifndef $1  char *p = (char *) $1;#endif], ac_cv_have_decl_$1=yes, ac_cv_have_decl_$1=no)])  if test $ac_cv_have_decl_$1 = yes; then    gt_value=1  else    gt_value=0  fi  AC_DEFINE_UNQUOTED([HAVE_DECL_]translit($1, [a-z], [A-Z]), [$gt_value],    [Define to 1 if you have the declaration of `$1', and to 0 if you don't.])])m4trace:/usr/share/aclocal/gettext.m4:487: -1- AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])m4trace:/usr/share/aclocal/glibc21.m4:32: -1- AC_DEFUN([jm_GLIBC21], [    AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer,      ac_cv_gnu_library_2_1,      [AC_EGREP_CPP([Lucky GNU user],	[#include <features.h>#ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)  Lucky GNU user #endif#endif	],	ac_cv_gnu_library_2_1=yes,	ac_cv_gnu_library_2_1=no)      ]    )    AC_SUBST(GLIBC21)    GLIBC21="$ac_cv_gnu_library_2_1"  ])m4trace:/usr/share/aclocal/iconv.m4:20: -1- AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])  AC_REQUIRE([AC_LIB_RPATH])  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV  dnl accordingly.  AC_LIB_LINKFLAGS_BODY([iconv])])m4trace:/usr/share/aclocal/iconv.m4:75: -1- AC_DEFUN([AM_ICONV_LINK], [  dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and  dnl those with the standalone portable GNU libiconv installed).  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV  dnl accordingly.  AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])  dnl Add $INCICONV to CPPFLAGS before performing the following checks,  dnl because if the user has installed libiconv and not disabled its use  dnl via --without-libiconv-prefix, he wants to use it. The first  dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed.  am_save_CPPFLAGS="$CPPFLAGS"  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])  AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [    am_cv_func_iconv="no, consider installing GNU libiconv"    am_cv_lib_iconv=no    AC_TRY_LINK([#include <stdlib.h>#include <iconv.h>],      [iconv_t cd = iconv_open("","");       iconv(cd,NULL,NULL,NULL,NULL);       iconv_close(cd);],      am_cv_func_iconv=yes)    if test "$am_cv_func_iconv" != yes; then      am_save_LIBS="$LIBS"      LIBS="$LIBS $LIBICONV"      AC_TRY_LINK([#include <stdlib.h>#include <iconv.h>],        [iconv_t cd = iconv_open("","");         iconv(cd,NULL,NULL,NULL,NULL);         iconv_close(cd);],        am_cv_lib_iconv=yes        am_cv_func_iconv=yes)      LIBS="$am_save_LIBS"    fi  ])  if test "$am_cv_func_iconv" = yes; then    AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])  fi  if test "$am_cv_lib_iconv" = yes; then    AC_MSG_CHECKING([how to link with libiconv])    AC_MSG_RESULT([$LIBICONV])  else    dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV    dnl either.    CPPFLAGS="$am_save_CPPFLAGS"    LIBICONV=    LTLIBICONV=  fi  AC_SUBST(LIBICONV)  AC_SUBST(LTLIBICONV)])m4trace:/usr/share/aclocal/iconv.m4:103: -1- AC_DEFUN([AM_ICONV], [  AM_ICONV_LINK  if test "$am_cv_func_iconv" = yes; then    AC_MSG_CHECKING([for iconv declaration])    AC_CACHE_VAL(am_cv_proto_iconv, [      AC_TRY_COMPILE([#include <stdlib.h>#include <iconv.h>extern#ifdef __cplusplus"C"#endif#if defined(__STDC__) || defined(__cplusplus)size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);#elsesize_t iconv();#endif], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const")      am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])    am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`    AC_MSG_RESULT([$]{ac_t:-         }[$]am_cv_proto_iconv)    AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,      [Define as const if the declaration of iconv() needs const.])  fi])m4trace:/usr/share/aclocal/intdiv0.m4:72: -1- AC_DEFUN([gt_INTDIV0], [  AC_REQUIRE([AC_PROG_CC])dnl  AC_REQUIRE([AC_CANONICAL_HOST])dnl  AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],    gt_cv_int_divbyzero_sigfpe,    [      AC_TRY_RUN([#include <stdlib.h>#include <signal.h>static void#ifdef __cplusplussigfpe_handler (int sig)#elsesigfpe_handler (sig) int sig;#endif{  /* Exit with code 0 if SIGFPE, with code 1 if any other signal.  */  exit (sig != SIGFPE);}int x = 1;int y = 0;int z;int nan;int main (){  signal (SIGFPE, sigfpe_handler);/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP.  */#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)  signal (SIGTRAP, sigfpe_handler);#endif/* Linux/SPARC yields signal SIGILL.  */#if defined (__sparc__) && defined (__linux__)  signal (SIGILL, sigfpe_handler);#endif  z = x / y;  nan = y / y;  exit (1);}], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no,        [          # Guess based on the CPU.          case "$host_cpu" in            alpha* | i[34567]86 | m68k | s390*)              gt_cv_int_divbyzero_sigfpe="guessing yes";;            *)              gt_cv_int_divbyzero_sigfpe="guessing no";;          esac        ])    ])  case "$gt_cv_int_divbyzero_sigfpe" in    *yes) value=1;;    *) value=0;;  esac  AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value,    [Define if integer division by zero raises signal SIGFPE.])])m4trace:/usr/share/aclocal/intmax.m4:32: -1- AC_DEFUN([gt_TYPE_INTMAX_T], [  AC_REQUIRE([jm_AC_HEADER_INTTYPES_H])  AC_REQUIRE([jm_AC_HEADER_STDINT_H])  AC_CACHE_CHECK(for intmax_t, gt_cv_c_intmax_t,    [AC_TRY_COMPILE([#include <stddef.h> #include <stdlib.h>#if HAVE_STDINT_H_WITH_UINTMAX#include <stdint.h>#endif#if HAVE_INTTYPES_H_WITH_UINTMAX#include <inttypes.h>#endif], [intmax_t x = -1;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)])  if test $gt_cv_c_intmax_t = yes; then    AC_DEFINE(HAVE_INTMAX_T, 1,      [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.])  fi])m4trace:/usr/share/aclocal/inttypes-pri.m4:32: -1- AC_DEFUN([gt_INTTYPES_PRI], [  AC_REQUIRE([gt_HEADER_INTTYPES_H])  if test $gt_cv_header_inttypes_h = yes; then    AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken],      gt_cv_inttypes_pri_broken,      [        AC_TRY_COMPILE([#include <inttypes.h>#ifdef PRId32char *p = PRId32;#endif], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes)      ])  fi  if test "$gt_cv_inttypes_pri_broken" = yes; then    AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1,      [Define if <inttypes.h> exists and defines unusable PRI* macros.])  fi])m4trace:/usr/share/aclocal/inttypes.m4:27: -1- AC_DEFUN([gt_HEADER_INTTYPES_H], [  AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h,  [    AC_TRY_COMPILE(      [#include <sys/types.h>#include <inttypes.h>],      [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no)  ])  if test $gt_cv_header_inttypes_h = yes; then    AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1,      [Define if <inttypes.h> exists and doesn't clash with <sys/types.h>.])  fi])m4trace:/usr/share/aclocal/inttypes_h.m4:28: -1- AC_DEFUN([jm_AC_HEADER_INTTYPES_H], [  AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h,  [AC_TRY_COMPILE(    [#include <sys/types.h>#include <inttypes.h>],    [uintmax_t i = (uintmax_t) -1;],    jm_ac_cv_header_inttypes_h=yes,    jm_ac_cv_header_inttypes_h=no)])  if test $jm_ac_cv_header_inttypes_h = yes; then    AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1,      [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,       and declares uintmax_t. ])  fi])m4trace:/usr/share/aclocal/isc-posix.m4:26: -1- AC_DEFUN([AC_ISC_POSIX], [    dnl This test replaces the obsolescent AC_ISC_POSIX kludge.    AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])  ])m4trace:/usr/share/aclocal/lcmessage.m4:32: -1- AC_DEFUN([AM_LC_MESSAGES], [  AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])  if test $am_cv_val_LC_MESSAGES = yes; then    AC_DEFINE(HAVE_LC_MESSAGES, 1,      [Define if your <locale.h> file defines LC_MESSAGES.])  fi])m4trace:/usr/share/aclocal/lib-ld.m4:24: -1- AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld,[# I'd rather use --version here, but apparently some GNU ld's only accept -v.case `$LD -v 2>&1 </dev/null` in*GNU* | *'with BFD'*)  acl_cv_prog_gnu_ld=yes ;;*)  acl_cv_prog_gnu_ld=no ;;esac])with_gnu_ld=$acl_cv_prog_gnu_ld])m4trace:/usr/share/aclocal/lib-ld.m4:112: -1- AC_DEFUN([AC_LIB_PROG_LD], [AC_ARG_WITH(gnu-ld,[  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)AC_REQUIRE([AC_PROG_CC])dnlAC_REQUIRE([AC_CANONICAL_HOST])dnl# Prepare PATH_SEPARATOR.# The user is always right.if test "${PATH_SEPARATOR+set}" != set; then  echo "#! /bin/sh" >conf$$.sh  echo  "exit 0"   >>conf$$.sh  chmod +x conf$$.sh  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then    PATH_SEPARATOR=';'  else    PATH_SEPARATOR=:  fi  rm -f conf$$.shfiac_prog=ldif test "$GCC" = yes; then  # Check if gcc -print-prog-name=ld gives a path.  AC_MSG_CHECKING([for ld used by GCC])  case $host in  *-*-mingw*)    # gcc leaves a trailing carriage return which upsets mingw    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;  *)    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;  esac  case $ac_prog in    # Accept absolute paths.    [[\\/]* | [A-Za-z]:[\\/]*)]      [re_direlt='/[^/][^/]*/\.\./']

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -