]> xenbits.xensource.com Git - unikraft/libs/pthreadpool.git/commitdiff
Freeze the library against a particular commit hash. RELEASE-0.5
authorFelipe Huici <felipe.huici@neclab.eu>
Thu, 2 Apr 2020 09:43:16 +0000 (11:43 +0200)
committerFelipe Huici <felipe.huici@neclab.eu>
Sun, 5 Apr 2020 19:33:58 +0000 (21:33 +0200)
Currently pthreadpool builds against master. Since master changes,
this makes the build of this library brittle; in this patch we freeze
against one of the latest commits.

Signed-off-by: Felipe Huici <felipe.huici@neclab.eu>
Reviewed-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@upb.ro>
Makefile.uk

index 6944c747385d645940f67762aa1829bf0725bdd4..d62f3052302191ec553acc8b0aa792018874b889 100644 (file)
@@ -39,15 +39,15 @@ $(eval $(call addlib_s,libpthreadpool,$(CONFIG_LIBPTHREADPOOL)))
 ################################################################################
 # Sources
 ################################################################################
-LIBPTHREADPOOL_VERSION=master
-LIBPTHREADPOOL_URL=https://github.com/Maratyszcza/pthreadpool/archive/master.zip
+LIBPTHREADPOOL_VERSION=76042155a8b1e189c8f141429fd72219472c32e1
+LIBPTHREADPOOL_URL=https://github.com/Maratyszcza/pthreadpool/archive/$(LIBPTHREADPOOL_VERSION).zip
 LIBPTHREADPOOL_PATCHDIR=$(LIBPTHREADPOOL_BASE)/patches
 $(eval $(call fetch,libpthreadpool,$(LIBPTHREADPOOL_URL)))
 
 ################################################################################
 # Helpers
 ################################################################################
-LIBPTHREADPOOL_SUBDIR=pthreadpool-master
+LIBPTHREADPOOL_SUBDIR=pthreadpool-$(LIBPTHREADPOOL_VERSION)
 LIBPTHREADPOOL_SRC=$(LIBPTHREADPOOL_ORIGIN)/$(LIBPTHREADPOOL_SUBDIR)
 
 ################################################################################