blob: 64f8d3acc8126fb61ee0384ecb98ac4c4ff46360 [file] [log] [blame]
Andrew Geisslerd5838332022-05-27 11:33:10 -05001From 25f1bebf1bc4c8da47f976d24a7a424253744e2e Mon Sep 17 00:00:00 2001
2From: Alex Kiernan <alex.kiernan@gmail.com>
3Date: Wed, 24 Mar 2021 09:10:17 +0000
4Subject: [PATCH] libcoap: Fix gnu-configize error
5
6Fix:
7
8 autoreconf: running: gnu-configize
9 gnu-configize: 'configure.ac' or 'configure.in' is required
10 autoreconf: gnu-configize failed with exit status: 1
11
12We're not pulling in the ext/tinydtls submodule, so this fails.
13
14Upstream-Status: Inappropriate [oe-specific]
15Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
16Signed-off-by: Alex Kiernan <alexk@zuma.ai>
17---
18 configure.ac | 13 -------------
19 1 file changed, 13 deletions(-)
20
21diff --git a/configure.ac b/configure.ac
22index 9f51f4c67557..559808e03aa2 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -472,19 +472,6 @@ if test "x$build_dtls" = "xyes"; then
26 have_tinydtls="no" # don't confuse AC_MSG_RESULT at the end of the script
27 fi
28
29- # The user wants to use explicit TinyDTLS if '--with-tinydtls was set'.
30- if test "x$with_tinydtls" = "xyes" ; then
31- if test -d "$srcdir/ext/tinydtls"; then
32- AC_CONFIG_SUBDIRS([ext/tinydtls])
33- have_tinydtls="yes"
34- else
35- have_tinydtls="no" # don't confuse AC_MSG_RESULT at the end of the script
36- fi
37- have_gnutls="no" # don't confuse AC_MSG_RESULT at the end of the script
38- have_openssl="no" # don't confuse AC_MSG_RESULT at the end of the script
39- have_mbedtls="no" # don't confuse AC_MSG_RESULT at the end of the script
40- fi
41-
42 if test "$TLSCOUNT" -eq 0; then
43 # The user hasn't requested the use of a specific cryptography library
44 # we try first GnuTLS for usability ...