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

📄 error.m4

📁 libiconv是一个很不错的字符集转换库。程序接口也很简单
💻 M4
字号:
# error.m4 serial 2 (gettext-0.12)dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.dnl This file is free software, distributed under the terms of the GNUdnl General Public License.  As a special exception to the GNU Generaldnl Public License, this file may be distributed as part of a programdnl that contains a configuration script generated by Autoconf, underdnl the same distribution terms as the rest of that program.# A modified version of AM_FUNC_ERROR_AT_LINE that triggers HAVE_ERROR_AT_LINE# in config.h instead of modifying LIBOBJS.AC_DEFUN([gt_FUNC_ERROR_AT_LINE],[  AC_CACHE_CHECK([for error_at_line], am_cv_lib_error_at_line,   [AC_TRY_LINK([],[error_at_line(0, 0, "", 0, "");],                am_cv_lib_error_at_line=yes,	        am_cv_lib_error_at_line=no)])  if test $am_cv_lib_error_at_line = yes; then    AC_DEFINE(HAVE_ERROR_AT_LINE, 1,      [Define to 1 if you have the functions error() and error_at_line().])  else    jm_PREREQ_ERROR  fi])# Prerequisites of lib/error.c.AC_DEFUN([jm_PREREQ_ERROR],[  AC_REQUIRE([AC_HEADER_STDC])  AC_REQUIRE([AC_FUNC_VPRINTF])  AC_CHECK_FUNCS(strerror)  AC_CHECK_DECLS([strerror])  AC_FUNC_STRERROR_R])

⌨️ 快捷键说明

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