comparison src/share/vm/adlc/adlc.hpp @ 2233:15d6977f04b0

7017824: Add support for creating 64-bit Visual Studio projects Summary: Updated create.bat and ProjectCreator Reviewed-by: brutisso, stefank, ohair
author sla
date Thu, 10 Feb 2011 13:03:22 +0100
parents f95d63e2154a
children f08d439fab8c
comparison
equal deleted inserted replaced
2205:b83527d0482d 2233:15d6977f04b0
1 /* 1 /*
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
38 #include "stdarg.h" 38 #include "stdarg.h"
39 #include <sys/types.h> 39 #include <sys/types.h>
40 40
41 #if _MSC_VER >= 1300 41 #if _MSC_VER >= 1300
42 using namespace std; 42 using namespace std;
43 #endif
44
45 // make sure the MSC_VER and _MSC_VER settings make sense
46 #if _MSC_VER != MSC_VER && (_MSC_VER != 1400 || MSC_VER != 1399)
47 #error "Something is wrong with the detection of MSC_VER in the makefiles"
48 #endif 43 #endif
49 44
50 #if _MSC_VER >= 1400 45 #if _MSC_VER >= 1400
51 #define strdup _strdup 46 #define strdup _strdup
52 #endif 47 #endif