mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
- 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
12 lines
423 B
Text
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" ]
|