From owner-freebsd-questions@FreeBSD.ORG Mon Dec 29 07:27:35 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA16FF6C for ; Mon, 29 Dec 2014 07:27:35 +0000 (UTC) Received: from mail-oi0-f51.google.com (mail-oi0-f51.google.com [209.85.218.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B136E2584 for ; Mon, 29 Dec 2014 07:27:35 +0000 (UTC) Received: by mail-oi0-f51.google.com with SMTP id e131so28121069oig.10 for ; Sun, 28 Dec 2014 23:27:35 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=MS6U6kAh48WgWJcgCG6K2CFlILU63G8ARaXLAtXBan0=; b=NWGs9U2mQbFUXphNYeCRj+75o4wWaf3DsUDVpoloqLjvP2kJljq8wJ+L6MWtS7sOqt HZPhIBAPztD2+RMVV6px8pMSOMaoTNe4Q4od5Fgvo+geQukzWj9YPdfArLo9KZ6e9/rV /jzEGgSAlV0NN6dmJhnz4a4jqGryx+lBWO3bt/F/VNSiGTpC7/bdVtt7wPEc3C5w5+om XT5j/JVMFkYhTx75pA98NehEyct82vygHiKwARXRRBjCSN0cMwcFLGMcJstxxbD93Ka8 V2MxLI78JNjZHbBV6KPYYIDSED/qZmLN+hF1DovpxB0nCP/cMPVVQJg/H3S4typsQ5b8 UjeQ== X-Gm-Message-State: ALoCoQnKNzXuvUO4Baeqh13BvS6e3SROKKfU68+9173xVqlH73k11izUADnmrOaaFnpmMolaRpJv X-Received: by 10.202.106.17 with SMTP id f17mr30234302oic.130.1419834414693; Sun, 28 Dec 2014 22:26:54 -0800 (PST) Received: from [127.0.0.1] (76-252-236-89.lightspeed.sndgca.sbcglobal.net. [76.252.236.89]) by mx.google.com with ESMTPSA id r132sm15344475oib.11.2014.12.28.22.26.52 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 28 Dec 2014 22:26:53 -0800 (PST) Message-ID: <54A0F430.9040303@brianwhalen.net> Date: Sun, 28 Dec 2014 22:26:56 -0800 From: brian User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: bsd.openssl.Mk problem Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 141228-1, 12/28/2014), Outbound message X-Antivirus-Status: Clean X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2014 07:27:36 -0000 i have been having a problem with portupgrade -a on a 10.1-i386 system that is running pkg that I solved tonight and thought I would pass it along. I was getting numerous repeats of the below error when I ran portupgrade -a # portupgrade -a [Reading data from pkg(8) ... - 54 packages found - done] make: "/usr/ports/Mk/bsd.openssl.mk" line 98: warning: Couldn't read shell's output for "/usr/local/sbin/pkg-static which -qo /usr/local/lib/libcrypto.so || :" Looking at the file: :/usr/local/lib # ls -l libcrypto.so* lrwxr-xr-x 1 root wheel 14 Aug 21 06:29 libcrypto.so -> libcrypto.so.8 -r--r--r-- 1 root wheel 1808842 Aug 21 06:29 libcrypto.so.8 I checked to see if it came from a port, and it seems it didn't. :/usr/ports # pkg which /usr/local/lib/libcrypto.so /usr/local/lib/libcrypto.so was not found in the database :/usr/ports # pkg which /usr/local/lib/libcrypto.so.8 /usr/local/lib/libcrypto.so.8 was not found in the database At any rate, once I installed the openssl package v 1.0.1_16 and the problem no longer appears. Brian