thrift 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/benchmark/gen-rb/benchmark_constants.rb +1 -1
- data/benchmark/gen-rb/benchmark_service.rb +1 -1
- data/benchmark/gen-rb/benchmark_types.rb +1 -1
- data/ext/strlcpy.c +41 -0
- data/ext/strlcpy.h +30 -0
- data/ext/struct.c +6 -32
- data/lib/thrift/struct_union.rb +1 -1
- data/spec/base_protocol_spec.rb +1 -1
- data/spec/base_transport_spec.rb +1 -1
- data/spec/binary_protocol_accelerated_spec.rb +2 -2
- data/spec/binary_protocol_spec.rb +2 -2
- data/spec/binary_protocol_spec_shared.rb +1 -1
- data/spec/client_spec.rb +1 -1
- data/spec/compact_protocol_spec.rb +12 -1
- data/spec/exception_spec.rb +1 -1
- data/spec/gen-rb/nonblocking_service.rb +1 -1
- data/spec/gen-rb/thrift_spec_constants.rb +1 -1
- data/spec/gen-rb/thrift_spec_types.rb +1 -1
- data/spec/http_client_spec.rb +1 -1
- data/spec/mongrel_http_server_spec.rb +1 -1
- data/spec/nonblocking_server_spec.rb +1 -1
- data/spec/processor_spec.rb +1 -1
- data/spec/serializer_spec.rb +1 -1
- data/spec/server_socket_spec.rb +2 -2
- data/spec/server_spec.rb +1 -2
- data/spec/socket_spec.rb +2 -2
- data/spec/socket_spec_shared.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/struct_spec.rb +1 -1
- data/spec/types_spec.rb +1 -1
- data/spec/union_spec.rb +1 -1
- data/spec/unix_socket_spec.rb +2 -2
- data/{debug_proto_test → test/debug_proto}/gen-rb/debug_proto_test_constants.rb +1 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/debug_proto_test_types.rb +56 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/empty_service.rb +1 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/inherited.rb +1 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/reverse_order_service.rb +1 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/service_for_exception_with_a_map.rb +1 -1
- data/{debug_proto_test → test/debug_proto}/gen-rb/srv.rb +1 -1
- metadata +143 -70
- data/InstalledFiles +0 -1
- data/Makefile +0 -512
- data/Makefile.am +0 -49
- data/Makefile.in +0 -512
- data/Manifest +0 -103
- data/Rakefile +0 -102
- data/script/proto_benchmark.rb +0 -121
- data/script/read_struct.rb +0 -43
- data/script/write_struct.rb +0 -30
- data/setup.rb +0 -1585
- data/thrift.gemspec +0 -30
- data/tmp/thrift-0.7.0.gem +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# Autogenerated by Thrift Compiler (0.
|
2
|
+
# Autogenerated by Thrift Compiler (0.8.0)
|
3
3
|
#
|
4
4
|
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
5
5
|
#
|
@@ -371,6 +371,23 @@ class CompactProtoTestStruct
|
|
371
371
|
::Thrift::Struct.generate_accessors self
|
372
372
|
end
|
373
373
|
|
374
|
+
class SingleMapTestStruct
|
375
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
376
|
+
I32_MAP = 1
|
377
|
+
|
378
|
+
FIELDS = {
|
379
|
+
I32_MAP => {:type => ::Thrift::Types::MAP, :name => 'i32_map', :key => {:type => ::Thrift::Types::I32}, :value => {:type => ::Thrift::Types::I32}}
|
380
|
+
}
|
381
|
+
|
382
|
+
def struct_fields; FIELDS; end
|
383
|
+
|
384
|
+
def validate
|
385
|
+
raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field i32_map is unset!') unless @i32_map
|
386
|
+
end
|
387
|
+
|
388
|
+
::Thrift::Struct.generate_accessors self
|
389
|
+
end
|
390
|
+
|
374
391
|
class ExceptionWithAMap < ::Thrift::Exception
|
375
392
|
include ::Thrift::Struct, ::Thrift::Struct_Union
|
376
393
|
BLAH = 1
|
@@ -703,3 +720,41 @@ class BreaksRubyCompactProtocol
|
|
703
720
|
::Thrift::Struct.generate_accessors self
|
704
721
|
end
|
705
722
|
|
723
|
+
class TupleProtocolTestStruct
|
724
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
725
|
+
FIELD1 = -1
|
726
|
+
FIELD2 = -2
|
727
|
+
FIELD3 = -3
|
728
|
+
FIELD4 = -4
|
729
|
+
FIELD5 = -5
|
730
|
+
FIELD6 = -6
|
731
|
+
FIELD7 = -7
|
732
|
+
FIELD8 = -8
|
733
|
+
FIELD9 = -9
|
734
|
+
FIELD10 = -10
|
735
|
+
FIELD11 = -11
|
736
|
+
FIELD12 = -12
|
737
|
+
|
738
|
+
FIELDS = {
|
739
|
+
FIELD1 => {:type => ::Thrift::Types::I32, :name => 'field1', :optional => true},
|
740
|
+
FIELD2 => {:type => ::Thrift::Types::I32, :name => 'field2', :optional => true},
|
741
|
+
FIELD3 => {:type => ::Thrift::Types::I32, :name => 'field3', :optional => true},
|
742
|
+
FIELD4 => {:type => ::Thrift::Types::I32, :name => 'field4', :optional => true},
|
743
|
+
FIELD5 => {:type => ::Thrift::Types::I32, :name => 'field5', :optional => true},
|
744
|
+
FIELD6 => {:type => ::Thrift::Types::I32, :name => 'field6', :optional => true},
|
745
|
+
FIELD7 => {:type => ::Thrift::Types::I32, :name => 'field7', :optional => true},
|
746
|
+
FIELD8 => {:type => ::Thrift::Types::I32, :name => 'field8', :optional => true},
|
747
|
+
FIELD9 => {:type => ::Thrift::Types::I32, :name => 'field9', :optional => true},
|
748
|
+
FIELD10 => {:type => ::Thrift::Types::I32, :name => 'field10', :optional => true},
|
749
|
+
FIELD11 => {:type => ::Thrift::Types::I32, :name => 'field11', :optional => true},
|
750
|
+
FIELD12 => {:type => ::Thrift::Types::I32, :name => 'field12', :optional => true}
|
751
|
+
}
|
752
|
+
|
753
|
+
def struct_fields; FIELDS; end
|
754
|
+
|
755
|
+
def validate
|
756
|
+
end
|
757
|
+
|
758
|
+
::Thrift::Struct.generate_accessors self
|
759
|
+
end
|
760
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thrift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 63
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 8
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.8.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Thrift Developers
|
@@ -15,9 +15,52 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
dependencies:
|
20
|
-
|
18
|
+
date: 2011-11-26 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rake
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: rspec
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - "="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 31
|
43
|
+
segments:
|
44
|
+
- 1
|
45
|
+
- 3
|
46
|
+
- 2
|
47
|
+
version: 1.3.2
|
48
|
+
type: :development
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: mongrel
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
type: :development
|
63
|
+
version_requirements: *id003
|
21
64
|
description: Ruby bindings for the Apache Thrift RPC system
|
22
65
|
email:
|
23
66
|
- dev@thrift.apache.org
|
@@ -29,23 +72,24 @@ extra_rdoc_files:
|
|
29
72
|
- CHANGELOG
|
30
73
|
- README
|
31
74
|
- ext/binary_protocol_accelerated.c
|
32
|
-
- ext/binary_protocol_accelerated.h
|
33
75
|
- ext/compact_protocol.c
|
76
|
+
- ext/memory_buffer.c
|
77
|
+
- ext/protocol.c
|
78
|
+
- ext/strlcpy.c
|
79
|
+
- ext/struct.c
|
80
|
+
- ext/thrift_native.c
|
81
|
+
- ext/binary_protocol_accelerated.h
|
34
82
|
- ext/compact_protocol.h
|
35
83
|
- ext/constants.h
|
36
|
-
- ext/extconf.rb
|
37
84
|
- ext/macros.h
|
38
|
-
- ext/memory_buffer.c
|
39
85
|
- ext/memory_buffer.h
|
40
|
-
- ext/protocol.c
|
41
86
|
- ext/protocol.h
|
42
|
-
- ext/
|
87
|
+
- ext/strlcpy.h
|
43
88
|
- ext/struct.h
|
44
|
-
- ext/
|
45
|
-
- lib/thrift.rb
|
89
|
+
- ext/extconf.rb
|
46
90
|
- lib/thrift/client.rb
|
47
|
-
- lib/thrift/core_ext.rb
|
48
91
|
- lib/thrift/core_ext/fixnum.rb
|
92
|
+
- lib/thrift/core_ext.rb
|
49
93
|
- lib/thrift/exceptions.rb
|
50
94
|
- lib/thrift/processor.rb
|
51
95
|
- lib/thrift/protocol/base_protocol.rb
|
@@ -76,48 +120,11 @@ extra_rdoc_files:
|
|
76
120
|
- lib/thrift/transport/unix_socket.rb
|
77
121
|
- lib/thrift/types.rb
|
78
122
|
- lib/thrift/union.rb
|
79
|
-
files:
|
80
|
-
- CHANGELOG
|
81
|
-
- InstalledFiles
|
82
|
-
- Makefile
|
83
|
-
- Makefile.am
|
84
|
-
- Makefile.in
|
85
|
-
- Manifest
|
86
|
-
- README
|
87
|
-
- Rakefile
|
88
|
-
- benchmark/Benchmark.thrift
|
89
|
-
- benchmark/benchmark.rb
|
90
|
-
- benchmark/client.rb
|
91
|
-
- benchmark/gen-rb/benchmark_constants.rb
|
92
|
-
- benchmark/gen-rb/benchmark_service.rb
|
93
|
-
- benchmark/gen-rb/benchmark_types.rb
|
94
|
-
- benchmark/server.rb
|
95
|
-
- benchmark/thin_server.rb
|
96
|
-
- debug_proto_test/gen-rb/debug_proto_test_constants.rb
|
97
|
-
- debug_proto_test/gen-rb/debug_proto_test_types.rb
|
98
|
-
- debug_proto_test/gen-rb/empty_service.rb
|
99
|
-
- debug_proto_test/gen-rb/inherited.rb
|
100
|
-
- debug_proto_test/gen-rb/reverse_order_service.rb
|
101
|
-
- debug_proto_test/gen-rb/service_for_exception_with_a_map.rb
|
102
|
-
- debug_proto_test/gen-rb/srv.rb
|
103
|
-
- ext/binary_protocol_accelerated.c
|
104
|
-
- ext/binary_protocol_accelerated.h
|
105
|
-
- ext/compact_protocol.c
|
106
|
-
- ext/compact_protocol.h
|
107
|
-
- ext/constants.h
|
108
|
-
- ext/extconf.rb
|
109
|
-
- ext/macros.h
|
110
|
-
- ext/memory_buffer.c
|
111
|
-
- ext/memory_buffer.h
|
112
|
-
- ext/protocol.c
|
113
|
-
- ext/protocol.h
|
114
|
-
- ext/struct.c
|
115
|
-
- ext/struct.h
|
116
|
-
- ext/thrift_native.c
|
117
123
|
- lib/thrift.rb
|
124
|
+
files:
|
118
125
|
- lib/thrift/client.rb
|
119
|
-
- lib/thrift/core_ext.rb
|
120
126
|
- lib/thrift/core_ext/fixnum.rb
|
127
|
+
- lib/thrift/core_ext.rb
|
121
128
|
- lib/thrift/exceptions.rb
|
122
129
|
- lib/thrift/processor.rb
|
123
130
|
- lib/thrift/protocol/base_protocol.rb
|
@@ -148,11 +155,7 @@ files:
|
|
148
155
|
- lib/thrift/transport/unix_socket.rb
|
149
156
|
- lib/thrift/types.rb
|
150
157
|
- lib/thrift/union.rb
|
151
|
-
-
|
152
|
-
- script/read_struct.rb
|
153
|
-
- script/write_struct.rb
|
154
|
-
- setup.rb
|
155
|
-
- spec/ThriftSpec.thrift
|
158
|
+
- lib/thrift.rb
|
156
159
|
- spec/base_protocol_spec.rb
|
157
160
|
- spec/base_transport_spec.rb
|
158
161
|
- spec/binary_protocol_accelerated_spec.rb
|
@@ -175,14 +178,46 @@ files:
|
|
175
178
|
- spec/socket_spec_shared.rb
|
176
179
|
- spec/spec_helper.rb
|
177
180
|
- spec/struct_spec.rb
|
181
|
+
- spec/ThriftSpec.thrift
|
178
182
|
- spec/types_spec.rb
|
179
183
|
- spec/union_spec.rb
|
180
184
|
- spec/unix_socket_spec.rb
|
181
|
-
-
|
182
|
-
-
|
185
|
+
- CHANGELOG
|
186
|
+
- README
|
187
|
+
- ext/binary_protocol_accelerated.c
|
188
|
+
- ext/compact_protocol.c
|
189
|
+
- ext/memory_buffer.c
|
190
|
+
- ext/protocol.c
|
191
|
+
- ext/strlcpy.c
|
192
|
+
- ext/struct.c
|
193
|
+
- ext/thrift_native.c
|
194
|
+
- ext/binary_protocol_accelerated.h
|
195
|
+
- ext/compact_protocol.h
|
196
|
+
- ext/constants.h
|
197
|
+
- ext/macros.h
|
198
|
+
- ext/memory_buffer.h
|
199
|
+
- ext/protocol.h
|
200
|
+
- ext/strlcpy.h
|
201
|
+
- ext/struct.h
|
202
|
+
- ext/extconf.rb
|
203
|
+
- test/debug_proto/gen-rb/debug_proto_test_constants.rb
|
204
|
+
- test/debug_proto/gen-rb/debug_proto_test_types.rb
|
205
|
+
- test/debug_proto/gen-rb/empty_service.rb
|
206
|
+
- test/debug_proto/gen-rb/inherited.rb
|
207
|
+
- test/debug_proto/gen-rb/reverse_order_service.rb
|
208
|
+
- test/debug_proto/gen-rb/service_for_exception_with_a_map.rb
|
209
|
+
- test/debug_proto/gen-rb/srv.rb
|
210
|
+
- benchmark/benchmark.rb
|
211
|
+
- benchmark/Benchmark.thrift
|
212
|
+
- benchmark/client.rb
|
213
|
+
- benchmark/gen-rb/benchmark_constants.rb
|
214
|
+
- benchmark/gen-rb/benchmark_service.rb
|
215
|
+
- benchmark/gen-rb/benchmark_types.rb
|
216
|
+
- benchmark/server.rb
|
217
|
+
- benchmark/thin_server.rb
|
183
218
|
homepage: http://thrift.apache.org
|
184
|
-
licenses:
|
185
|
-
|
219
|
+
licenses:
|
220
|
+
- Apache 2.0
|
186
221
|
post_install_message:
|
187
222
|
rdoc_options:
|
188
223
|
- --line-numbers
|
@@ -208,18 +243,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
243
|
requirements:
|
209
244
|
- - ">="
|
210
245
|
- !ruby/object:Gem::Version
|
211
|
-
hash:
|
246
|
+
hash: 3
|
212
247
|
segments:
|
213
|
-
- 1
|
214
|
-
- 2
|
215
248
|
- 0
|
216
|
-
version:
|
249
|
+
version: "0"
|
217
250
|
requirements: []
|
218
251
|
|
219
252
|
rubyforge_project: thrift
|
220
|
-
rubygems_version: 1.8.
|
253
|
+
rubygems_version: 1.8.11
|
221
254
|
signing_key:
|
222
255
|
specification_version: 3
|
223
|
-
summary: Ruby bindings for
|
224
|
-
test_files:
|
225
|
-
|
256
|
+
summary: Ruby bindings for Apache Thrift
|
257
|
+
test_files:
|
258
|
+
- test/debug_proto/gen-rb/debug_proto_test_constants.rb
|
259
|
+
- test/debug_proto/gen-rb/debug_proto_test_types.rb
|
260
|
+
- test/debug_proto/gen-rb/empty_service.rb
|
261
|
+
- test/debug_proto/gen-rb/inherited.rb
|
262
|
+
- test/debug_proto/gen-rb/reverse_order_service.rb
|
263
|
+
- test/debug_proto/gen-rb/service_for_exception_with_a_map.rb
|
264
|
+
- test/debug_proto/gen-rb/srv.rb
|
265
|
+
- spec/base_protocol_spec.rb
|
266
|
+
- spec/base_transport_spec.rb
|
267
|
+
- spec/binary_protocol_accelerated_spec.rb
|
268
|
+
- spec/binary_protocol_spec.rb
|
269
|
+
- spec/binary_protocol_spec_shared.rb
|
270
|
+
- spec/client_spec.rb
|
271
|
+
- spec/compact_protocol_spec.rb
|
272
|
+
- spec/exception_spec.rb
|
273
|
+
- spec/gen-rb/nonblocking_service.rb
|
274
|
+
- spec/gen-rb/thrift_spec_constants.rb
|
275
|
+
- spec/gen-rb/thrift_spec_types.rb
|
276
|
+
- spec/http_client_spec.rb
|
277
|
+
- spec/mongrel_http_server_spec.rb
|
278
|
+
- spec/nonblocking_server_spec.rb
|
279
|
+
- spec/processor_spec.rb
|
280
|
+
- spec/serializer_spec.rb
|
281
|
+
- spec/server_socket_spec.rb
|
282
|
+
- spec/server_spec.rb
|
283
|
+
- spec/socket_spec.rb
|
284
|
+
- spec/socket_spec_shared.rb
|
285
|
+
- spec/spec_helper.rb
|
286
|
+
- spec/struct_spec.rb
|
287
|
+
- spec/ThriftSpec.thrift
|
288
|
+
- spec/types_spec.rb
|
289
|
+
- spec/union_spec.rb
|
290
|
+
- spec/unix_socket_spec.rb
|
291
|
+
- benchmark/benchmark.rb
|
292
|
+
- benchmark/Benchmark.thrift
|
293
|
+
- benchmark/client.rb
|
294
|
+
- benchmark/gen-rb/benchmark_constants.rb
|
295
|
+
- benchmark/gen-rb/benchmark_service.rb
|
296
|
+
- benchmark/gen-rb/benchmark_types.rb
|
297
|
+
- benchmark/server.rb
|
298
|
+
- benchmark/thin_server.rb
|
data/InstalledFiles
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
/Library/Ruby/Site/1.8/universal-darwin10.0/./thrift_native.bundle
|
data/Makefile
DELETED
@@ -1,512 +0,0 @@
|
|
1
|
-
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
2
|
-
# lib/rb/Makefile. Generated from Makefile.in by configure.
|
3
|
-
|
4
|
-
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
-
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
6
|
-
# This Makefile.in is free software; the Free Software Foundation
|
7
|
-
# gives unlimited permission to copy and/or distribute it,
|
8
|
-
# with or without modifications, as long as this notice is preserved.
|
9
|
-
|
10
|
-
# This program is distributed in the hope that it will be useful,
|
11
|
-
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
-
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
-
# PARTICULAR PURPOSE.
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
#
|
18
|
-
# Licensed to the Apache Software Foundation (ASF) under one
|
19
|
-
# or more contributor license agreements. See the NOTICE file
|
20
|
-
# distributed with this work for additional information
|
21
|
-
# regarding copyright ownership. The ASF licenses this file
|
22
|
-
# to you under the Apache License, Version 2.0 (the
|
23
|
-
# "License"); you may not use this file except in compliance
|
24
|
-
# with the License. You may obtain a copy of the License at
|
25
|
-
#
|
26
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
27
|
-
#
|
28
|
-
# Unless required by applicable law or agreed to in writing,
|
29
|
-
# software distributed under the License is distributed on an
|
30
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
31
|
-
# KIND, either express or implied. See the License for the
|
32
|
-
# specific language governing permissions and limitations
|
33
|
-
# under the License.
|
34
|
-
#
|
35
|
-
srcdir = .
|
36
|
-
top_srcdir = ../..
|
37
|
-
|
38
|
-
pkgdatadir = $(datadir)/thrift
|
39
|
-
pkglibdir = $(libdir)/thrift
|
40
|
-
pkgincludedir = $(includedir)/thrift
|
41
|
-
top_builddir = ../..
|
42
|
-
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
43
|
-
INSTALL = /usr/bin/install -c
|
44
|
-
install_sh_DATA = $(install_sh) -c -m 644
|
45
|
-
install_sh_PROGRAM = $(install_sh) -c
|
46
|
-
install_sh_SCRIPT = $(install_sh) -c
|
47
|
-
INSTALL_HEADER = $(INSTALL_DATA)
|
48
|
-
transform = $(program_transform_name)
|
49
|
-
NORMAL_INSTALL = :
|
50
|
-
PRE_INSTALL = :
|
51
|
-
POST_INSTALL = :
|
52
|
-
NORMAL_UNINSTALL = :
|
53
|
-
PRE_UNINSTALL = :
|
54
|
-
POST_UNINSTALL = :
|
55
|
-
build_triplet = i686-apple-darwin10.8.0
|
56
|
-
host_triplet = i686-apple-darwin10.8.0
|
57
|
-
subdir = lib/rb
|
58
|
-
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
59
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
60
|
-
am__aclocal_m4_deps = $(top_srcdir)/aclocal/ax_boost_base.m4 \
|
61
|
-
$(top_srcdir)/aclocal/ax_javac_and_java.m4 \
|
62
|
-
$(top_srcdir)/aclocal/ax_lib_event.m4 \
|
63
|
-
$(top_srcdir)/aclocal/ax_lib_zlib.m4 \
|
64
|
-
$(top_srcdir)/aclocal/ax_prog_perl_modules.m4 \
|
65
|
-
$(top_srcdir)/aclocal/ax_signed_right_shift.m4 \
|
66
|
-
$(top_srcdir)/aclocal/ax_thrift_internal.m4 \
|
67
|
-
$(top_srcdir)/configure.ac
|
68
|
-
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
69
|
-
$(ACLOCAL_M4)
|
70
|
-
mkinstalldirs = $(install_sh) -d
|
71
|
-
CONFIG_HEADER = $(top_builddir)/config.h
|
72
|
-
CONFIG_CLEAN_FILES =
|
73
|
-
SOURCES =
|
74
|
-
DIST_SOURCES =
|
75
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
76
|
-
ACLOCAL = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run aclocal-1.9
|
77
|
-
ALLOCA =
|
78
|
-
AMDEP_FALSE = #
|
79
|
-
AMDEP_TRUE =
|
80
|
-
AMTAR = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run tar
|
81
|
-
AMX_HAVE_LIBEVENT_FALSE = #
|
82
|
-
AMX_HAVE_LIBEVENT_TRUE =
|
83
|
-
AMX_HAVE_ZLIB_FALSE = #
|
84
|
-
AMX_HAVE_ZLIB_TRUE =
|
85
|
-
ANT = /usr/bin/ant
|
86
|
-
ANT_FLAGS =
|
87
|
-
AR = ar
|
88
|
-
AUTOCONF = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run autoconf
|
89
|
-
AUTOHEADER = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run autoheader
|
90
|
-
AUTOMAKE = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run automake-1.9
|
91
|
-
AWK = awk
|
92
|
-
BOOST_CPPFLAGS = -I/usr/local/include
|
93
|
-
BOOST_LDFLAGS = -L/usr/local/lib
|
94
|
-
BOOST_ROOT_PATH = /usr/local
|
95
|
-
CABAL = true
|
96
|
-
CABAL_CONFIGURE_FLAGS =
|
97
|
-
CC = gcc
|
98
|
-
CCDEPMODE = depmode=gcc3
|
99
|
-
CFLAGS = -g -O2
|
100
|
-
CLASSPATH =
|
101
|
-
CPP = gcc -E
|
102
|
-
CPPFLAGS =
|
103
|
-
CXX = g++
|
104
|
-
CXXCPP = g++ -E
|
105
|
-
CXXDEPMODE = depmode=gcc3
|
106
|
-
CXXFLAGS = -g -O2
|
107
|
-
CYGPATH_W = echo
|
108
|
-
DEFS = -DHAVE_CONFIG_H
|
109
|
-
DEPDIR = .deps
|
110
|
-
ECHO = /bin/echo
|
111
|
-
ECHO_C = \c
|
112
|
-
ECHO_N =
|
113
|
-
ECHO_T =
|
114
|
-
EGREP = /usr/bin/grep -E
|
115
|
-
ENABLE_COVERAGE = 2
|
116
|
-
ERL =
|
117
|
-
ERLANG_INSTALL_LIB_DIR =
|
118
|
-
ERLANG_INSTALL_LIB_DIR_thrift =
|
119
|
-
ERLANG_LIB_DIR =
|
120
|
-
ERLC =
|
121
|
-
ERLCFLAGS =
|
122
|
-
EXEEXT =
|
123
|
-
F77 =
|
124
|
-
FFLAGS =
|
125
|
-
GCOV_CFLAGS =
|
126
|
-
GCOV_CXXFLAGS =
|
127
|
-
GCOV_LDFLAGS =
|
128
|
-
GLIB_CFLAGS =
|
129
|
-
GLIB_LIBS =
|
130
|
-
GOARCH = amd64
|
131
|
-
GOBIN = /usr/local/bin
|
132
|
-
GOBJECT_CFLAGS =
|
133
|
-
GOBJECT_LIBS =
|
134
|
-
GOINSTALL = /usr/local/bin/goinstall
|
135
|
-
GOMAKE = /usr/local/bin/gomake
|
136
|
-
GOROOT = /usr/local/share/go
|
137
|
-
GO_C = /usr/local/bin/6g
|
138
|
-
GO_L = /usr/local/bin/6l
|
139
|
-
GREP = /usr/bin/grep
|
140
|
-
HAVE_RSPEC_FALSE =
|
141
|
-
HAVE_RSPEC_TRUE = #
|
142
|
-
INSTALLDIRS = vendor
|
143
|
-
INSTALL_DATA = ${INSTALL} -m 644
|
144
|
-
INSTALL_PROGRAM = ${INSTALL}
|
145
|
-
INSTALL_SCRIPT = ${INSTALL}
|
146
|
-
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
147
|
-
JAVA_PREFIX = /usr/local/lib
|
148
|
-
LDFLAGS =
|
149
|
-
LEX = flex
|
150
|
-
LEXLIB = -lfl
|
151
|
-
LEX_OUTPUT_ROOT = lex.yy
|
152
|
-
LIBEVENT_CPPFLAGS =
|
153
|
-
LIBEVENT_LDFLAGS =
|
154
|
-
LIBEVENT_LIBS = -levent
|
155
|
-
LIBOBJS = ${LIBOBJDIR}lstat$U.o
|
156
|
-
LIBS = -lssl -lpthread
|
157
|
-
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
158
|
-
LN_S = ln -s
|
159
|
-
LTLIBOBJS = ${LIBOBJDIR}lstat$U.lo
|
160
|
-
MAKEINFO = ${SHELL} /Users/jake/Downloads/thrift/thrift-0.7.0/missing --run makeinfo
|
161
|
-
MKDIR_P = ../.././install-sh -c -d
|
162
|
-
MONO_CFLAGS =
|
163
|
-
MONO_LIBS =
|
164
|
-
NET_2_0_FALSE = #
|
165
|
-
NET_2_0_TRUE =
|
166
|
-
OBJEXT = o
|
167
|
-
PACKAGE = thrift
|
168
|
-
PACKAGE_BUGREPORT =
|
169
|
-
PACKAGE_NAME = thrift
|
170
|
-
PACKAGE_STRING = thrift 0.7.0
|
171
|
-
PACKAGE_TARNAME = thrift
|
172
|
-
PACKAGE_URL =
|
173
|
-
PACKAGE_VERSION = 0.7.0
|
174
|
-
PATH_SEPARATOR = :
|
175
|
-
PERL = /usr/bin/perl
|
176
|
-
PERL_PREFIX = /usr/local
|
177
|
-
PHP = /usr/bin/php
|
178
|
-
PHP_CONFIG = /usr/bin/php-config
|
179
|
-
PHP_CONFIG_PREFIX = /etc/php.d
|
180
|
-
PHP_PREFIX = /usr/lib/php
|
181
|
-
PKG_CONFIG =
|
182
|
-
PYTHON = /usr/bin/python
|
183
|
-
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
184
|
-
PYTHON_PLATFORM = darwin
|
185
|
-
PYTHON_PREFIX = ${prefix}
|
186
|
-
PYTHON_VERSION = 2.6
|
187
|
-
PY_PREFIX = /usr
|
188
|
-
RANLIB = ranlib
|
189
|
-
RSPEC =
|
190
|
-
RUBY = /usr/bin/ruby
|
191
|
-
RUBY_PREFIX =
|
192
|
-
RUNHASKELL = true
|
193
|
-
SED = /usr/bin/sed
|
194
|
-
SET_MAKE =
|
195
|
-
SHELL = /bin/sh
|
196
|
-
STRIP = strip
|
197
|
-
THRIFT_GEN_as3_FALSE = #
|
198
|
-
THRIFT_GEN_as3_TRUE =
|
199
|
-
THRIFT_GEN_c_glib_FALSE = #
|
200
|
-
THRIFT_GEN_c_glib_TRUE =
|
201
|
-
THRIFT_GEN_cocoa_FALSE = #
|
202
|
-
THRIFT_GEN_cocoa_TRUE =
|
203
|
-
THRIFT_GEN_cpp_FALSE = #
|
204
|
-
THRIFT_GEN_cpp_TRUE =
|
205
|
-
THRIFT_GEN_csharp_FALSE = #
|
206
|
-
THRIFT_GEN_csharp_TRUE =
|
207
|
-
THRIFT_GEN_erl_FALSE = #
|
208
|
-
THRIFT_GEN_erl_TRUE =
|
209
|
-
THRIFT_GEN_go_FALSE = #
|
210
|
-
THRIFT_GEN_go_TRUE =
|
211
|
-
THRIFT_GEN_hs_FALSE = #
|
212
|
-
THRIFT_GEN_hs_TRUE =
|
213
|
-
THRIFT_GEN_html_FALSE = #
|
214
|
-
THRIFT_GEN_html_TRUE =
|
215
|
-
THRIFT_GEN_java_FALSE = #
|
216
|
-
THRIFT_GEN_java_TRUE =
|
217
|
-
THRIFT_GEN_javame_FALSE = #
|
218
|
-
THRIFT_GEN_javame_TRUE =
|
219
|
-
THRIFT_GEN_js_FALSE = #
|
220
|
-
THRIFT_GEN_js_TRUE =
|
221
|
-
THRIFT_GEN_ocaml_FALSE = #
|
222
|
-
THRIFT_GEN_ocaml_TRUE =
|
223
|
-
THRIFT_GEN_perl_FALSE = #
|
224
|
-
THRIFT_GEN_perl_TRUE =
|
225
|
-
THRIFT_GEN_php_FALSE = #
|
226
|
-
THRIFT_GEN_php_TRUE =
|
227
|
-
THRIFT_GEN_py_FALSE = #
|
228
|
-
THRIFT_GEN_py_TRUE =
|
229
|
-
THRIFT_GEN_rb_FALSE = #
|
230
|
-
THRIFT_GEN_rb_TRUE =
|
231
|
-
THRIFT_GEN_st_FALSE = #
|
232
|
-
THRIFT_GEN_st_TRUE =
|
233
|
-
THRIFT_GEN_xsd_FALSE = #
|
234
|
-
THRIFT_GEN_xsd_TRUE =
|
235
|
-
TRIAL = /usr/bin/trial
|
236
|
-
VERSION = 0.7.0
|
237
|
-
WITH_CPP_FALSE = #
|
238
|
-
WITH_CPP_TRUE =
|
239
|
-
WITH_C_GLIB_FALSE =
|
240
|
-
WITH_C_GLIB_TRUE = #
|
241
|
-
WITH_ERLANG_FALSE =
|
242
|
-
WITH_ERLANG_TRUE = #
|
243
|
-
WITH_GO_FALSE =
|
244
|
-
WITH_GO_TRUE = #
|
245
|
-
WITH_HASKELL_FALSE =
|
246
|
-
WITH_HASKELL_TRUE = #
|
247
|
-
WITH_JAVA_FALSE = #
|
248
|
-
WITH_JAVA_TRUE =
|
249
|
-
WITH_MONO_FALSE =
|
250
|
-
WITH_MONO_TRUE = #
|
251
|
-
WITH_PERL_FALSE = #
|
252
|
-
WITH_PERL_TRUE =
|
253
|
-
WITH_PHP_EXTENSION_FALSE = #
|
254
|
-
WITH_PHP_EXTENSION_TRUE =
|
255
|
-
WITH_PHP_FALSE = #
|
256
|
-
WITH_PHP_TRUE =
|
257
|
-
WITH_PYTHON_FALSE = #
|
258
|
-
WITH_PYTHON_TRUE =
|
259
|
-
WITH_RUBY_FALSE = #
|
260
|
-
WITH_RUBY_TRUE =
|
261
|
-
YACC = bison -y
|
262
|
-
YFLAGS =
|
263
|
-
ZLIB_CPPFLAGS =
|
264
|
-
ZLIB_LDFLAGS =
|
265
|
-
ZLIB_LIBS = -lz
|
266
|
-
ac_ct_CC = gcc
|
267
|
-
ac_ct_CXX = g++
|
268
|
-
ac_ct_F77 =
|
269
|
-
am__fastdepCC_FALSE = #
|
270
|
-
am__fastdepCC_TRUE =
|
271
|
-
am__fastdepCXX_FALSE = #
|
272
|
-
am__fastdepCXX_TRUE =
|
273
|
-
am__include = include
|
274
|
-
am__leading_dot = .
|
275
|
-
am__quote =
|
276
|
-
am__tar = tar --format=ustar -chf - "$$tardir"
|
277
|
-
am__untar = tar -xf -
|
278
|
-
bindir = ${exec_prefix}/bin
|
279
|
-
build = i686-apple-darwin10.8.0
|
280
|
-
build_alias =
|
281
|
-
build_cpu = i686
|
282
|
-
build_os = darwin10.8.0
|
283
|
-
build_vendor = apple
|
284
|
-
datadir = ${datarootdir}
|
285
|
-
datarootdir = ${prefix}/share
|
286
|
-
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
287
|
-
dvidir = ${docdir}
|
288
|
-
exec_prefix = ${prefix}
|
289
|
-
host = i686-apple-darwin10.8.0
|
290
|
-
host_alias =
|
291
|
-
host_cpu = i686
|
292
|
-
host_os = darwin10.8.0
|
293
|
-
host_vendor = apple
|
294
|
-
htmldir = ${docdir}
|
295
|
-
includedir = ${prefix}/include
|
296
|
-
infodir = ${datarootdir}/info
|
297
|
-
install_sh = /Users/jake/Downloads/thrift/thrift-0.7.0/install-sh
|
298
|
-
libdir = ${exec_prefix}/lib
|
299
|
-
libexecdir = ${exec_prefix}/libexec
|
300
|
-
localedir = ${datarootdir}/locale
|
301
|
-
localstatedir = ${prefix}/var
|
302
|
-
mandir = ${datarootdir}/man
|
303
|
-
mkdir_p = $(install_sh) -d
|
304
|
-
oldincludedir = /usr/include
|
305
|
-
pdfdir = ${docdir}
|
306
|
-
pkgpyexecdir = ${pyexecdir}/thrift
|
307
|
-
pkgpythondir = ${pythondir}/thrift
|
308
|
-
prefix = /usr/local
|
309
|
-
program_transform_name = s,x,x,
|
310
|
-
psdir = ${docdir}
|
311
|
-
pyexecdir = ${exec_prefix}/lib/python2.6/site-packages
|
312
|
-
pythondir = ${prefix}/lib/python2.6/site-packages
|
313
|
-
sbindir = ${exec_prefix}/sbin
|
314
|
-
sharedstatedir = ${prefix}/com
|
315
|
-
subdirs = lib/php/src/ext/thrift_protocol
|
316
|
-
sysconfdir = ${prefix}/etc
|
317
|
-
target_alias =
|
318
|
-
EXTRA_DIST = \
|
319
|
-
CHANGELOG \
|
320
|
-
Rakefile \
|
321
|
-
Manifest \
|
322
|
-
setup.rb \
|
323
|
-
lib \
|
324
|
-
ext \
|
325
|
-
benchmark \
|
326
|
-
script \
|
327
|
-
spec
|
328
|
-
|
329
|
-
all: all-am
|
330
|
-
|
331
|
-
.SUFFIXES:
|
332
|
-
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
333
|
-
@for dep in $?; do \
|
334
|
-
case '$(am__configure_deps)' in \
|
335
|
-
*$$dep*) \
|
336
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
337
|
-
&& exit 0; \
|
338
|
-
exit 1;; \
|
339
|
-
esac; \
|
340
|
-
done; \
|
341
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/rb/Makefile'; \
|
342
|
-
cd $(top_srcdir) && \
|
343
|
-
$(AUTOMAKE) --foreign lib/rb/Makefile
|
344
|
-
.PRECIOUS: Makefile
|
345
|
-
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
346
|
-
@case '$?' in \
|
347
|
-
*config.status*) \
|
348
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
349
|
-
*) \
|
350
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
351
|
-
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
352
|
-
esac;
|
353
|
-
|
354
|
-
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
355
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
356
|
-
|
357
|
-
$(top_srcdir)/configure: $(am__configure_deps)
|
358
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
359
|
-
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
360
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
361
|
-
|
362
|
-
mostlyclean-libtool:
|
363
|
-
-rm -f *.lo
|
364
|
-
|
365
|
-
clean-libtool:
|
366
|
-
-rm -rf .libs _libs
|
367
|
-
|
368
|
-
distclean-libtool:
|
369
|
-
-rm -f libtool
|
370
|
-
uninstall-info-am:
|
371
|
-
tags: TAGS
|
372
|
-
TAGS:
|
373
|
-
|
374
|
-
ctags: CTAGS
|
375
|
-
CTAGS:
|
376
|
-
|
377
|
-
|
378
|
-
distdir: $(DISTFILES)
|
379
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
380
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
381
|
-
list='$(DISTFILES)'; for file in $$list; do \
|
382
|
-
case $$file in \
|
383
|
-
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
384
|
-
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
385
|
-
esac; \
|
386
|
-
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
387
|
-
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
388
|
-
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
389
|
-
dir="/$$dir"; \
|
390
|
-
$(mkdir_p) "$(distdir)$$dir"; \
|
391
|
-
else \
|
392
|
-
dir=''; \
|
393
|
-
fi; \
|
394
|
-
if test -d $$d/$$file; then \
|
395
|
-
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
396
|
-
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
397
|
-
fi; \
|
398
|
-
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
399
|
-
else \
|
400
|
-
test -f $(distdir)/$$file \
|
401
|
-
|| cp -p $$d/$$file $(distdir)/$$file \
|
402
|
-
|| exit 1; \
|
403
|
-
fi; \
|
404
|
-
done
|
405
|
-
check-am: all-am
|
406
|
-
$(MAKE) $(AM_MAKEFLAGS) check-local
|
407
|
-
check: check-am
|
408
|
-
all-am: Makefile all-local
|
409
|
-
installdirs:
|
410
|
-
install: install-am
|
411
|
-
install-exec: install-exec-am
|
412
|
-
install-data: install-data-am
|
413
|
-
uninstall: uninstall-am
|
414
|
-
|
415
|
-
install-am: all-am
|
416
|
-
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
417
|
-
|
418
|
-
installcheck: installcheck-am
|
419
|
-
install-strip:
|
420
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
421
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
422
|
-
`test -z '$(STRIP)' || \
|
423
|
-
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
424
|
-
mostlyclean-generic:
|
425
|
-
|
426
|
-
clean-generic:
|
427
|
-
|
428
|
-
distclean-generic:
|
429
|
-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
430
|
-
|
431
|
-
maintainer-clean-generic:
|
432
|
-
@echo "This command is intended for maintainers to use"
|
433
|
-
@echo "it deletes files that may require special tools to rebuild."
|
434
|
-
clean: clean-am
|
435
|
-
|
436
|
-
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
437
|
-
|
438
|
-
distclean: distclean-am
|
439
|
-
-rm -f Makefile
|
440
|
-
distclean-am: clean-am distclean-generic distclean-libtool
|
441
|
-
|
442
|
-
dvi: dvi-am
|
443
|
-
|
444
|
-
dvi-am:
|
445
|
-
|
446
|
-
html: html-am
|
447
|
-
|
448
|
-
info: info-am
|
449
|
-
|
450
|
-
info-am:
|
451
|
-
|
452
|
-
install-data-am:
|
453
|
-
|
454
|
-
install-exec-am:
|
455
|
-
@$(NORMAL_INSTALL)
|
456
|
-
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
|
457
|
-
|
458
|
-
install-info: install-info-am
|
459
|
-
|
460
|
-
install-man:
|
461
|
-
|
462
|
-
installcheck-am:
|
463
|
-
|
464
|
-
maintainer-clean: maintainer-clean-am
|
465
|
-
-rm -f Makefile
|
466
|
-
maintainer-clean-am: distclean-am maintainer-clean-generic
|
467
|
-
|
468
|
-
mostlyclean: mostlyclean-am
|
469
|
-
|
470
|
-
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
471
|
-
|
472
|
-
pdf: pdf-am
|
473
|
-
|
474
|
-
pdf-am:
|
475
|
-
|
476
|
-
ps: ps-am
|
477
|
-
|
478
|
-
ps-am:
|
479
|
-
|
480
|
-
uninstall-am: uninstall-info-am
|
481
|
-
|
482
|
-
.PHONY: all all-am all-local check check-am check-local clean \
|
483
|
-
clean-generic clean-libtool clean-local distclean \
|
484
|
-
distclean-generic distclean-libtool distdir dvi dvi-am html \
|
485
|
-
html-am info info-am install install-am install-data \
|
486
|
-
install-data-am install-exec install-exec-am install-exec-hook \
|
487
|
-
install-info install-info-am install-man install-strip \
|
488
|
-
installcheck installcheck-am installdirs maintainer-clean \
|
489
|
-
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
490
|
-
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
|
491
|
-
uninstall-info-am
|
492
|
-
|
493
|
-
|
494
|
-
DESTDIR ?= /
|
495
|
-
|
496
|
-
all-local:
|
497
|
-
if [ -n "$(RUBY_PREFIX)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR)$(RUBY_PREFIX) --rbdir='$$libdir/ruby' --sodir='$$libdir/ruby' ; elif [ -n "$(DESTDIR)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR) ; else $(RUBY) setup.rb config ; fi
|
498
|
-
$(RUBY) setup.rb setup
|
499
|
-
|
500
|
-
install-exec-hook:
|
501
|
-
$(RUBY) setup.rb install --prefix=$(DESTDIR)
|
502
|
-
|
503
|
-
# Make sure this doesn't fail if Ruby is not configured.
|
504
|
-
clean-local:
|
505
|
-
RUBY=$(RUBY) ; if test -z "$$RUBY" ; then RUBY=: ; fi ; \
|
506
|
-
$$RUBY setup.rb clean
|
507
|
-
|
508
|
-
check-local: all
|
509
|
-
# rake spec
|
510
|
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
511
|
-
# Otherwise a system limit (for SysV at least) may be exceeded.
|
512
|
-
.NOEXPORT:
|