From owner-svn-src-projects@freebsd.org Thu Sep 20 23:07:01 2018 Return-Path: Delivered-To: svn-src-projects@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 E59A910AC1C6 for ; Thu, 20 Sep 2018 23:07:00 +0000 (UTC) (envelope-from jkim@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 8F598842DF; Thu, 20 Sep 2018 23:07:00 +0000 (UTC) (envelope-from jkim@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 84A8224843; Thu, 20 Sep 2018 23:07:00 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8KN70Hb010777; Thu, 20 Sep 2018 23:07:00 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8KN70I3010776; Thu, 20 Sep 2018 23:07:00 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201809202307.w8KN70I3010776@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 20 Sep 2018 23:07:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r338848 - projects/openssl111/secure/usr.bin/openssl X-SVN-Group: projects X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: projects/openssl111/secure/usr.bin/openssl X-SVN-Commit-Revision: 338848 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2018 23:07:01 -0000 Author: jkim Date: Thu Sep 20 23:06:59 2018 New Revision: 338848 URL: https://svnweb.freebsd.org/changeset/base/338848 Log: Remove pthread from LIBADD for openssl(1). libcrypto is linked with pthread since r338816. Modified: projects/openssl111/secure/usr.bin/openssl/Makefile Modified: projects/openssl111/secure/usr.bin/openssl/Makefile ============================================================================== --- projects/openssl111/secure/usr.bin/openssl/Makefile Thu Sep 20 22:48:34 2018 (r338847) +++ projects/openssl111/secure/usr.bin/openssl/Makefile Thu Sep 20 23:06:59 2018 (r338848) @@ -2,7 +2,7 @@ PROG= openssl -LIBADD= ssl crypto pthread +LIBADD= ssl crypto .if exists(Makefile.man) .include "Makefile.man"