forked from Lainports/freebsd-ports
Submitted by: Matthias Wolf, cem, rene Obtained from: Some patches from OpenBSD port (robert@openbsd.org)
14 lines
319 B
C++
14 lines
319 B
C++
--- extensions/common/stack_frame.cc.orig 2020-11-13 06:36:43 UTC
|
|
+++ extensions/common/stack_frame.cc
|
|
@@ -7,7 +7,11 @@
|
|
#include <string>
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
|
+#if defined(OS_BSD)
|
|
+#include <re2/re2.h>
|
|
+#else
|
|
#include "third_party/re2/src/re2/re2.h"
|
|
+#endif
|
|
|
|
namespace extensions {
|
|
|