From owner-dev-commits-src-branches@freebsd.org Tue Dec 29 19:15:54 2020 Return-Path: Delivered-To: dev-commits-src-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 813EB4C87C9; Tue, 29 Dec 2020 19:15:54 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D53zZ3JrJz3Gqf; Tue, 29 Dec 2020 19:15:54 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6039710EE9; Tue, 29 Dec 2020 19:15:54 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 0BTJFsFI012363; Tue, 29 Dec 2020 19:15:54 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 0BTJFsWC012362; Tue, 29 Dec 2020 19:15:54 GMT (envelope-from git) Date: Tue, 29 Dec 2020 19:15:54 GMT Message-Id: <202012291915.0BTJFsWC012362@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: Ed Maste Subject: git: 32cd91996213 - stable/12 - Add some non-default src.conf(5) knob descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: emaste X-Git-Repository: src X-Git-Refname: refs/heads/stable/12 X-Git-Reftype: branch X-Git-Commit: 32cd91996213ad11a6e10139fbc88e94b53b11b9 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: "Commit messages for the stable branches of the src repository." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Dec 2020 19:15:54 -0000 The branch stable/12 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=32cd91996213ad11a6e10139fbc88e94b53b11b9 commit 32cd91996213ad11a6e10139fbc88e94b53b11b9 Author: Ed Maste AuthorDate: 2018-11-21 14:50:45 +0000 Commit: Ed Maste CommitDate: 2020-12-29 19:15:04 +0000 Add some non-default src.conf(5) knob descriptions Some WITH_/WITHOUT_ defaults will likey change in the future (e.g. as we migrate to copyfree base system components). Add non-default descriptions for the benefit of WIP branches. (cherry picked from commit 0161256ccc89660285140ea2056441ec8e882831) --- tools/build/options/WITHOUT_BSD_GREP | 2 ++ tools/build/options/WITH_GCOV | 4 ++++ tools/build/options/WITH_GNU_DIFF | 5 +++++ tools/build/options/WITH_GNU_GREP | 3 +++ tools/build/options/WITH_SENDMAIL | 4 ++++ tools/build/options/WITH_TCP_WRAPPERS | 4 ++++ 6 files changed, 22 insertions(+) diff --git a/tools/build/options/WITHOUT_BSD_GREP b/tools/build/options/WITHOUT_BSD_GREP new file mode 100644 index 000000000000..b598d8aca012 --- /dev/null +++ b/tools/build/options/WITHOUT_BSD_GREP @@ -0,0 +1,2 @@ +.\" $FreeBSD$ +Install GNU grep as '[ef]grep' instead of BSD grep. diff --git a/tools/build/options/WITH_GCOV b/tools/build/options/WITH_GCOV new file mode 100644 index 000000000000..a9f3eb68a82b --- /dev/null +++ b/tools/build/options/WITH_GCOV @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Build and install the GNU +.Xr gcov 1 +tool. diff --git a/tools/build/options/WITH_GNU_DIFF b/tools/build/options/WITH_GNU_DIFF new file mode 100644 index 000000000000..3741e440a9ba --- /dev/null +++ b/tools/build/options/WITH_GNU_DIFF @@ -0,0 +1,5 @@ +.\" $FreeBSD$ +Build and install GNU +.Xr diff 1 +and +.Xr diff3 1 . diff --git a/tools/build/options/WITH_GNU_GREP b/tools/build/options/WITH_GNU_GREP new file mode 100644 index 000000000000..1d19a7df092c --- /dev/null +++ b/tools/build/options/WITH_GNU_GREP @@ -0,0 +1,3 @@ +.\" $FreeBSD$ +Build and install GNU +.Xr grep 1 . diff --git a/tools/build/options/WITH_SENDMAIL b/tools/build/options/WITH_SENDMAIL new file mode 100644 index 000000000000..ca399c968fe1 --- /dev/null +++ b/tools/build/options/WITH_SENDMAIL @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Build and install +.Xr sendmail 8 +and related programs. diff --git a/tools/build/options/WITH_TCP_WRAPPERS b/tools/build/options/WITH_TCP_WRAPPERS new file mode 100644 index 000000000000..8fd8e2aa6c56 --- /dev/null +++ b/tools/build/options/WITH_TCP_WRAPPERS @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Build and install +.Xr tcpd 8 , +and related utilities.