From 8f9cc411931fe811ae8c07430678843f6dc0d66a Mon Sep 17 00:00:00 2001 From: Nicholas Ormrod Date: Thu, 4 Dec 2014 14:08:43 -0800 Subject: [PATCH] include gflags header in SSLSessionCacheManager Summary: SSLSessionCacheManager uses glfags but doesn't include it. This breaks on some systems. Test Plan: fbconfig -r folly && fbmake runtests Reviewed By: robbert@fb.com Subscribers: trunkagent, sdwilsh, fugalh, ssl-diffs@, njormrod, folly-diffs@ FB internal diff: D1716997 Signature: t1:1716997:1417720032:548c2ad8f54e41d42585c331324f2065733595c1 --- folly/experimental/wangle/ssl/SSLSessionCacheManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/folly/experimental/wangle/ssl/SSLSessionCacheManager.cpp b/folly/experimental/wangle/ssl/SSLSessionCacheManager.cpp index fc339a17..e9111b6b 100644 --- a/folly/experimental/wangle/ssl/SSLSessionCacheManager.cpp +++ b/folly/experimental/wangle/ssl/SSLSessionCacheManager.cpp @@ -15,6 +15,10 @@ #include +#ifndef NO_LIB_GFLAGS +#include +#endif + using std::string; using std::shared_ptr; -- 2.34.1