summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-10-13 13:43:50 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-10-13 13:50:21 -0400
commit0d4697ad1e31ff55c11d81c013aec48107a0df22 (patch)
tree1cb1ba542e6ba86d7992f7e20247623d42476c4f /ext
parentd22f66daf97e88ec86144a2b9c60ccd215ee986d (diff)
downloadmongo-0d4697ad1e31ff55c11d81c013aec48107a0df22.tar.gz
add config validation for Windows config
Diffstat (limited to 'ext')
-rw-r--r--ext/compressors/snappy/snappy_compress.c4
-rw-r--r--ext/compressors/zlib/zlib_compress.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/ext/compressors/snappy/snappy_compress.c b/ext/compressors/snappy/snappy_compress.c
index 90077e05245..7ed759e6807 100644
--- a/ext/compressors/snappy/snappy_compress.c
+++ b/ext/compressors/snappy/snappy_compress.c
@@ -37,14 +37,10 @@
* We need to include the configuration file to detect whether this extension
* is being built into the WiredTiger library.
*/
-#ifndef _WIN32
#include "wiredtiger_config.h"
-#else
-#include "os_win_wiredtiger_config.h"
#ifdef _MSC_VER
#define inline __inline
#endif
-#endif
/* Local compressor structure. */
typedef struct {
diff --git a/ext/compressors/zlib/zlib_compress.c b/ext/compressors/zlib/zlib_compress.c
index 2beb855eabd..8dd619d695c 100644
--- a/ext/compressors/zlib/zlib_compress.c
+++ b/ext/compressors/zlib/zlib_compress.c
@@ -38,14 +38,10 @@
* We need to include the configuration file to detect whether this extension
* is being built into the WiredTiger library.
*/
-#ifndef _WIN32
#include "wiredtiger_config.h"
-#else
-#include "os_win_wiredtiger_config.h"
#ifdef _MSC_VER
#define inline __inline
#endif
-#endif
/* Local compressor structure. */
typedef struct {