From owner-svn-ports-head@freebsd.org Sun Aug 26 08:46:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EEA0106E1A9; Sun, 26 Aug 2018 08:46:31 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B615576DEE; Sun, 26 Aug 2018 08:46:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 97C214A42; Sun, 26 Aug 2018 08:46:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7Q8kU1R008207; Sun, 26 Aug 2018 08:46:30 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7Q8kUJx008205; Sun, 26 Aug 2018 08:46:30 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201808260846.w7Q8kUJx008205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sun, 26 Aug 2018 08:46:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478109 - in head/net/samba48: . files X-SVN-Group: ports-head X-SVN-Commit-Author: delphij X-SVN-Commit-Paths: in head/net/samba48: . files X-SVN-Commit-Revision: 478109 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Aug 2018 08:46:31 -0000 Author: delphij Date: Sun Aug 26 08:46:29 2018 New Revision: 478109 URL: https://svnweb.freebsd.org/changeset/ports/478109 Log: net/samba48: Do not use arc4random_stir. PR: 230834, 230756 Approved by: portmgr (antoine) Added: head/net/samba48/files/patch-source4__heimdal__lib__roken__rand.c (contents, props changed) Modified: head/net/samba48/Makefile Modified: head/net/samba48/Makefile ============================================================================== --- head/net/samba48/Makefile Sun Aug 26 08:36:30 2018 (r478108) +++ head/net/samba48/Makefile Sun Aug 26 08:46:29 2018 (r478109) @@ -3,7 +3,7 @@ PORTNAME= ${SAMBA4_BASENAME}48 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} Added: head/net/samba48/files/patch-source4__heimdal__lib__roken__rand.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/samba48/files/patch-source4__heimdal__lib__roken__rand.c Sun Aug 26 08:46:29 2018 (r478109) @@ -0,0 +1,10 @@ +--- source4/heimdal/lib/roken/rand.c.orig 2018-01-14 12:41:58.000000000 -0800 ++++ source4/heimdal/lib/roken/rand.c 2018-08-22 22:11:26.937151714 -0700 +@@ -37,7 +37,6 @@ + rk_random_init(void) + { + #if defined(HAVE_ARC4RANDOM) +- arc4random_stir(); + #elif defined(HAVE_SRANDOMDEV) + srandomdev(); + #elif defined(HAVE_RANDOM)