include gflags header in SSLSessionCacheManager
authorNicholas Ormrod <njormrod@fb.com>
Thu, 4 Dec 2014 22:08:43 +0000 (14:08 -0800)
committerDave Watson <davejwatson@fb.com>
Thu, 11 Dec 2014 16:00:40 +0000 (08:00 -0800)
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

index fc339a17076e1f61a9fd903c6708675525d1ae13..e9111b6b2fd9cc6930757ad5dcc0ecfc80d6bbdb 100644 (file)
 
 #include <folly/io/async/EventBase.h>
 
+#ifndef NO_LIB_GFLAGS
+#include <gflags/gflags.h>
+#endif
+
 using std::string;
 using std::shared_ptr;