aboutsummaryrefslogtreecommitdiff
path: root/security/certificate-transparency/files/patch-cpp-util-testing.cc
diff options
context:
space:
mode:
Diffstat (limited to 'security/certificate-transparency/files/patch-cpp-util-testing.cc')
-rw-r--r--security/certificate-transparency/files/patch-cpp-util-testing.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/security/certificate-transparency/files/patch-cpp-util-testing.cc b/security/certificate-transparency/files/patch-cpp-util-testing.cc
deleted file mode 100644
index 99c1a14d021e..000000000000
--- a/security/certificate-transparency/files/patch-cpp-util-testing.cc
+++ /dev/null
@@ -1,21 +0,0 @@
---- cpp/util/testing.cc.orig 2016-10-14 17:11:57 UTC
-+++ cpp/util/testing.cc
-@@ -3,6 +3,9 @@
- #include <event2/thread.h>
- #include <evhtp.h>
- #include <glog/logging.h>
-+// Without this, build will fail due to clash between onigposix.h
-+// and regex.h.
-+#define GTEST_HAS_POSIX_RE 0
- #include <gtest/gtest.h>
-
- #include "config.h"
-@@ -15,7 +18,7 @@ namespace test {
- void InitTesting(const char* name, int* argc, char*** argv,
- bool remove_flags) {
- ::testing::InitGoogleTest(argc, *argv);
-- google::ParseCommandLineFlags(argc, argv, remove_flags);
-+ gflags::ParseCommandLineFlags(argc, argv, remove_flags);
- google::InitGoogleLogging(name);
- google::InstallFailureSignalHandler();
- evthread_use_pthreads();