acinclude.m4
来自「基于4个mips核的noc设计」· M4 代码 · 共 73 行
M4
73 行
dnl GAS_CHECK_DECL_NEEDED(name, typedefname, typedef, headers)AC_DEFUN(GAS_CHECK_DECL_NEEDED,[AC_MSG_CHECKING(whether declaration is required for $1)AC_CACHE_VAL(gas_cv_decl_needed_$1,AC_TRY_LINK([$4],[typedef $3;$2 x;x = ($2) $1;], gas_cv_decl_needed_$1=no, gas_cv_decl_needed_$1=yes))dnlAC_MSG_RESULT($gas_cv_decl_needed_$1)if test $gas_cv_decl_needed_$1 = yes; then AC_DEFINE([NEED_DECLARATION_]translit($1, [a-z], [A-Z]), 1, [Define if $1 is not declared in system header files.])fi])dnldnldnl Some non-ANSI preprocessors botch requoting inside strings. That's baddnl enough, but on some of those systems, the assert macro relies on requotingdnl working properly!dnl GAS_WORKING_ASSERTAC_DEFUN(GAS_WORKING_ASSERT,[AC_MSG_CHECKING([for working assert macro])AC_CACHE_VAL(gas_cv_assert_ok,AC_TRY_LINK([#include <assert.h>#include <stdio.h>], [/* check for requoting problems */static int a, b, c, d;static char *s;assert (!strcmp(s, "foo bar baz quux"));/* check for newline handling */assert (a == b || c == d);], gas_cv_assert_ok=yes, gas_cv_assert_ok=no))dnlAC_MSG_RESULT($gas_cv_assert_ok)test $gas_cv_assert_ok = yes || AC_DEFINE(BROKEN_ASSERT, 1, [assert broken?])])dnldnldnl Since many Bourne shell implementations lack subroutines, use thisdnl hack to simplify the code in configure.in.dnl GAS_UNIQ(listvar)AC_DEFUN(GAS_UNIQ,[_gas_uniq_list="[$]$1"_gas_uniq_newlist=""dnl Protect against empty input list.for _gas_uniq_i in _gas_uniq_dummy [$]_gas_uniq_list ; do case [$]_gas_uniq_i in _gas_uniq_dummy) ;; *) case " [$]_gas_uniq_newlist " in *" [$]_gas_uniq_i "*) ;; *) _gas_uniq_newlist="[$]_gas_uniq_newlist [$]_gas_uniq_i" ;; esac ;; esacdone$1=[$]_gas_uniq_newlist])dnlsinclude(../libtool.m4)dnl The lines below arrange for aclocal not to bring libtool.m4dnl AM_PROG_LIBTOOL into aclocal.m4, while still arranging for automakednl to add a definition of LIBTOOL to Makefile.in.ifelse(yes,no,[AC_DEFUN([AM_PROG_LIBTOOL],)AC_DEFUN([AC_CHECK_LIBM],)AC_SUBST(LIBTOOL)])sinclude(../gettext.m4)ifelse(yes,no,[AC_DEFUN([CY_WITH_NLS],)AC_SUBST(INTLLIBS)])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?