From owner-svn-ports-all@freebsd.org Mon Apr 30 08:08:50 2018 Return-Path: Delivered-To: svn-ports-all@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 6D429FC75AE; Mon, 30 Apr 2018 08:08:50 +0000 (UTC) (envelope-from brnrd@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 2008C81A9A; Mon, 30 Apr 2018 08:08:50 +0000 (UTC) (envelope-from brnrd@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 1B1B410816; Mon, 30 Apr 2018 08:08:50 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3U88nEN034430; Mon, 30 Apr 2018 08:08:49 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3U88n7j034428; Mon, 30 Apr 2018 08:08:49 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201804300808.w3U88n7j034428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Mon, 30 Apr 2018 08:08:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468674 - in head/security: libressl libressl-devel X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/security: libressl libressl-devel X-SVN-Commit-Revision: 468674 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Apr 2018 08:08:50 -0000 Author: brnrd Date: Mon Apr 30 08:08:49 2018 New Revision: 468674 URL: https://svnweb.freebsd.org/changeset/ports/468674 Log: security/libressl: Use -pthread Reported by: jbeich, eadler Modified: head/security/libressl-devel/Makefile head/security/libressl/Makefile Modified: head/security/libressl-devel/Makefile ============================================================================== --- head/security/libressl-devel/Makefile Mon Apr 30 07:30:59 2018 (r468673) +++ head/security/libressl-devel/Makefile Mon Apr 30 08:08:49 2018 (r468674) @@ -32,7 +32,7 @@ USES= autoreconf cpe libtool pathfix pkgconfig USE_LDCONFIG= yes OPTIONS_SUB= yes CFLAGS+= -fpic -DPIC -Wl,-rpath,${PREFIX}/lib -Wl,--as-needed -LDFLAGS+= -lthr +LDFLAGS+= -pthread INSTALL_TARGET= install-strip TEST_TARGET= check Modified: head/security/libressl/Makefile ============================================================================== --- head/security/libressl/Makefile Mon Apr 30 07:30:59 2018 (r468673) +++ head/security/libressl/Makefile Mon Apr 30 08:08:49 2018 (r468674) @@ -31,7 +31,7 @@ USES= autoreconf cpe libtool pathfix pkgconfig USE_LDCONFIG= yes OPTIONS_SUB= yes CFLAGS+= -fpic -DPIC -Wl,-rpath,${PREFIX}/lib -Wl,--as-needed -LDFLAGS+= -lthr +LDFLAGS+= -pthread INSTALL_TARGET= install-strip TEST_TARGET= check