ports/www/chromium/files/patch-base_third__party_libevent_BUILD.gn
Carlos J. Puga Medina 8d28aa8db0 www/chromium: update to 56.0.2924.87
- Use system FFmpeg instead of embedded code copy [1]
- Disable PULSEAUDIO option [2]
- Sort _DEPENDS variables
- Regenerate patches with make makepatch

PR:		215271 [1], 216327 [2]
Reported by:	jbeich [1]
Approved by:	rene
MFH:		2017Q1
Security:	https://vuxml.freebsd.org/freebsd/4b9ca994-e3d9-11e6-813d-e8e0b747a45a.html
2017-02-06 19:29:36 +00:00

12 lines
423 B
Text

--- base/third_party/libevent/BUILD.gn.orig 2017-01-26 00:49:07 UTC
+++ base/third_party/libevent/BUILD.gn
@@ -29,6 +29,9 @@ static_library("libevent") {
} else if (is_linux) {
sources += [ "epoll.c" ]
include_dirs = [ "linux" ]
+ } else if (is_bsd) {
+ sources += [ "kqueue.c" ]
+ include_dirs = [ "freebsd" ]
} else if (is_android) {
sources += [ "epoll.c" ]
include_dirs = [ "android" ]