fix open source build
authorMarcin Pawlowski <mpawlowski@fb.com>
Mon, 9 Feb 2015 21:41:02 +0000 (13:41 -0800)
committerSara Golemon <sgolemon@fb.com>
Wed, 11 Feb 2015 02:02:00 +0000 (18:02 -0800)
Summary:
include was missing, causing build to fail on
Arch Linux with gcc 4.9.2 -- found this while resolving
other issues.

Test Plan: build folly on my personal linux and on dev server

Reviewed By: viswanath@fb.com

Subscribers: fugalh, folly-diffs@, jsedgwick, yfeldblum

FB internal diff: D1835143

Signature: t1:1835143:1423513128:5dcff69a82878f47b40512711ed254f239399c2c

folly/wangle/acceptor/Acceptor.cpp

index 8e616c236ddc73343ef8ec306b50f4f8f1b371c7..010022cee828561a0d27f132679e42a20cd735bd 100644 (file)
@@ -21,6 +21,7 @@
 #include <sys/types.h>
 #include <folly/io/async/AsyncSSLSocket.h>
 #include <folly/io/async/AsyncSocket.h>
+#include <gflags/gflags.h>
 #include <unistd.h>
 
 using folly::wangle::ConnectionManager;