fe4338fead
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/lksctp-tools#344afd78b4a857fee0ac3cfac996fd9dd7fe7132
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 596efd6631b83069d41782fb0ee2d6cf76a50dfa Mon Sep 17 00:00:00 2001
|
|
From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
|
|
Date: Fri, 24 Aug 2018 09:52:59 -0300
|
|
Subject: [PATCH 2/3] build: fix probing for HAVE_SCTP_SENDV
|
|
|
|
Somehow it was using a type that is non-existent. The right one is
|
|
sctp_prinfo, introduced on ed63afb8a318 ("sctp: add support for PR-SCTP
|
|
Information for sendmsg"), present on v4.17.
|
|
|
|
Fixes: 1b798f1ca3b5 ("build: add define HAVE_SCTP_AUTH_NO_AUTH")
|
|
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
|
|
Reviewed-by: Xin Long <lucien.xin@gmail.com>
|
|
---
|
|
configure.ac | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index dad658c..f55775a 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -94,9 +94,8 @@ LKSCTP_CHECK_MEMBER([struct sctp_pdapi_event.pdapi_stream],
|
|
LKSCTP_CHECK_MEMBER([struct sctp_pdapi_event.pdapi_seq],
|
|
[HAVE_SCTP_PDAPI_EVENT_PDAPI_SEQ])
|
|
|
|
-# PR-SCTP field used to probe for sendv/recvv support, added on v4.17
|
|
-LKSCTP_CHECK_MEMBER([struct sendv_prinfo.sctp_prinfo],
|
|
- [HAVE_SCTP_SENDV])
|
|
+# PR-SCTP struct used to probe for sendv/recvv support, added on v4.17
|
|
+LKSCTP_CHECK_TYPE([struct sctp_prinfo], [HAVE_SCTP_SENDV])
|
|
|
|
# This event indicates that the peer does not support SCTP authentication,
|
|
# added on v4.16, 30f6ebf65bc4
|
|
--
|
|
1.8.3.1
|
|
|