From: Nicholas Ormrod Date: Thu, 4 Dec 2014 22:08:43 +0000 (-0800) Subject: include gflags header in SSLSessionCacheManager X-Git-Tag: v0.22.0~134 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8f9cc411931fe811ae8c07430678843f6dc0d66a;p=folly.git 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 --- 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;