svn commit: r478107 - in head/textproc/htmldoc: . files

Xin LI delphij at FreeBSD.org
Sun Aug 26 08:26:43 UTC 2018


Author: delphij
Date: Sun Aug 26 08:26:41 2018
New Revision: 478107
URL: https://svnweb.freebsd.org/changeset/ports/478107

Log:
  textproc/htmldoc: Do not use arc4random_stir.
  
  (Note that there is an updated version which will solve this too, but I
  am committing this one and will rebase the patch in bug 223721 as it still
  needs maintainer approval).
  
  PR:		230831, 230756
  Approved by:	portmgr (antoine)

Modified:
  head/textproc/htmldoc/Makefile
  head/textproc/htmldoc/files/patch-htmldoc__http.c

Modified: head/textproc/htmldoc/Makefile
==============================================================================
--- head/textproc/htmldoc/Makefile	Sun Aug 26 08:16:50 2018	(r478106)
+++ head/textproc/htmldoc/Makefile	Sun Aug 26 08:26:41 2018	(r478107)
@@ -3,7 +3,7 @@
 
 PORTNAME=	htmldoc
 PORTVERSION=	1.8.28
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	textproc
 MASTER_SITES=	https://github.com/michaelrsweet/htmldoc/releases/download/release-${PORTVERSION}/
 DISTNAME=	${PORTNAME}-${PORTVERSION}-source

Modified: head/textproc/htmldoc/files/patch-htmldoc__http.c
==============================================================================
--- head/textproc/htmldoc/files/patch-htmldoc__http.c	Sun Aug 26 08:16:50 2018	(r478106)
+++ head/textproc/htmldoc/files/patch-htmldoc__http.c	Sun Aug 26 08:26:41 2018	(r478107)
@@ -5,7 +5,7 @@
    * it is the best we can do (on others, this seed isn't even used...)
    */
 +#define CUPS_RAND() arc4random()
-+#define CUPS_SRAND(v) arc4random_stir()
++#define CUPS_SRAND(v)
  
    CUPS_SRAND(time(NULL));
  


More information about the svn-ports-head mailing list