blob: 3b4caa2215490d029eb095ef975fd975cef43bf4 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From f56e59712d8708c74a4cf66d24b5703fc16b22ae Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 1 Sep 2022 11:31:48 -0700
4Subject: [PATCH] configure: Check for request_init API when probing for
5 libwrap
6
7checking for main() is not right check, since this function is not part
8of libwrap but the app. Newer autocof and toolchain may fail
9
10Upstream-Status: Submitted [https://github.com/cminyard/gensio/pull/48]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 configure.ac | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/configure.ac b/configure.ac
17index 90cfcb6b..1c06d918 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -109,7 +109,7 @@ AC_ARG_WITH(tcp-wrappers,
21 if test "$tcp_wrappers" != "no"
22 then
23 AC_CHECK_HEADERS([tcpd.h])
24- AC_CHECK_LIB(wrap,main)
25+ AC_CHECK_LIB(wrap,request_init)
26 fi
27
28 AC_ARG_ENABLE([doc],
29--
302.37.3
31