[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 61/156: libcurl.m4: patched to fix compiler warning
From: |
gnunet |
Subject: |
[libmicrohttpd] 61/156: libcurl.m4: patched to fix compiler warning |
Date: |
Sun, 28 May 2023 17:51:54 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to tag v0.9.77
in repository libmicrohttpd.
commit 95ecc898e999c59c24e8343d2268aa356a62684e
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Tue Mar 14 20:45:01 2023 +0300
libcurl.m4: patched to fix compiler warning
---
m4/libcurl.m4 | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/m4/libcurl.m4 b/m4/libcurl.m4
index 7215f44a..d0209207 100644
--- a/m4/libcurl.m4
+++ b/m4/libcurl.m4
@@ -199,9 +199,10 @@ if (x) {;}
_libcurl_save_libs=$LIBS
LIBS="$LIBS $LIBCURL"
- AC_CHECK_FUNC(curl_free,,
- AC_DEFINE(curl_free,free,
- [Define curl_free() as free() if our version of curl lacks
curl_free.]))
+ AC_CHECK_DECL([curl_free],[],
+ [AC_DEFINE([curl_free],[free],
+ [Define curl_free() as free() if our version of curl lacks
curl_free.])],
+ [[#include <curl/curl.h>]])
CPPFLAGS=$_libcurl_save_cppflags
LIBS=$_libcurl_save_libs
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd] 55/156: mhd_check_link_run.m4: fixed typo in comment, (continued)
- [libmicrohttpd] 55/156: mhd_check_link_run.m4: fixed typo in comment, gnunet, 2023/05/28
- [libmicrohttpd] 48/156: mhd_check_func.m4: fixed overquoting, gnunet, 2023/05/28
- [libmicrohttpd] 47/156: mhd_check_func.m4: fixed English grammar, gnunet, 2023/05/28
- [libmicrohttpd] 51/156: mhd_check_func.m4: added check for function declaration, gnunet, 2023/05/28
- [libmicrohttpd] 54/156: tsearch.{h,c}: updated to the latest fixed version, gnunet, 2023/05/28
- [libmicrohttpd] 50/156: mhd_check_func.m4: updated, gnunet, 2023/05/28
- [libmicrohttpd] 53/156: mhd_find_lib.m4: fixed compatibility with old autoconf, gnunet, 2023/05/28
- [libmicrohttpd] 52/156: mhd_find_lib.m4: added new autoconf macro, gnunet, 2023/05/28
- [libmicrohttpd] 59/156: configure: fixed some compiler warnings for checks, gnunet, 2023/05/28
- [libmicrohttpd] 58/156: mhd_shutdown_socket_trigger.m4: fixed compiler warning, gnunet, 2023/05/28
- [libmicrohttpd] 61/156: libcurl.m4: patched to fix compiler warning,
gnunet <=
- [libmicrohttpd] 60/156: libcurl.m4: updated to the latest version, gnunet, 2023/05/28
- [libmicrohttpd] 63/156: configure: fixed more compiler warnings in log, gnunet, 2023/05/28
- [libmicrohttpd] 56/156: configure: fixed checks for tsearch() and related, gnunet, 2023/05/28
- [libmicrohttpd] 57/156: Makefile: fixed build with 'make' without nested vars support, gnunet, 2023/05/28
- [libmicrohttpd] 62/156: configure: fixed checking for system libs, fixed .pc file, gnunet, 2023/05/28
- [libmicrohttpd] 65/156: configure: cosmetics, gnunet, 2023/05/28
- [libmicrohttpd] 64/156: configure: fixed potential compiler warnings, added usage of cache vars, gnunet, 2023/05/28
- [libmicrohttpd] 68/156: mhd_shutdown_socket_trigger.m4: fixed preprocessor conditional, gnunet, 2023/05/28
- [libmicrohttpd] 72/156: HTTPS test: fixed unmatched function declaration, gnunet, 2023/05/28
- [libmicrohttpd] 73/156: Disabled badly broken TLS tests, gnunet, 2023/05/28