[thrift] Build fix for TFileTransport

Summary: Not including config.h means we never get the HAVE_CLOCK_GETTIME #define, breaking the build with a duplicate function definition on machines that have a clock_gettime() function in the standard library.

Reviewed By: slee
Test Plan: it compiles, ship it
Revert: ok


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dweatherford 2007-04-05 00:20:40 +00:00
parent ff24f74b49
commit 86efa70748

View File

@ -4,6 +4,10 @@
// See accompanying file LICENSE or visit the Thrift site at: // See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/ // http://developers.facebook.com/thrift/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "TFileTransport.h" #include "TFileTransport.h"
#include "TTransportUtils.h" #include "TTransportUtils.h"