17 lines
400 B
Plaintext
17 lines
400 B
Plaintext
Index: build/linux/unbundle/libevent.gn
|
|
--- build/linux/unbundle/libevent.gn.orig
|
|
+++ build/linux/unbundle/libevent.gn
|
|
@@ -9,7 +9,12 @@ shim_headers("libevent_shim") {
|
|
headers = [ "event.h" ]
|
|
}
|
|
|
|
+config("system_libevent") {
|
|
+ defines = [ "USE_SYSTEM_LIBEVENT=1" ]
|
|
+}
|
|
+
|
|
source_set("libevent") {
|
|
deps = [ ":libevent_shim" ]
|
|
libs = [ "event" ]
|
|
+ public_configs = [ ":system_libevent" ]
|
|
}
|