|
1 | 1 | // Copyright 2012 the V8 project authors. All rights reserved.
|
2 |
| -// Redistribution and use in source and binary forms, with or without |
3 |
| -// modification, are permitted provided that the following conditions are |
4 |
| -// met: |
5 |
| -// |
6 |
| -// * Redistributions of source code must retain the above copyright |
7 |
| -// notice, this list of conditions and the following disclaimer. |
8 |
| -// * Redistributions in binary form must reproduce the above |
9 |
| -// copyright notice, this list of conditions and the following |
10 |
| -// disclaimer in the documentation and/or other materials provided |
11 |
| -// with the distribution. |
12 |
| -// * Neither the name of Google Inc. nor the names of its |
13 |
| -// contributors may be used to endorse or promote products derived |
14 |
| -// from this software without specific prior written permission. |
15 |
| -// |
16 |
| -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 |
| -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 |
| -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 |
| -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 |
| -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 |
| -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 |
| -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 |
| -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 |
| -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 |
| -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 |
| -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2 | +// Use of this source code is governed by a BSD-style license that can be |
| 3 | +// found in the LICENSE file. |
27 | 4 |
|
| 5 | +#include "include/v8-version.h" |
28 | 6 | #include "src/v8.h"
|
29 |
| - |
30 | 7 | #include "src/version.h"
|
31 | 8 |
|
32 |
| -// These macros define the version number for the current version. |
33 |
| -// NOTE these macros are used by some of the tool scripts and the build |
34 |
| -// system so their names cannot be changed without changing the scripts. |
35 |
| -#define MAJOR_VERSION 4 |
36 |
| -#define MINOR_VERSION 1 |
37 |
| -#define BUILD_NUMBER 0 |
38 |
| -#define PATCH_LEVEL 21 |
39 |
| -// Use 1 for candidates and 0 otherwise. |
40 |
| -// (Boolean macro values are not supported by all preprocessors.) |
41 |
| -#define IS_CANDIDATE_VERSION 0 |
42 |
| - |
43 | 9 | // Define SONAME to have the build system put a specific SONAME into the
|
44 | 10 | // shared library instead the generic SONAME generated from the V8 version
|
45 | 11 | // number. This define is mainly used by the build system script.
|
46 | 12 | #define SONAME ""
|
47 | 13 |
|
48 |
| -#if IS_CANDIDATE_VERSION |
| 14 | +#if V8_IS_CANDIDATE_VERSION |
49 | 15 | #define CANDIDATE_STRING " (candidate)"
|
50 | 16 | #else
|
51 | 17 | #define CANDIDATE_STRING ""
|
|
54 | 20 | #define SX(x) #x
|
55 | 21 | #define S(x) SX(x)
|
56 | 22 |
|
57 |
| -#if PATCH_LEVEL > 0 |
58 |
| -#define VERSION_STRING \ |
59 |
| - S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) "." \ |
60 |
| - S(PATCH_LEVEL) CANDIDATE_STRING |
| 23 | +#if V8_PATCH_LEVEL > 0 |
| 24 | +#define VERSION_STRING \ |
| 25 | + S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) "." S( \ |
| 26 | + V8_PATCH_LEVEL) CANDIDATE_STRING |
61 | 27 | #else
|
62 |
| -#define VERSION_STRING \ |
63 |
| - S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) \ |
64 |
| - CANDIDATE_STRING |
| 28 | +#define VERSION_STRING \ |
| 29 | + S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) \ |
| 30 | + CANDIDATE_STRING |
65 | 31 | #endif
|
66 | 32 |
|
67 | 33 | namespace v8 {
|
68 | 34 | namespace internal {
|
69 | 35 |
|
70 |
| -int Version::major_ = MAJOR_VERSION; |
71 |
| -int Version::minor_ = MINOR_VERSION; |
72 |
| -int Version::build_ = BUILD_NUMBER; |
73 |
| -int Version::patch_ = PATCH_LEVEL; |
74 |
| -bool Version::candidate_ = (IS_CANDIDATE_VERSION != 0); |
| 36 | +int Version::major_ = V8_MAJOR_VERSION; |
| 37 | +int Version::minor_ = V8_MINOR_VERSION; |
| 38 | +int Version::build_ = V8_BUILD_NUMBER; |
| 39 | +int Version::patch_ = V8_PATCH_LEVEL; |
| 40 | +bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0); |
75 | 41 | const char* Version::soname_ = SONAME;
|
76 | 42 | const char* Version::version_string_ = VERSION_STRING;
|
77 | 43 |
|
|
0 commit comments