[Buildroot] [git commit] package/znc: fix build with cmake < 3.10

Thomas Petazzoni thomas.petazzoni at bootlin.com
Wed Oct 2 19:03:04 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=30fc06f6a8b54b853a26290a6a0c74435ac4956e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes:
 - http://autobuild.buildroot.org/results/991dd1d74f00f027a905d2ec3ad1a1b2b723f978

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Reviewed-by: Bernd Kuhls <bernd.kuhls at t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 package/znc/znc.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/znc/znc.mk b/package/znc/znc.mk
index 78e1410b68..54dc63f4ea 100644
--- a/package/znc/znc.mk
+++ b/package/znc/znc.mk
@@ -11,6 +11,11 @@ ZNC_LICENSE_FILES = LICENSE
 ZNC_DEPENDENCIES = host-pkgconf
 ZNC_CONF_OPTS = -DWANT_CYRUS=OFF -DWANT_I18N=OFF -DWANT_PERL=OFF
 
+# Before CMake 3.10, passing THREADS_PTHREAD_ARG=OFF was needed to
+# disable a try_run() call in the FindThreads tests, which caused a
+# build failure when cross-compiling.
+ZNC_CONF_OPTS += -DTHREADS_PTHREAD_ARG=OFF
+
 ifeq ($(BR2_PACKAGE_ICU),y)
 ZNC_DEPENDENCIES += icu
 ZNC_CONF_OPTS += -DWANT_ICU=ON


More information about the buildroot mailing list