From owner-freebsd-hackers@FreeBSD.ORG Tue Feb 23 12:44:39 2010 Return-Path: Delivered-To: freebsd-hackers@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5DE3106566C for ; Tue, 23 Feb 2010 12:44:39 +0000 (UTC) (envelope-from ray@dlink.ua) Received: from dlink.ua (smtp.dlink.ua [193.138.187.146]) by mx1.freebsd.org (Postfix) with ESMTP id 632CC8FC0A for ; Tue, 23 Feb 2010 12:44:39 +0000 (UTC) Received: from gw ([192.168.10.10] helo=terran) by dlink.ua with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1NjthG-0005xL-7I for freebsd-hackers@FreeBSD.org; Tue, 23 Feb 2010 14:17:02 +0200 Date: Tue, 23 Feb 2010 14:03:28 +0200 From: Alexandr Rybalko To: freebsd-hackers@FreeBSD.org Message-Id: <20100223140328.50aa08f1.ray@dlink.ua> Organization: D-Link X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: hastd without openssl X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Feb 2010 12:44:39 -0000 Hi, I make small patch for no build hastd without openssl. Index: sbin/Makefile =================================================================== --- sbin/Makefile (revision 204220) +++ sbin/Makefile (working copy) @@ -37,7 +37,7 @@ SUBDIR= adjkerntz \ growfs \ gvinum \ hastctl \ - hastd \ + ${_hastd} \ ifconfig \ init \ ${_ipf} \ @@ -121,6 +121,10 @@ _rtsol= rtsol _bsdlabel= bsdlabel .endif +.if ${MK_OPENSSL} != "no" +_hastd= hastd +.endif + .if ${MK_QUOTAS} != "no" _quotacheck= quotacheck .endif -- Alexandr Rybalko aka Alex RAY