7 Star 0 Fork 1

OpenCloudOS Stream/log4cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
log4cpp-configure-c99.patch 809 Bytes
一键复制 编辑 原始数据 按行查看 历史
ocs-bot 提交于 2024-05-06 18:06 . package init
Do not call the undeclared exit function. This avoids an implicit
function declaration, which future compilers may reject by default.
Submitted upstream: <https://sourceforge.net/p/log4cpp/patches/49/>
diff --git a/m4/AC_FUNC_SNPRINTF.m4 b/m4/AC_FUNC_SNPRINTF.m4
index 08af5218eaf90e56..3d77d0f874f39ba0 100644
--- a/m4/AC_FUNC_SNPRINTF.m4
+++ b/m4/AC_FUNC_SNPRINTF.m4
@@ -13,7 +13,7 @@ dnl
AC_DEFUN([AC_FUNC_SNPRINTF],
[AC_CACHE_CHECK(for working snprintf, ac_cv_func_snprintf,
[AC_TRY_RUN([#include <stdio.h>
-int main () { int l = snprintf(NULL,0,"%d",100); exit (!((3 <= l) || (-1 == l))); }
+int main () { int l = snprintf(NULL,0,"%d",100); return !((3 <= l) || (-1 == l)); }
], ac_cv_func_snprintf=yes, ac_cv_func_snprintf=no,
ac_cv_func_snprintf=no)])
if test $ac_cv_func_snprintf = yes; then
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/opencloudos-stream/log4cpp.git
git@gitee.com:opencloudos-stream/log4cpp.git
opencloudos-stream
log4cpp
log4cpp
master

搜索帮助