From owner-freebsd-stable@FreeBSD.ORG Tue Apr 26 09:44:38 2011 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 993E3106564A; Tue, 26 Apr 2011 09:44:38 +0000 (UTC) (envelope-from to.my.trociny@gmail.com) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id F24CF8FC0C; Tue, 26 Apr 2011 09:44:37 +0000 (UTC) Received: by eyg7 with SMTP id 7so174173eyg.13 for ; Tue, 26 Apr 2011 02:44:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:organization:references :sender:date:in-reply-to:message-id:user-agent:mime-version :content-type; bh=SOPJjyo8AzVSr1mkcdYdE9kbuux7wq3sA0tNBboa9so=; b=iUJZfBClWNUm4cLusw/pYV+C+5Syz81KD+wdIugO5gIwYRt+BccJG2XjbLAD3D3I4A sLg4zQtdJeIpDa2G3zQ5dePJhtvjGj4kTPqyExT3uEIpd5XvucN5dMLjRPOLW63e/nsi AkXk7JZiGJpSIL0okhTxoOPM5PVVWjYzViK0Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:organization:references:sender:date:in-reply-to :message-id:user-agent:mime-version:content-type; b=MvJbWMwUBhWz9em4K1fLahxI5zRI9op3WbKY+pqJN8Yg++pcEKHLSUC2BnuIY0ozLV dhMLZvlk2VNiblUS6w13MI0VPlpwmfTolir9w8610DXnt9xJy/k4n8qTihcR94EUw40v mjNDm1fiGxGAD9uzH4PCSOe3ZWTC/uE2et2xs= Received: by 10.213.108.135 with SMTP id f7mr1724327ebp.62.1303811076783; Tue, 26 Apr 2011 02:44:36 -0700 (PDT) Received: from localhost ([94.27.39.186]) by mx.google.com with ESMTPS id q53sm4669568eeh.4.2011.04.26.02.44.34 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 26 Apr 2011 02:44:35 -0700 (PDT) From: Mikolaj Golub To: "Matthew D. Fuller" Organization: TOA Ukraine References: <926783796.20110423022501@nitronet.pl> <20110423005422.GQ91591@over-yonder.net> <2910134705.20110423090442@nitronet.pl> <20110423125247.GA89102@icarus.home.lan> <20110423143838.GR91591@over-yonder.net> Sender: Mikolaj Golub Date: Tue, 26 Apr 2011 12:44:31 +0300 In-Reply-To: <20110423143838.GR91591@over-yonder.net> (Matthew D. Fuller's message of "Sat, 23 Apr 2011 09:38:39 -0500") Message-ID: <86mxjd1h4w.fsf@in138.ua3> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Pawel Tyll , freebsd-stable@freebsd.org, pjd@freebsd.org, Jeremy Chadwick Subject: Re: buildworld FAIL. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2011 09:44:38 -0000 --=-=-= On Sat, 23 Apr 2011 09:38:39 -0500 Matthew D. Fuller wrote: MDF> On Sat, Apr 23, 2011 at 05:52:47AM -0700 I heard the voice of MDF> Jeremy Chadwick, and lo! it spake thus: >> On Sat, Apr 23, 2011 at 09:04:42AM +0200, Pawel Tyll wrote: >> > So was NO_OPENSSL deprecated or something? >> >> I think he's implying that hast indirectly relies upon OpenSSL. MDF> There's some conditionalization on MK_OPENSSL in the Makefile (and via MDF> that, in the code), but it's incomplete. Whether that means it MDF> _should_ be buildable without OpenSSL and is just insufficiently MDF> tested, or whether it really just flat needs OpenSSL and the MDF> conditionalization is vestigial, I don't know. pjd@ cc'd. The attached patch should fix this. -- Mikolaj Golub --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=hast_proto.c.HAVE_CRYPTO.patch Index: sbin/hastd/hast_proto.c =================================================================== --- sbin/hastd/hast_proto.c (revision 221054) +++ sbin/hastd/hast_proto.c (working copy) @@ -69,7 +69,9 @@ struct hast_pipe_stage { static struct hast_pipe_stage pipeline[] = { { "compression", compression_send, compression_recv }, +#ifdef HAVE_CRYPTO { "checksum", checksum_send, checksum_recv } +#endif }; /* --=-=-=--