Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 20 Apr 2019 23:25:24
Message-Id: 1555767780.6c9415811b77a1e4759fd653fab89d272f724d01.polynomial-c@gentoo
1 commit: 6c9415811b77a1e4759fd653fab89d272f724d01
2 Author: Yuta SATOH <nigoro.dev <AT> gmail <DOT> com>
3 AuthorDate: Sat Apr 20 13:40:36 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 20 13:43:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c941581
7
8 Improved elog message for userland_BSD systems
9
10 so users don't see this warning:
11
12 [warn] (2)No such file or directory: Failed to enable the 'dataready'
13 Accept Filter
14
15 Closes: https://bugs.gentoo.org/454970
16 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
17
18 eclass/apache-2.eclass | 3 +++
19 1 file changed, 3 insertions(+)
20
21 diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass
22 index d7c8254d8b2..886161758a3 100644
23 --- a/eclass/apache-2.eclass
24 +++ b/eclass/apache-2.eclass
25 @@ -418,6 +418,9 @@ apache-2_pkg_setup() {
26 if use userland_BSD; then
27 elog "On BSD systems you need to add the following line to /boot/loader.conf:"
28 elog " accf_http_load=\"YES\""
29 + if use ssl ; then
30 + elog " accf_data_load=\"YES\""
31 + fi
32 elog
33 fi
34 }