svn commit: r367616 - head/lib/libzstd

Emmanuel Vadot manu at FreeBSD.org
Thu Nov 12 14:04:09 UTC 2020


Author: manu
Date: Thu Nov 12 14:04:08 2020
New Revision: 367616
URL: https://svnweb.freebsd.org/changeset/base/367616

Log:
  pkgbase: Move libprivatezstd from utilities to runtime
  
  libarchive depends on it by default and tar uses libarchive.
  So on a update :
  1/ runtime contain tar
  2/ runtime have libarchive in shlibs_required
  3/ libarchive packages depends on utilities
  4/ utilities depends on runtime
  5/ kaboom
  
  All users of libprivatezstd (libarchive related stuff and objcopy/ar)
  are already in utilities.
  
  Discussed with: bapt

Modified:
  head/lib/libzstd/Makefile

Modified: head/lib/libzstd/Makefile
==============================================================================
--- head/lib/libzstd/Makefile	Thu Nov 12 09:26:01 2020	(r367615)
+++ head/lib/libzstd/Makefile	Thu Nov 12 14:04:08 2020	(r367616)
@@ -40,6 +40,7 @@ CFLAGS+=	-I${ZSTDDIR}/lib -I${ZSTDDIR}/lib/common -DXX
 LIBADD=	pthread
 
 PRIVATELIB=	yes
+PACKAGE=	runtime
 
 ZSTDDIR=	${SRCTOP}/sys/contrib/zstd
 .PATH:	${ZSTDDIR}/lib/common ${ZSTDDIR}/lib/compress \


More information about the svn-src-all mailing list