0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

try to compile with v8 on widnows

This commit is contained in:
Dwight 2011-06-20 17:43:18 -04:00
parent cfc98d710f
commit 05d1949790

View File

@ -15,6 +15,14 @@
* limitations under the License.
*/
#if defined(_WIN32)
/** this is a hack - v8stdint.h defined uint16_t etc. on _WIN32 only, and that collides with
our usage of boost */
#include "boost/cstdint.hpp"
using namespace boost;
#define V8STDINT_H_
#endif
#include "engine_v8.h"
#include "v8_wrapper.h"