From owner-freebsd-ports@FreeBSD.ORG Sat May 19 05:54:02 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64E5D106566C; Sat, 19 May 2012 05:54:02 +0000 (UTC) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Received: from nskntmtas02p.mx.bigpond.com (nskntmtas02p.mx.bigpond.com [61.9.168.140]) by mx1.freebsd.org (Postfix) with ESMTP id CC66B8FC0C; Sat, 19 May 2012 05:54:01 +0000 (UTC) Received: from nskntotgx03p.mx.bigpond.com ([58.172.112.105]) by nskntmtas02p.mx.bigpond.com with ESMTP id <20120519055400.YNFR24575.nskntmtas02p.mx.bigpond.com@nskntotgx03p.mx.bigpond.com>; Sat, 19 May 2012 05:54:00 +0000 Received: from hermes.heuristicsystems.com.au ([58.172.112.105]) by nskntotgx03p.mx.bigpond.com with ESMTP id <20120519055400.WJHL2714.nskntotgx03p.mx.bigpond.com@hermes.heuristicsystems.com.au>; Sat, 19 May 2012 05:54:00 +0000 Received: from white (white.hs [10.0.5.2]) (authenticated bits=0) by hermes.heuristicsystems.com.au (8.14.5/8.13.6) with ESMTP id q4J5nYV5093183 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NOT); Sat, 19 May 2012 15:49:45 +1000 (EST) (envelope-from dewayne.geraghty@heuristicsystems.com.au) From: "Dewayne Geraghty" To: References: Date: Sat, 19 May 2012 15:49:34 +1000 Message-ID: <957745438793443CA926ADB10E9C9B80@white> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: Ac01HQnlOiJo2Kp7Q9CYHJlVurHJ2wAX4Vew In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-SIH-MSG-ID: qRk3F9X7TAD0zmQv0WC2O1J3yArnq3Mt8ZoaRdJjqwQZTUTduMHbU6nyN7M8kMf21TdcNh+PO2UqY6z0X4/QsOM= Cc: ports@FreeBSD.org Subject: ntp - time signing patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2012 05:54:02 -0000 With discussion on the samba-technical list about an upcoming samba4-beta release, it might prove timely to add the following patch to enable time signing, for MS-Windows devices (mssntp). Ref: https://wiki.samba.org/index.php/Samba4/HOWTO#Step_11_Configure_NTP_.28opti onal.29 Regards, Dewayne. --- Makefile.orig 2012-05-19 14:31:43.000000000 +1000 +++ Makefile 2012-05-19 14:40:58.000000000 +1000 @@ -55,6 +55,10 @@ CONFIGURE_ARGS+= --enable-ipv6 .endif +.if defined(WITH_SIGNING) +CONFIGURE_ARGS+= --enable-ntp-signd +.endif + .for D in ${NTP_DRIVERS} .if defined(WITH_${D}) CONFIGURE_ARGS+= --enable-${D} --- Makefile.inc.orig 2012-05-19 14:33:08.000000000 +1000 +++ Makefile.inc 2012-05-19 14:43:36.000000000 +1000 @@ -3,6 +3,7 @@ OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \ SSL "Enable SSL" ON \ IPV6 "Enable IPv6" OFF \ + SIGNING "Enable time signing" OFF \ BANCOMM "Enable Datum/Bancomm bc635/VME interface" OFF \ GPSVME "Enable TrueTime GPS receiver/VME interface" OFF \ ACTS "Enable ACTS modem service" OFF \