6d5061c711
Fix the following ssl build failure without threads raised since bump to version 0.32.2 in commit029a6dc3e3
and281c84fc39
: ne_openssl.c:43:10: fatal error: pthread.h: No such file or directory 43 | #include <pthread.h> | ^~~~~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/da995ef26001357e51a5907de9c6111b9ff89bdf Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
29 lines
775 B
Diff
29 lines
775 B
Diff
From cf779609a5dd38f0a8fdb3c4539371f13fd3a24a Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Tue, 8 Feb 2022 18:34:25 +0100
|
|
Subject: [PATCH] configure.ac: fix autoreconf
|
|
|
|
Add AC_CONFIG_MACRO_DIR(macros) to fix autoreconf
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Upstream status: not sent yet]
|
|
---
|
|
configure.ac | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 37b14ec..122151d 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1,5 +1,7 @@
|
|
AC_PREREQ(2.58) dnl 2.58 required for AS_HELP_STRING
|
|
|
|
+AC_CONFIG_MACRO_DIR(macros)
|
|
+
|
|
dnl Extract the version (sans LF) from .version, created at release-time.
|
|
m4_define(ne_version, [m4_translit(m4_include(.version), [
|
|
])])
|
|
--
|
|
2.34.1
|
|
|