From owner-svn-ports-all@freebsd.org Wed Mar 15 19:50:45 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B84BD0E2E9; Wed, 15 Mar 2017 19:50:45 +0000 (UTC) (envelope-from cy@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 mx1.freebsd.org (Postfix) with ESMTPS id E68A2177B; Wed, 15 Mar 2017 19:50:44 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2FJoiwc016471; Wed, 15 Mar 2017 19:50:44 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2FJohEL016467; Wed, 15 Mar 2017 19:50:43 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201703151950.v2FJohEL016467@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 15 Mar 2017 19:50:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436256 - in head/net: ntp ntp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 19:50:45 -0000 Author: cy Date: Wed Mar 15 19:50:43 2017 New Revision: 436256 URL: https://svnweb.freebsd.org/changeset/ports/436256 Log: Enable DEBUG option which enables debugging code in ntp via --enable-debug. This enables -d and -D options within ntpd. Modified: head/net/ntp-devel/Makefile head/net/ntp-devel/Makefile.inc head/net/ntp/Makefile head/net/ntp/Makefile.inc Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Wed Mar 15 17:50:10 2017 (r436255) +++ head/net/ntp-devel/Makefile Wed Mar 15 19:50:43 2017 (r436256) @@ -56,6 +56,8 @@ SSL_CONFIGURE_OFF= --without-crypto SSL_USES= ssl SSL_BROKEN_OFF= Includes OpenSSL when deselected +DEBUG_CONFIGURE_ON= --enable-debug + THREADS_CONFIGURE_ENABLE= thread-support THREADS_CONFIGURE_WITH= threads Modified: head/net/ntp-devel/Makefile.inc ============================================================================== --- head/net/ntp-devel/Makefile.inc Wed Mar 15 17:50:10 2017 (r436255) +++ head/net/ntp-devel/Makefile.inc Wed Mar 15 19:50:43 2017 (r436256) @@ -3,6 +3,7 @@ OPTIONS_DEFINE= NTPSNMPD \ SSL \ IPV6 \ + DEBUG \ NTP_SIGND \ BANCOMM \ GPSVME \ Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Wed Mar 15 17:50:10 2017 (r436255) +++ head/net/ntp/Makefile Wed Mar 15 19:50:43 2017 (r436256) @@ -59,6 +59,8 @@ SSL_CONFIGURE_OFF= --without-crypto SSL_USES= ssl SSL_BROKEN_OFF= Includes OpenSSL when deselected +DEBUG_CONFIGURE_ON= --enable-debug + THREADS_CONFIGURE_ENABLE= thread-support THREADS_CONFIGURE_WITH= threads Modified: head/net/ntp/Makefile.inc ============================================================================== --- head/net/ntp/Makefile.inc Wed Mar 15 17:50:10 2017 (r436255) +++ head/net/ntp/Makefile.inc Wed Mar 15 19:50:43 2017 (r436256) @@ -3,6 +3,7 @@ OPTIONS_DEFINE= NTPSNMPD \ SSL \ IPV6 \ + DEBUG \ NTP_SIGND \ BANCOMM \ GPSVME \