libv8 3.3.10.4-amd64-freebsd-9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/libv8.rb +15 -0
- data/lib/libv8/build/v8/libv8.a +0 -0
- data/lib/libv8/build/v8/libv8preparser.a +0 -0
- data/lib/libv8/v8/include/v8-debug.h +395 -0
- data/lib/libv8/v8/include/v8-preparser.h +117 -0
- data/lib/libv8/v8/include/v8-profiler.h +505 -0
- data/lib/libv8/v8/include/v8-testing.h +104 -0
- data/lib/libv8/v8/include/v8.h +4124 -0
- data/lib/libv8/v8/include/v8stdint.h +53 -0
- data/lib/libv8/version.rb +6 -0
- metadata +86 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
// Copyright 2010 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.
|
27
|
+
|
28
|
+
// Load definitions of standard types.
|
29
|
+
|
30
|
+
#ifndef V8STDINT_H_
|
31
|
+
#define V8STDINT_H_
|
32
|
+
|
33
|
+
#include <stdio.h>
|
34
|
+
|
35
|
+
#if defined(_WIN32) && !defined(__MINGW32__)
|
36
|
+
|
37
|
+
typedef signed char int8_t;
|
38
|
+
typedef unsigned char uint8_t;
|
39
|
+
typedef short int16_t; // NOLINT
|
40
|
+
typedef unsigned short uint16_t; // NOLINT
|
41
|
+
typedef int int32_t;
|
42
|
+
typedef unsigned int uint32_t;
|
43
|
+
typedef __int64 int64_t;
|
44
|
+
typedef unsigned __int64 uint64_t;
|
45
|
+
// intptr_t and friends are defined in crtdefs.h through stdio.h.
|
46
|
+
|
47
|
+
#else
|
48
|
+
|
49
|
+
#include <stdint.h>
|
50
|
+
|
51
|
+
#endif
|
52
|
+
|
53
|
+
#endif // V8STDINT_H_
|
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: libv8
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.3.10.4
|
5
|
+
prerelease:
|
6
|
+
platform: amd64-freebsd-9
|
7
|
+
authors:
|
8
|
+
- Logan Lowell
|
9
|
+
- Charles Lowell
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-05-05 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
requirement: &17201177600 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.9.2
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *17201177600
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: bundler
|
28
|
+
requirement: &17201177100 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *17201177100
|
37
|
+
description: Distributes the V8 JavaScript engine in binary and source forms in order
|
38
|
+
to support fast builds of The Ruby Racer
|
39
|
+
email:
|
40
|
+
- fractaloop@thefrontside.net
|
41
|
+
- cowboyd@thefrontside.net
|
42
|
+
executables: []
|
43
|
+
extensions: []
|
44
|
+
extra_rdoc_files: []
|
45
|
+
files:
|
46
|
+
- lib/libv8.rb
|
47
|
+
- lib/libv8/version.rb
|
48
|
+
- lib/libv8/v8/include/v8-preparser.h
|
49
|
+
- lib/libv8/v8/include/v8-profiler.h
|
50
|
+
- lib/libv8/v8/include/v8.h
|
51
|
+
- lib/libv8/v8/include/v8stdint.h
|
52
|
+
- lib/libv8/v8/include/v8-debug.h
|
53
|
+
- lib/libv8/v8/include/v8-testing.h
|
54
|
+
- lib/libv8/build/v8/libv8.a
|
55
|
+
- lib/libv8/build/v8/libv8preparser.a
|
56
|
+
homepage: http://github.com/fractaloop/libv8
|
57
|
+
licenses: []
|
58
|
+
post_install_message:
|
59
|
+
rdoc_options: []
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
segments:
|
69
|
+
- 0
|
70
|
+
hash: -2556027099929059019
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
segments:
|
78
|
+
- 0
|
79
|
+
hash: -2556027099929059019
|
80
|
+
requirements: []
|
81
|
+
rubyforge_project: libv8
|
82
|
+
rubygems_version: 1.8.11
|
83
|
+
signing_key:
|
84
|
+
specification_version: 3
|
85
|
+
summary: Distribution of the V8 JavaScript engine
|
86
|
+
test_files: []
|