921cbcfab0
libguestfs.test.simple.create-opensuse-guest-crypt-on-lvm.sh libguestfs.test.simple.create-opensuse-guest.sh libguestfs.test.simple.create-sles12-guest-crypt-on-lvm.sh libguestfs.test.simple.create-sles12-guest.sh - Allow the use busybox dhcp client appliance.patch netconfig.patch - Update to version 1.44.2 makefile-ocaml-find-guestfs.patch * Port libguestfs to use pcre2 instead of pcre * inspection: More reliable detection of Linux split /usr configurations * python: Relicense setup.py to LGPLv2+ (originally GPLv2+) * lib: qemu: Don't use -enable-fips option. * rust: Fix deprecated use of panic!(format!(...)) * point users to Libera Chat rather than FreeNode * python: Don't leak fields when creating Python structs * appliance: Add IBM850 iconv converter for syslinux * launch: board model for RISC-V * lib: Add osinfo information for Windows Server 2022 Datacenter * lib: Autodetect backing format for qemu-img create -b * appliance: Fix searching for shared libraries on usr-merged Debian systems * appliance: Add mount package for Debian * m4/guestfs-appliance.m4: Add support for Alma and Cloud Linux * daemon/luks.c: Ignore bogus GCC -fanalyzer double-free warning * daemon/xattr.c: Increase size of temporary buffer for %zu * daemon/utils.c: Fix potential unbounded stack usage * Various other bug fixes - Upstream bug fixes post 1.44.2 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libguestfs?expand=0&rev=480
56 lines
1.4 KiB
Diff
56 lines
1.4 KiB
Diff
Subject: customize, resize, sparsify, sysprep: Link explicitly with pthread
|
|
From: Richard W.M. Jones rjones@redhat.com Thu Mar 4 11:57:44 2021 +0000
|
|
Date: Sat Sep 11 09:42:12 2021 +0100:
|
|
Git: 68a02c2f6c7b4243ecb298c0d9539f0fc51a52ce
|
|
|
|
Cherry picked from guestfs-tools commit 87543dad61.
|
|
|
|
diff --git a/customize/Makefile.am b/customize/Makefile.am
|
|
index c926687b3..fb418d7bf 100644
|
|
--- a/customize/Makefile.am
|
|
+++ b/customize/Makefile.am
|
|
@@ -169,6 +169,7 @@ OCAMLLINKFLAGS = \
|
|
$(LINK_CUSTOM_OCAMLC_ONLY)
|
|
|
|
OCAMLCLIBS = \
|
|
+ -pthread -lpthread \
|
|
-lutils \
|
|
$(LIBTINFO_LIBS) \
|
|
$(LIBCRYPT_LIBS) \
|
|
diff --git a/resize/Makefile.am b/resize/Makefile.am
|
|
index fa88cc634..936d2b05e 100644
|
|
--- a/resize/Makefile.am
|
|
+++ b/resize/Makefile.am
|
|
@@ -72,6 +72,7 @@ OCAMLPACKAGES += -package gettext-stub
|
|
endif
|
|
|
|
OCAMLCLIBS = \
|
|
+ -pthread -lpthread \
|
|
-lprogress \
|
|
-lutils \
|
|
$(LIBTINFO_LIBS) \
|
|
diff --git a/sparsify/Makefile.am b/sparsify/Makefile.am
|
|
index fa964e8af..4d1af85d6 100644
|
|
--- a/sparsify/Makefile.am
|
|
+++ b/sparsify/Makefile.am
|
|
@@ -80,6 +80,7 @@ OCAMLPACKAGES += -package gettext-stub
|
|
endif
|
|
|
|
OCAMLCLIBS = \
|
|
+ -pthread -lpthread \
|
|
-lprogress \
|
|
-lutils \
|
|
$(LIBTINFO_LIBS) \
|
|
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
|
|
index 69bb92820..250c74913 100644
|
|
--- a/sysprep/Makefile.am
|
|
+++ b/sysprep/Makefile.am
|
|
@@ -129,6 +129,7 @@ OCAMLPACKAGES += -package gettext-stub
|
|
endif
|
|
|
|
OCAMLCLIBS = \
|
|
+ -pthread -lpthread \
|
|
-lvisit \
|
|
-lstructs \
|
|
-lutils \
|