Skip to content

Commit

Permalink
dev-util/bcc: drop ~HAVE_BPF_JIT from CONFIG_CHECK
Browse files Browse the repository at this point in the history
Since linux 4.6, HAVE_BPF_JIT no longer exists. It is enough to specify
BPF_JIT, since BPF_JIT depends on HAVE_BPF_JIT for linux less than
4.6, and depends on HAVE_CBPF_JIT || HAVE_EBPF_JIT since linux 4.6
(see linux commit 6077776b5908e0493a3946f7d3bc63871b201e87).

Reported-by: Thomas Stein <[email protected]>
Package-Manager: portage-2.3.2
  • Loading branch information
zmedico committed Nov 2, 2016
1 parent 6fe9582 commit 5e087d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-util/bcc/bcc-0.1.8-r2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT#v}

pkg_pretend() {
local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF
~BPF_JIT ~HAVE_BPF_JIT ~BPF_EVENTS"
~BPF_JIT ~BPF_EVENTS"

check_extra_config
}
Expand Down
2 changes: 1 addition & 1 deletion dev-util/bcc/bcc-0.2.0-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT#v}

pkg_pretend() {
local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF
~BPF_JIT ~HAVE_BPF_JIT ~BPF_EVENTS"
~BPF_JIT ~BPF_EVENTS"

check_extra_config
}
Expand Down

0 comments on commit 5e087d7

Please sign in to comment.