Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Nov 2019 06:02:14 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r355223 - stable/12/lib/liblzma
Message-ID:  <201911300602.xAU62EZk055601@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Sat Nov 30 06:02:13 2019
New Revision: 355223
URL: https://svnweb.freebsd.org/changeset/base/355223

Log:
  MFC r342876: Enable use of Capsicum sandbox when there is only one
  input file (or the input is stdin) and we are not creating output
  file.
  
  Reported by:	Lasse Collin

Modified:
  stable/12/lib/liblzma/config.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/liblzma/config.h
==============================================================================
--- stable/12/lib/liblzma/config.h	Sat Nov 30 05:57:54 2019	(r355222)
+++ stable/12/lib/liblzma/config.h	Sat Nov 30 06:02:13 2019	(r355223)
@@ -26,7 +26,7 @@
 /* #undef HAVE_BYTESWAP_H */
 
 /* Define to 1 if Capsicum is available. */
-/* #undef HAVE_CAPSICUM */
+#define HAVE_CAPSICUM 1
 
 /* Define to 1 if the system has the type `CC_SHA256_CTX'. */
 /* #undef HAVE_CC_SHA256_CTX */
@@ -261,7 +261,7 @@
 /* #undef HAVE_SYS_BYTEORDER_H */
 
 /* Define to 1 if you have the <sys/capsicum.h> header file. */
-/* #undef HAVE_SYS_CAPSICUM_H */
+#define HAVE_SYS_CAPSICUM_H 1
 
 /* Define to 1 if you have the <sys/endian.h> header file. */
 #define HAVE_SYS_ENDIAN_H 1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911300602.xAU62EZk055601>