]> git.ipfire.org Git - thirdparty/openvpn.git/commit
configure.ac: simplify AC_CHECK_FUNCS statements
authorLev Stipakov <lev@openvpn.net>
Tue, 21 Jan 2020 08:08:28 +0000 (10:08 +0200)
committerGert Doering <gert@greenie.muc.de>
Thu, 13 Feb 2020 19:14:45 +0000 (20:14 +0100)
commit91d84530d7eb24718b99478ebac6ba40b0615b28
treea183f5855521d36ab619e385aafbaf0fc789c684
parentc6cc66a13568dd1078bfbeb763998c1b9e2a2999
configure.ac: simplify AC_CHECK_FUNCS statements

AC_CHECK_FUNCS checks availability of each function
in argument list and defines HAVE_function macro.
AC_CHECK_FUNC takes single function as an argument and
doesn't automatically define any macros.

When we check for availability of a single function and
define own macro, it is enough to use AC_CHECK_FUNC.

Signed-off-by: Lev Stipakov <lev@openvpn.net>
Acked-by: Arne Schwabe <arne@rfc2549.org>
Message-Id: <20200121080828.1310-1-lstipakov@gmail.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg19333.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
configure.ac