jameskilton-rice 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/COPYING +23 -0
  2. data/Doxyfile +1253 -0
  3. data/Makefile.am +26 -0
  4. data/Makefile.in +749 -0
  5. data/README +879 -0
  6. data/README.mingw +8 -0
  7. data/Rakefile +72 -0
  8. data/aclocal.m4 +891 -0
  9. data/bootstrap +8 -0
  10. data/config.guess +1526 -0
  11. data/config.sub +1658 -0
  12. data/configure +7668 -0
  13. data/configure.ac +52 -0
  14. data/depcomp +589 -0
  15. data/doxygen.ac +314 -0
  16. data/doxygen.am +186 -0
  17. data/extconf.rb +22 -0
  18. data/install-sh +519 -0
  19. data/missing +367 -0
  20. data/post-autoconf.rb +22 -0
  21. data/post-automake.rb +28 -0
  22. data/rice/Address_Registration_Guard.hpp +7 -0
  23. data/rice/Address_Registration_Guard.ipp +34 -0
  24. data/rice/Address_Registration_Guard_defn.hpp +65 -0
  25. data/rice/Allocation_Strategies.hpp +37 -0
  26. data/rice/Arg.hpp +8 -0
  27. data/rice/Arg_impl.hpp +116 -0
  28. data/rice/Arg_operators.cpp +21 -0
  29. data/rice/Arg_operators.hpp +18 -0
  30. data/rice/Array.hpp +220 -0
  31. data/rice/Array.ipp +263 -0
  32. data/rice/Builtin_Object.hpp +8 -0
  33. data/rice/Builtin_Object.ipp +50 -0
  34. data/rice/Builtin_Object_defn.hpp +51 -0
  35. data/rice/Class.cpp +57 -0
  36. data/rice/Class.hpp +8 -0
  37. data/rice/Class.ipp +6 -0
  38. data/rice/Class_defn.hpp +83 -0
  39. data/rice/Constructor.hpp +339 -0
  40. data/rice/Critical_Guard.hpp +40 -0
  41. data/rice/Critical_Guard.ipp +26 -0
  42. data/rice/Data_Object.hpp +8 -0
  43. data/rice/Data_Object.ipp +133 -0
  44. data/rice/Data_Object_defn.hpp +132 -0
  45. data/rice/Data_Type.cpp +21 -0
  46. data/rice/Data_Type.hpp +8 -0
  47. data/rice/Data_Type.ipp +306 -0
  48. data/rice/Data_Type_defn.hpp +219 -0
  49. data/rice/Data_Type_fwd.hpp +12 -0
  50. data/rice/Director.cpp +19 -0
  51. data/rice/Director.hpp +47 -0
  52. data/rice/Enum.hpp +118 -0
  53. data/rice/Enum.ipp +246 -0
  54. data/rice/Exception.cpp +59 -0
  55. data/rice/Exception.hpp +9 -0
  56. data/rice/Exception_Base.hpp +8 -0
  57. data/rice/Exception_Base.ipp +13 -0
  58. data/rice/Exception_Base_defn.hpp +27 -0
  59. data/rice/Exception_defn.hpp +69 -0
  60. data/rice/Hash.hpp +210 -0
  61. data/rice/Hash.ipp +338 -0
  62. data/rice/Identifier.cpp +8 -0
  63. data/rice/Identifier.hpp +50 -0
  64. data/rice/Identifier.ipp +33 -0
  65. data/rice/Jump_Tag.hpp +24 -0
  66. data/rice/Makefile.am +140 -0
  67. data/rice/Makefile.in +740 -0
  68. data/rice/Module.cpp +84 -0
  69. data/rice/Module.hpp +8 -0
  70. data/rice/Module.ipp +6 -0
  71. data/rice/Module_defn.hpp +88 -0
  72. data/rice/Module_impl.hpp +281 -0
  73. data/rice/Module_impl.ipp +348 -0
  74. data/rice/Object.cpp +153 -0
  75. data/rice/Object.hpp +8 -0
  76. data/rice/Object.ipp +19 -0
  77. data/rice/Object_defn.hpp +183 -0
  78. data/rice/Require_Guard.hpp +21 -0
  79. data/rice/String.cpp +94 -0
  80. data/rice/String.hpp +89 -0
  81. data/rice/Struct.cpp +117 -0
  82. data/rice/Struct.hpp +162 -0
  83. data/rice/Struct.ipp +26 -0
  84. data/rice/Symbol.cpp +25 -0
  85. data/rice/Symbol.hpp +66 -0
  86. data/rice/Symbol.ipp +44 -0
  87. data/rice/VM.cpp +92 -0
  88. data/rice/VM.hpp +32 -0
  89. data/rice/config.hpp +44 -0
  90. data/rice/config.hpp.in +43 -0
  91. data/rice/detail/Arguments.hpp +126 -0
  92. data/rice/detail/Auto_Function_Wrapper.hpp +861 -0
  93. data/rice/detail/Auto_Function_Wrapper.ipp +2929 -0
  94. data/rice/detail/Auto_Member_Function_Wrapper.hpp +828 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2326 -0
  96. data/rice/detail/Caster.hpp +63 -0
  97. data/rice/detail/Exception_Handler.hpp +8 -0
  98. data/rice/detail/Exception_Handler.ipp +68 -0
  99. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  100. data/rice/detail/Iterator.hpp +93 -0
  101. data/rice/detail/Not_Copyable.hpp +25 -0
  102. data/rice/detail/Wrapped_Function.hpp +33 -0
  103. data/rice/detail/check_ruby_type.cpp +27 -0
  104. data/rice/detail/check_ruby_type.hpp +23 -0
  105. data/rice/detail/creation_funcs.hpp +37 -0
  106. data/rice/detail/creation_funcs.ipp +36 -0
  107. data/rice/detail/default_allocation_func.hpp +23 -0
  108. data/rice/detail/default_allocation_func.ipp +11 -0
  109. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  110. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  111. data/rice/detail/demangle.cpp +56 -0
  112. data/rice/detail/demangle.hpp +19 -0
  113. data/rice/detail/env.hpp +19 -0
  114. data/rice/detail/from_ruby.hpp +43 -0
  115. data/rice/detail/from_ruby.ipp +60 -0
  116. data/rice/detail/method_data.cpp +392 -0
  117. data/rice/detail/method_data.cpp.rpp +301 -0
  118. data/rice/detail/method_data.hpp +21 -0
  119. data/rice/detail/mininode.cpp +1220 -0
  120. data/rice/detail/mininode.cpp.rpp +62 -0
  121. data/rice/detail/mininode.hpp +320 -0
  122. data/rice/detail/mininode.hpp.rpp +119 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +85 -0
  125. data/rice/detail/object_call.ipp +147 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/remove_const.hpp +21 -0
  129. data/rice/detail/ruby.hpp +89 -0
  130. data/rice/detail/ruby_version_code.hpp +6 -0
  131. data/rice/detail/ruby_version_code.hpp.in +6 -0
  132. data/rice/detail/rubysig.hpp +19 -0
  133. data/rice/detail/st.hpp +60 -0
  134. data/rice/detail/to_ruby.hpp +22 -0
  135. data/rice/detail/to_ruby.ipp +37 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +345 -0
  138. data/rice/detail/wrap_function.ipp +531 -0
  139. data/rice/generate_code.rb +1311 -0
  140. data/rice/global_function.hpp +33 -0
  141. data/rice/global_function.ipp +22 -0
  142. data/rice/protect.hpp +91 -0
  143. data/rice/protect.ipp +803 -0
  144. data/rice/ruby_mark.hpp +13 -0
  145. data/rice/ruby_try_catch.hpp +86 -0
  146. data/rice/rubypp.rb +97 -0
  147. data/rice/to_from_ruby.hpp +8 -0
  148. data/rice/to_from_ruby.ipp +299 -0
  149. data/rice/to_from_ruby_defn.hpp +71 -0
  150. data/ruby.ac +150 -0
  151. data/ruby/Makefile.am +1 -0
  152. data/ruby/Makefile.in +497 -0
  153. data/ruby/lib/Makefile.am +3 -0
  154. data/ruby/lib/Makefile.in +374 -0
  155. data/ruby/lib/mkmf-rice.rb.in +209 -0
  156. data/ruby/lib/version.rb +3 -0
  157. data/sample/Makefile.am +47 -0
  158. data/sample/Makefile.in +380 -0
  159. data/sample/enum/extconf.rb +3 -0
  160. data/sample/enum/sample_enum.cpp +54 -0
  161. data/sample/enum/test.rb +8 -0
  162. data/sample/inheritance/animals.cpp +98 -0
  163. data/sample/inheritance/extconf.rb +3 -0
  164. data/sample/inheritance/test.rb +7 -0
  165. data/sample/map/extconf.rb +3 -0
  166. data/sample/map/map.cpp +81 -0
  167. data/sample/map/test.rb +7 -0
  168. data/test/Makefile.am +49 -0
  169. data/test/Makefile.in +603 -0
  170. data/test/test_Address_Registration_Guard.cpp +43 -0
  171. data/test/test_Allocation_Strategies.cpp +77 -0
  172. data/test/test_Array.cpp +241 -0
  173. data/test/test_Builtin_Object.cpp +72 -0
  174. data/test/test_Class.cpp +398 -0
  175. data/test/test_Constructor.cpp +238 -0
  176. data/test/test_Critical_Guard.cpp +51 -0
  177. data/test/test_Data_Object.cpp +275 -0
  178. data/test/test_Data_Type.cpp +121 -0
  179. data/test/test_Director.cpp +225 -0
  180. data/test/test_Enum.cpp +162 -0
  181. data/test/test_Exception.cpp +46 -0
  182. data/test/test_Hash.cpp +195 -0
  183. data/test/test_Identifier.cpp +70 -0
  184. data/test/test_Jump_Tag.cpp +17 -0
  185. data/test/test_Module.cpp +428 -0
  186. data/test/test_Object.cpp +148 -0
  187. data/test/test_String.cpp +94 -0
  188. data/test/test_Struct.cpp +192 -0
  189. data/test/test_Symbol.cpp +63 -0
  190. data/test/test_To_From_Ruby.cpp +263 -0
  191. data/test/test_VM.cpp +26 -0
  192. data/test/test_global_functions.cpp +97 -0
  193. data/test/test_rice.rb +35 -0
  194. data/test/unittest.cpp +136 -0
  195. data/test/unittest.hpp +292 -0
  196. metadata +247 -0
@@ -0,0 +1,3 @@
1
+ rubydir = @RUBY_SITELIBDIR@
2
+
3
+ ruby_DATA = mkmf-rice.rb
@@ -0,0 +1,374 @@
1
+ # Makefile.in generated by automake 1.10.2 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008 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
+ @SET_MAKE@
16
+
17
+ VPATH = @srcdir@
18
+ pkgdatadir = $(datadir)/@PACKAGE@
19
+ pkglibdir = $(libdir)/@PACKAGE@
20
+ pkgincludedir = $(includedir)/@PACKAGE@
21
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
+ install_sh_DATA = $(install_sh) -c -m 644
23
+ install_sh_PROGRAM = $(install_sh) -c
24
+ install_sh_SCRIPT = $(install_sh) -c
25
+ INSTALL_HEADER = $(INSTALL_DATA)
26
+ transform = $(program_transform_name)
27
+ NORMAL_INSTALL = :
28
+ PRE_INSTALL = :
29
+ POST_INSTALL = :
30
+ NORMAL_UNINSTALL = :
31
+ PRE_UNINSTALL = :
32
+ POST_UNINSTALL = :
33
+ build_triplet = @build@
34
+ host_triplet = @host@
35
+ subdir = ruby/lib
36
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
37
+ $(srcdir)/mkmf-rice.rb.in
38
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
40
+ $(top_srcdir)/configure.ac
41
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
42
+ $(ACLOCAL_M4)
43
+ mkinstalldirs = $(install_sh) -d
44
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
45
+ CONFIG_CLEAN_FILES = mkmf-rice.rb
46
+ SOURCES =
47
+ DIST_SOURCES =
48
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
49
+ am__vpath_adj = case $$p in \
50
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
51
+ *) f=$$p;; \
52
+ esac;
53
+ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
54
+ am__installdirs = "$(DESTDIR)$(rubydir)"
55
+ rubyDATA_INSTALL = $(INSTALL_DATA)
56
+ DATA = $(ruby_DATA)
57
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
58
+ ACLOCAL = @ACLOCAL@
59
+ AMTAR = @AMTAR@
60
+ AUTOCONF = @AUTOCONF@
61
+ AUTOHEADER = @AUTOHEADER@
62
+ AUTOMAKE = @AUTOMAKE@
63
+ AWK = @AWK@
64
+ CPPFLAGS = @CPPFLAGS@
65
+ CXX = @CXX@
66
+ CXXDEPMODE = @CXXDEPMODE@
67
+ CXXFLAGS = @CXXFLAGS@
68
+ CYGPATH_W = @CYGPATH_W@
69
+ DEFS = @DEFS@
70
+ DEPDIR = @DEPDIR@
71
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
72
+ DX_CONFIG = @DX_CONFIG@
73
+ DX_DOCDIR = @DX_DOCDIR@
74
+ DX_DOT = @DX_DOT@
75
+ DX_DOXYGEN = @DX_DOXYGEN@
76
+ DX_DVIPS = @DX_DVIPS@
77
+ DX_EGREP = @DX_EGREP@
78
+ DX_ENV = @DX_ENV@
79
+ DX_FLAG_chi = @DX_FLAG_chi@
80
+ DX_FLAG_chm = @DX_FLAG_chm@
81
+ DX_FLAG_doc = @DX_FLAG_doc@
82
+ DX_FLAG_dot = @DX_FLAG_dot@
83
+ DX_FLAG_html = @DX_FLAG_html@
84
+ DX_FLAG_man = @DX_FLAG_man@
85
+ DX_FLAG_pdf = @DX_FLAG_pdf@
86
+ DX_FLAG_ps = @DX_FLAG_ps@
87
+ DX_FLAG_rtf = @DX_FLAG_rtf@
88
+ DX_FLAG_xml = @DX_FLAG_xml@
89
+ DX_HHC = @DX_HHC@
90
+ DX_LATEX = @DX_LATEX@
91
+ DX_MAKEINDEX = @DX_MAKEINDEX@
92
+ DX_PDFLATEX = @DX_PDFLATEX@
93
+ DX_PERL = @DX_PERL@
94
+ DX_PROJECT = @DX_PROJECT@
95
+ ECHO_C = @ECHO_C@
96
+ ECHO_N = @ECHO_N@
97
+ ECHO_T = @ECHO_T@
98
+ EXEEXT = @EXEEXT@
99
+ INSTALL = @INSTALL@
100
+ INSTALL_DATA = @INSTALL_DATA@
101
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
102
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
103
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
104
+ LDFLAGS = @LDFLAGS@
105
+ LIBOBJS = @LIBOBJS@
106
+ LIBS = @LIBS@
107
+ LTLIBOBJS = @LTLIBOBJS@
108
+ MAKEINFO = @MAKEINFO@
109
+ MKDIR_P = @MKDIR_P@
110
+ OBJEXT = @OBJEXT@
111
+ PACKAGE = @PACKAGE@
112
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
113
+ PACKAGE_NAME = @PACKAGE_NAME@
114
+ PACKAGE_STRING = @PACKAGE_STRING@
115
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
116
+ PACKAGE_VERSION = @PACKAGE_VERSION@
117
+ PATH_SEPARATOR = @PATH_SEPARATOR@
118
+ RANLIB = @RANLIB@
119
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
120
+ RICE_LDFLAGS = @RICE_LDFLAGS@
121
+ RICE_ROOT = @RICE_ROOT@
122
+ RICE_SAMPLES = @RICE_SAMPLES@
123
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
124
+ RUBY = @RUBY@
125
+ RUBY_CFLAGS = @RUBY_CFLAGS@
126
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
127
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
128
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
129
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
130
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
131
+ RUBY_LIBS = @RUBY_LIBS@
132
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
133
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
134
+ SET_MAKE = @SET_MAKE@
135
+ SHELL = @SHELL@
136
+ STRIP = @STRIP@
137
+ VERSION = @VERSION@
138
+ abs_builddir = @abs_builddir@
139
+ abs_srcdir = @abs_srcdir@
140
+ abs_top_builddir = @abs_top_builddir@
141
+ abs_top_srcdir = @abs_top_srcdir@
142
+ ac_ct_CXX = @ac_ct_CXX@
143
+ am__include = @am__include@
144
+ am__leading_dot = @am__leading_dot@
145
+ am__quote = @am__quote@
146
+ am__tar = @am__tar@
147
+ am__untar = @am__untar@
148
+ bindir = @bindir@
149
+ build = @build@
150
+ build_alias = @build_alias@
151
+ build_cpu = @build_cpu@
152
+ build_os = @build_os@
153
+ build_vendor = @build_vendor@
154
+ builddir = @builddir@
155
+ datadir = @datadir@
156
+ datarootdir = @datarootdir@
157
+ docdir = @docdir@
158
+ dvidir = @dvidir@
159
+ exec_prefix = @exec_prefix@
160
+ host = @host@
161
+ host_alias = @host_alias@
162
+ host_cpu = @host_cpu@
163
+ host_os = @host_os@
164
+ host_vendor = @host_vendor@
165
+ htmldir = @htmldir@
166
+ includedir = @includedir@
167
+ infodir = @infodir@
168
+ install_sh = @install_sh@
169
+ libdir = @libdir@
170
+ libexecdir = @libexecdir@
171
+ localedir = @localedir@
172
+ localstatedir = @localstatedir@
173
+ mandir = @mandir@
174
+ mkdir_p = @mkdir_p@
175
+ oldincludedir = @oldincludedir@
176
+ pdfdir = @pdfdir@
177
+ prefix = @prefix@
178
+ program_transform_name = @program_transform_name@
179
+ psdir = @psdir@
180
+ sbindir = @sbindir@
181
+ sharedstatedir = @sharedstatedir@
182
+ srcdir = @srcdir@
183
+ sysconfdir = @sysconfdir@
184
+ target_alias = @target_alias@
185
+ top_build_prefix = @top_build_prefix@
186
+ top_builddir = @top_builddir@
187
+ top_srcdir = @top_srcdir@
188
+ rubydir = @RUBY_SITELIBDIR@
189
+ ruby_DATA = mkmf-rice.rb
190
+ all: all-am
191
+
192
+ .SUFFIXES:
193
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
194
+ @for dep in $?; do \
195
+ case '$(am__configure_deps)' in \
196
+ *$$dep*) \
197
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
198
+ && { if test -f $@; then exit 0; else break; fi; }; \
199
+ exit 1;; \
200
+ esac; \
201
+ done; \
202
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ruby/lib/Makefile'; \
203
+ cd $(top_srcdir) && \
204
+ $(AUTOMAKE) --gnu ruby/lib/Makefile
205
+ .PRECIOUS: Makefile
206
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
207
+ @case '$?' in \
208
+ *config.status*) \
209
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
210
+ *) \
211
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
212
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
213
+ esac;
214
+
215
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
216
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
217
+
218
+ $(top_srcdir)/configure: $(am__configure_deps)
219
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
220
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
221
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
222
+ mkmf-rice.rb: $(top_builddir)/config.status $(srcdir)/mkmf-rice.rb.in
223
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
224
+ install-rubyDATA: $(ruby_DATA)
225
+ @$(NORMAL_INSTALL)
226
+ test -z "$(rubydir)" || $(MKDIR_P) "$(DESTDIR)$(rubydir)"
227
+ @list='$(ruby_DATA)'; for p in $$list; do \
228
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
229
+ f=$(am__strip_dir) \
230
+ echo " $(rubyDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(rubydir)/$$f'"; \
231
+ $(rubyDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(rubydir)/$$f"; \
232
+ done
233
+
234
+ uninstall-rubyDATA:
235
+ @$(NORMAL_UNINSTALL)
236
+ @list='$(ruby_DATA)'; for p in $$list; do \
237
+ f=$(am__strip_dir) \
238
+ echo " rm -f '$(DESTDIR)$(rubydir)/$$f'"; \
239
+ rm -f "$(DESTDIR)$(rubydir)/$$f"; \
240
+ done
241
+ tags: TAGS
242
+ TAGS:
243
+
244
+ ctags: CTAGS
245
+ CTAGS:
246
+
247
+
248
+ distdir: $(DISTFILES)
249
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
250
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
251
+ list='$(DISTFILES)'; \
252
+ dist_files=`for file in $$list; do echo $$file; done | \
253
+ sed -e "s|^$$srcdirstrip/||;t" \
254
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
255
+ case $$dist_files in \
256
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
257
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
258
+ sort -u` ;; \
259
+ esac; \
260
+ for file in $$dist_files; do \
261
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
262
+ if test -d $$d/$$file; then \
263
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
264
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
265
+ cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
266
+ fi; \
267
+ cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
268
+ else \
269
+ test -f "$(distdir)"/$$file \
270
+ || cp -p $$d/$$file "$(distdir)"/$$file \
271
+ || exit 1; \
272
+ fi; \
273
+ done
274
+ check-am: all-am
275
+ check: check-am
276
+ all-am: Makefile $(DATA)
277
+ installdirs:
278
+ for dir in "$(DESTDIR)$(rubydir)"; do \
279
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
280
+ done
281
+ install: install-am
282
+ install-exec: install-exec-am
283
+ install-data: install-data-am
284
+ uninstall: uninstall-am
285
+
286
+ install-am: all-am
287
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
288
+
289
+ installcheck: installcheck-am
290
+ install-strip:
291
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
292
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
293
+ `test -z '$(STRIP)' || \
294
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
295
+ mostlyclean-generic:
296
+
297
+ clean-generic:
298
+
299
+ distclean-generic:
300
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
301
+
302
+ maintainer-clean-generic:
303
+ @echo "This command is intended for maintainers to use"
304
+ @echo "it deletes files that may require special tools to rebuild."
305
+ clean: clean-am
306
+
307
+ clean-am: clean-generic mostlyclean-am
308
+
309
+ distclean: distclean-am
310
+ -rm -f Makefile
311
+ distclean-am: clean-am distclean-generic
312
+
313
+ dvi: dvi-am
314
+
315
+ dvi-am:
316
+
317
+ html: html-am
318
+
319
+ info: info-am
320
+
321
+ info-am:
322
+
323
+ install-data-am: install-rubyDATA
324
+
325
+ install-dvi: install-dvi-am
326
+
327
+ install-exec-am:
328
+
329
+ install-html: install-html-am
330
+
331
+ install-info: install-info-am
332
+
333
+ install-man:
334
+
335
+ install-pdf: install-pdf-am
336
+
337
+ install-ps: install-ps-am
338
+
339
+ installcheck-am:
340
+
341
+ maintainer-clean: maintainer-clean-am
342
+ -rm -f Makefile
343
+ maintainer-clean-am: distclean-am maintainer-clean-generic
344
+
345
+ mostlyclean: mostlyclean-am
346
+
347
+ mostlyclean-am: mostlyclean-generic
348
+
349
+ pdf: pdf-am
350
+
351
+ pdf-am:
352
+
353
+ ps: ps-am
354
+
355
+ ps-am:
356
+
357
+ uninstall-am: uninstall-rubyDATA
358
+
359
+ .MAKE: install-am install-strip
360
+
361
+ .PHONY: all all-am check check-am clean clean-generic distclean \
362
+ distclean-generic distdir dvi dvi-am html html-am info info-am \
363
+ install install-am install-data install-data-am install-dvi \
364
+ install-dvi-am install-exec install-exec-am install-html \
365
+ install-html-am install-info install-info-am install-man \
366
+ install-pdf install-pdf-am install-ps install-ps-am \
367
+ install-rubyDATA install-strip installcheck installcheck-am \
368
+ installdirs maintainer-clean maintainer-clean-generic \
369
+ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
370
+ uninstall-am uninstall-rubyDATA
371
+
372
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
373
+ # Otherwise a system limit (for SysV at least) may be exceeded.
374
+ .NOEXPORT:
@@ -0,0 +1,209 @@
1
+ # Make sure that archflags does not include ppc if we're
2
+ # on Intel x86 processor on Mac
3
+ if `uname`.chomp == "Darwin"
4
+ arch = `uname -p`.chomp
5
+ ENV["ARCHFLAGS"] = "-arch #{arch}"
6
+ end
7
+
8
+ require 'mkmf'
9
+ require 'rbconfig'
10
+
11
+ #
12
+ # A script to override some defaults in mkmf.rb for C++ code
13
+ # compilation.
14
+ #
15
+ # If this looks like a big hack, that's because it is.
16
+ #
17
+
18
+ def init_mkmf_rice(config = CONFIG)
19
+ # Set some defaults that we got from autoconf -- they're more likely
20
+ # to be correct than what Ruby was built with
21
+ $CXX = "@CXX@"
22
+ $LIBS = "@RUBY_LIBS@"
23
+ $LIBRUBYARG = "@RUBY_LIBRUBYARG@"
24
+ $LIBRUBYARG_STATIC = "@RUBY_LIBRUBYARG_STATIC@"
25
+ $RICE_CPPFLAGS = "@RICE_CPPFLAGS@"
26
+ $RICE_LDFLAGS = "@RICE_LDFLAGS@"
27
+ $RICE_PREFIX = "@prefix@"
28
+
29
+ $RICE_USING_MINGW32 = @RICE_USING_MINGW32@
30
+
31
+ # Ruby < 1.8.6 does not have $DEFLIBPATH
32
+ $DEFLIBPATH ||= []
33
+
34
+ # We use this for the samples
35
+ $DEFLIBPATH.unshift(with_config('libpath')) if with_config('libpath')
36
+
37
+ # Ruby 1.8.6 uses $preload without setting it
38
+ $preload ||= nil
39
+
40
+ $CPPFLAGS << " #{$RICE_CPPFLAGS} -I#{$RICE_PREFIX}/include"
41
+ $LDFLAGS << " #{$RICE_LDFLAGS} -L#{$RICE_PREFIX}/lib"
42
+
43
+ # Turn on debugging and verbose warnings by default on compilers that
44
+ # support it
45
+ $CXXFLAGS = ''
46
+ if $CXX == 'g++'
47
+ $CXXFLAGS << ' -Wall -g'
48
+ end
49
+
50
+ # Fix-up the linker used for confidence tests
51
+ TRY_LINK.sub!(/^#{Regexp.quote("$(CC)")}/, $CXX)
52
+ TRY_LINK.sub!(/^#{config['CC']}/, $CXX)
53
+ TRY_LINK.sub!(/#{Regexp.quote("$(CFLAGS)")}/, "$(CXXFLAGS)")
54
+
55
+ # Set $LDSHARED_CXX to the linker to be used for C++ libraries (usually
56
+ # the C++ compiler itself)
57
+ case config['target_os']
58
+ when 'darwin'
59
+ $LDSHARED_CXX = \
60
+ replace_cc_with_cxx(config['LDSHARED']) + \
61
+ ' -read_only_relocs suppress'
62
+ when 'mswin32'
63
+ if $RICE_USING_MINGW32 then
64
+ init_rice_mkmf_cross_compile_mingw2_for_vc6
65
+ end
66
+ else
67
+ $LDSHARED_CXX = \
68
+ replace_cc_with_cxx(config['LDSHARED'])
69
+ end
70
+
71
+ # Link against the rice library by default
72
+ have_library('rice') or raise
73
+ end
74
+
75
+ def replace_cc_with_cxx(str)
76
+ return str.sub(
77
+ /^(cc|\$\(CC\)|#{CONFIG['CC']})(?=\s)/,
78
+ $CXX)
79
+ end
80
+
81
+ def init_rice_mkmf_cross_compile_mingw2_for_vc6
82
+ $LDSHARED_CXX = "#{$CXX} -shared -s"
83
+ $OBJEXT = 'o'
84
+ $DLDFLAGS.gsub!(/^-link.*\.pdb$/, '')
85
+
86
+ constants = {
87
+ :TRY_LINK =>
88
+ "#{$LDSHARED_CXX} -oconftest $(INCFLAGS) $(CPPFLAGS) " + \
89
+ "$(CFLAGS) $(src) $(LIBPATH) $(LDFLAGS) $(ARCH_FLAG) " + \
90
+ "$(LOCAL_LIBS) $(LIBS)",
91
+ :LINK_SO =>
92
+ "#{$LDSHARED_CXX} $(DLDFLAGS) $(LIBPATH) -o$@ " + \
93
+ "$(OBJS) $(LOCAL_LIBS) $(LIBS)",
94
+ :LIBARG =>
95
+ '-l%s',
96
+ :LIBPATHFLAG =>
97
+ ' -L %s',
98
+ :COMPILE_RULES =>
99
+ %w[.%s.%s:],
100
+ :RULE_SUBST =>
101
+ '%s',
102
+ :COMPILE_CXX =>
103
+ '$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<',
104
+ :OUTFLAG =>
105
+ '-o',
106
+ }
107
+
108
+ constants.each do |name, value|
109
+ Object.instance_eval { remove_const name }
110
+ Object.const_set(name, value)
111
+ end
112
+ end
113
+
114
+ class Object
115
+ alias_method :configuration_orig, :configuration
116
+ def configuration(srcdir)
117
+ configuration = configuration_orig(srcdir)
118
+ configuration.each do |config|
119
+ # Make sure we link the extension using the C++ compiler
120
+ config.gsub!(/^LDSHARED\s*=.*$/, "LDSHARED = #{$LDSHARED_CXX}")
121
+
122
+ # Make sure set the C++ flags correctly
123
+ config.gsub!(/^CXXFLAGS\s*=.*$/, "CXXFLAGS = $(CFLAGS) #{$CXXFLAGS}")
124
+ end
125
+ configuration << "\nCXX = #{$CXX}"
126
+ return configuration
127
+ end
128
+
129
+ alias_method :link_command_orig, :link_command
130
+ def link_command(ldflags, opt='', libpath=$DEFLIBPATH|$LIBPATH)
131
+ link_command = link_command_orig(ldflags, opt, libpath)
132
+ return Config::expand(
133
+ link_command,
134
+ 'CXXFLAGS' => "#{$CXXFLAGS}")
135
+ end
136
+
137
+ alias_method :create_header_orig, :create_header
138
+ def create_header(header = 'extconf.hpp')
139
+ create_header_orig(header)
140
+ end
141
+
142
+ alias_method :create_makefile_orig, :create_makefile
143
+ def create_makefile(target, srcprefix = nil)
144
+ makefile_creator = RiceMakefileCreator.new
145
+ makefile_creator.create_makefile(target, srcprefix)
146
+ end
147
+ end
148
+
149
+ class RiceMakefileCreator
150
+ def create_makefile(target, srcprefix)
151
+ create_makefile_orig(target, srcprefix)
152
+ end
153
+
154
+ class MakefileWriter
155
+ def self.new(file, mode)
156
+ file = super(file, mode)
157
+ if block_given? then
158
+ begin
159
+ yield file
160
+ ensure
161
+ file.close if not file.closed?
162
+ end
163
+ else
164
+ return file
165
+ end
166
+ end
167
+
168
+ def initialize(file, mode)
169
+ @file = File.open(file, mode)
170
+ end
171
+
172
+ def print(*strings)
173
+ strings.each do |string|
174
+ # Make sure -lruby comes after -lrice (necessary on some
175
+ # platforms)
176
+ string = string.to_s.gsub(/^(LIBS\s*=\s*)(#{Regexp.quote($LIBRUBYARG)})\s+(.*)\s+(#{$LIBS})$/, '\1\3\2 \4')
177
+ @file.print(string)
178
+ end
179
+ end
180
+
181
+ def printf(format, *args)
182
+ @file.printf(format, *args)
183
+ end
184
+
185
+ def puts(*strings)
186
+ print(*strings.map { |s| "#{s}\n" })
187
+ end
188
+
189
+ def close
190
+ @file.close
191
+ end
192
+
193
+ def closed?
194
+ return @file.closed?
195
+ end
196
+ end
197
+
198
+ def open(file, mode, &block)
199
+ # Intercept makefile output using the MakefileWriter
200
+ if file == 'Makefile' then
201
+ return MakefileWriter.new(file, mode, &block)
202
+ else
203
+ return super(file, mode, &block)
204
+ end
205
+ end
206
+ end
207
+
208
+ init_mkmf_rice
209
+