From aabfe7bc6163071e04295dcc68b271fc2e0cfd6b Mon Sep 17 00:00:00 2001 From: csilvers Date: Wed, 27 Jul 2011 01:03:02 +0000 Subject: [PATCH] A small change to make sure that windows doesn't #include the wrong (unix) config file. Probably only a problem on mingw, which is the only platform that wants the windows config.h but still runs automake. --- src/windows/port.cc | 2 +- src/windows/port.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows/port.cc b/src/windows/port.cc index 54a566d..3cdd02b 100644 --- a/src/windows/port.cc +++ b/src/windows/port.cc @@ -31,7 +31,7 @@ * Author: Craig Silverstein */ -#include "windows/config.h" +#include #ifndef _WIN32 # error You should only be including windows/port.cc in a windows environment! #endif diff --git a/src/windows/port.h b/src/windows/port.h index 7a8367f..faf4282 100644 --- a/src/windows/port.h +++ b/src/windows/port.h @@ -40,7 +40,7 @@ #ifndef CTEMPLATE_WINDOWS_PORT_H_ #define CTEMPLATE_WINDOWS_PORT_H_ -#include "windows/config.h" +#include #ifdef _WIN32 #define USING_PORT_CC