~eday/drizzle/eday-dev

« back to all changes in this revision

Viewing changes to drizzled/message/transaction_writer.cc

  • Committer: Eric Day
  • Date: 2010-01-07 20:02:38 UTC
  • mfrom: (971.3.291 staging)
  • Revision ID: eday@oddments.org-20100107200238-uqw8v6kv9pl7nny5
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22
22
 */
23
23
 
24
 
#include "drizzled/global.h"
 
24
#include "config.h"
25
25
#include "drizzled/hash/crc32.h"
26
26
#include "drizzled/gettext.h"
27
27
#include "drizzled/replication_services.h"
32
32
#include <string>
33
33
#include <fstream>
34
34
#include <unistd.h>
 
35
 
 
36
#if TIME_WITH_SYS_TIME
 
37
# include <sys/time.h>
 
38
# include <time.h>
 
39
#else
 
40
# if HAVE_SYS_TIME_H
 
41
#  include <sys/time.h>
 
42
# else
 
43
#  include <time.h>
 
44
# endif
 
45
#endif
 
46
 
35
47
#include <drizzled/message/transaction.pb.h>
36
48
 
37
49
#include <google/protobuf/io/coded_stream.h>