rice 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Doxyfile +1 -1
- data/Makefile.in +58 -142
- data/aclocal.m4 +112 -201
- data/config.guess +23 -84
- data/config.sub +23 -93
- data/configure +2727 -2406
- data/depcomp +14 -19
- data/install-sh +108 -120
- data/rice/Constructor.hpp +350 -322
- data/rice/Makefile.am +0 -1
- data/rice/Makefile.in +69 -119
- data/rice/config.hpp +2 -8
- data/rice/config.hpp.in +0 -6
- data/rice/detail/Auto_Function_Wrapper.hpp +1 -33
- data/rice/detail/Auto_Function_Wrapper.ipp +1009 -1060
- data/rice/detail/Auto_Member_Function_Wrapper.ipp +608 -672
- data/rice/detail/method_data.cpp +0 -4
- data/rice/detail/object_call.hpp +31 -48
- data/rice/detail/object_call.ipp +45 -61
- data/rice/detail/wrap_function.hpp +70 -74
- data/rice/detail/wrap_function.ipp +126 -143
- data/rice/protect.hpp +30 -30
- data/rice/protect.ipp +770 -696
- data/ruby.ac +0 -14
- data/ruby/Makefile.in +41 -108
- data/ruby/lib/Makefile.in +23 -64
- data/ruby/lib/version.rb +1 -1
- data/sample/Makefile.in +12 -36
- data/test/Makefile.in +59 -148
- data/test/ext/Makefile.in +12 -36
- data/test/test_Constructor.cpp +42 -153
- data/test/test_Module.cpp +4 -4
- metadata +132 -124
- data/rice/generate_code.rb +0 -1328
data/rice/Makefile.am
CHANGED
data/rice/Makefile.in
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.10 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
4
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
-
# 2003, 2004, 2005, 2006
|
6
|
-
# Inc.
|
5
|
+
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -18,9 +17,8 @@
|
|
18
17
|
|
19
18
|
VPATH = @srcdir@
|
20
19
|
pkgdatadir = $(datadir)/@PACKAGE@
|
21
|
-
pkgincludedir = $(includedir)/@PACKAGE@
|
22
20
|
pkglibdir = $(libdir)/@PACKAGE@
|
23
|
-
|
21
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
24
22
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
25
23
|
install_sh_DATA = $(install_sh) -c -m 644
|
26
24
|
install_sh_PROGRAM = $(install_sh) -c
|
@@ -46,29 +44,14 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
46
44
|
mkinstalldirs = $(install_sh) -d
|
47
45
|
CONFIG_HEADER = config.hpp
|
48
46
|
CONFIG_CLEAN_FILES =
|
49
|
-
CONFIG_CLEAN_VPATH_FILES =
|
50
47
|
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
51
48
|
am__vpath_adj = case $$p in \
|
52
49
|
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
53
50
|
*) f=$$p;; \
|
54
51
|
esac;
|
55
|
-
am__strip_dir =
|
56
|
-
am__install_max = 40
|
57
|
-
am__nobase_strip_setup = \
|
58
|
-
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
59
|
-
am__nobase_strip = \
|
60
|
-
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
61
|
-
am__nobase_list = $(am__nobase_strip_setup); \
|
62
|
-
for p in $$list; do echo "$$p $$p"; done | \
|
63
|
-
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
64
|
-
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
65
|
-
if (++n[$$2] == $(am__install_max)) \
|
66
|
-
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
67
|
-
END { for (dir in files) print dir, files[dir] }'
|
68
|
-
am__base_list = \
|
69
|
-
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
70
|
-
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
52
|
+
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
71
53
|
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
|
54
|
+
libLIBRARIES_INSTALL = $(INSTALL_DATA)
|
72
55
|
LIBRARIES = $(lib_LIBRARIES)
|
73
56
|
AR = ar
|
74
57
|
ARFLAGS = cru
|
@@ -84,7 +67,6 @@ librice_a_OBJECTS = $(am_librice_a_OBJECTS)
|
|
84
67
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
85
68
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
86
69
|
am__depfiles_maybe = depfiles
|
87
|
-
am__mv = mv -f
|
88
70
|
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
89
71
|
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
90
72
|
CXXLD = $(CXX)
|
@@ -92,6 +74,7 @@ CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
|
|
92
74
|
-o $@
|
93
75
|
SOURCES = $(librice_a_SOURCES)
|
94
76
|
DIST_SOURCES = $(librice_a_SOURCES)
|
77
|
+
nobase_includeHEADERS_INSTALL = $(install_sh_DATA)
|
95
78
|
HEADERS = $(nobase_include_HEADERS)
|
96
79
|
ETAGS = etags
|
97
80
|
CTAGS = ctags
|
@@ -154,7 +137,6 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
154
137
|
PACKAGE_NAME = @PACKAGE_NAME@
|
155
138
|
PACKAGE_STRING = @PACKAGE_STRING@
|
156
139
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
157
|
-
PACKAGE_URL = @PACKAGE_URL@
|
158
140
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
159
141
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
160
142
|
RANLIB = @RANLIB@
|
@@ -224,7 +206,6 @@ sharedstatedir = @sharedstatedir@
|
|
224
206
|
srcdir = @srcdir@
|
225
207
|
sysconfdir = @sysconfdir@
|
226
208
|
target_alias = @target_alias@
|
227
|
-
top_build_prefix = @top_build_prefix@
|
228
209
|
top_builddir = @top_builddir@
|
229
210
|
top_srcdir = @top_srcdir@
|
230
211
|
lib_LIBRARIES = librice.a
|
@@ -301,7 +282,6 @@ Struct.ipp \
|
|
301
282
|
Symbol.hpp \
|
302
283
|
Symbol.ipp \
|
303
284
|
VM.hpp \
|
304
|
-
generate_code.rb \
|
305
285
|
global_function.hpp \
|
306
286
|
global_function.ipp \
|
307
287
|
protect.hpp \
|
@@ -361,14 +341,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
361
341
|
@for dep in $?; do \
|
362
342
|
case '$(am__configure_deps)' in \
|
363
343
|
*$$dep*) \
|
364
|
-
|
365
|
-
|
344
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
345
|
+
&& exit 0; \
|
366
346
|
exit 1;; \
|
367
347
|
esac; \
|
368
348
|
done; \
|
369
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu
|
370
|
-
|
371
|
-
$(AUTOMAKE) --gnu
|
349
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu rice/Makefile'; \
|
350
|
+
cd $(top_srcdir) && \
|
351
|
+
$(AUTOMAKE) --gnu rice/Makefile
|
372
352
|
.PRECIOUS: Makefile
|
373
353
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
374
354
|
@case '$?' in \
|
@@ -386,7 +366,6 @@ $(top_srcdir)/configure: $(am__configure_deps)
|
|
386
366
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
387
367
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
388
368
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
389
|
-
$(am__aclocal_m4_deps):
|
390
369
|
|
391
370
|
config.hpp: stamp-h1
|
392
371
|
@if test ! -f $@; then \
|
@@ -398,7 +377,7 @@ stamp-h1: $(srcdir)/config.hpp.in $(top_builddir)/config.status
|
|
398
377
|
@rm -f stamp-h1
|
399
378
|
cd $(top_builddir) && $(SHELL) ./config.status rice/config.hpp
|
400
379
|
$(srcdir)/config.hpp.in: $(am__configure_deps)
|
401
|
-
|
380
|
+
cd $(top_srcdir) && $(AUTOHEADER)
|
402
381
|
rm -f stamp-h1
|
403
382
|
touch $@
|
404
383
|
|
@@ -407,32 +386,29 @@ distclean-hdr:
|
|
407
386
|
install-libLIBRARIES: $(lib_LIBRARIES)
|
408
387
|
@$(NORMAL_INSTALL)
|
409
388
|
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
410
|
-
@list='$(lib_LIBRARIES)';
|
411
|
-
list2=; for p in $$list; do \
|
389
|
+
@list='$(lib_LIBRARIES)'; for p in $$list; do \
|
412
390
|
if test -f $$p; then \
|
413
|
-
|
391
|
+
f=$(am__strip_dir) \
|
392
|
+
echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
393
|
+
$(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
414
394
|
else :; fi; \
|
415
|
-
done
|
416
|
-
test -z "$$list2" || { \
|
417
|
-
echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(libdir)'"; \
|
418
|
-
$(INSTALL_DATA) $$list2 "$(DESTDIR)$(libdir)" || exit $$?; }
|
395
|
+
done
|
419
396
|
@$(POST_INSTALL)
|
420
|
-
@list='$(lib_LIBRARIES)';
|
421
|
-
for p in $$list; do \
|
397
|
+
@list='$(lib_LIBRARIES)'; for p in $$list; do \
|
422
398
|
if test -f $$p; then \
|
423
|
-
|
424
|
-
echo " (
|
425
|
-
(
|
399
|
+
p=$(am__strip_dir) \
|
400
|
+
echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
|
401
|
+
$(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
|
426
402
|
else :; fi; \
|
427
403
|
done
|
428
404
|
|
429
405
|
uninstall-libLIBRARIES:
|
430
406
|
@$(NORMAL_UNINSTALL)
|
431
|
-
@list='$(lib_LIBRARIES)';
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
407
|
+
@list='$(lib_LIBRARIES)'; for p in $$list; do \
|
408
|
+
p=$(am__strip_dir) \
|
409
|
+
echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
410
|
+
rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
411
|
+
done
|
436
412
|
|
437
413
|
clean-libLIBRARIES:
|
438
414
|
-test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
|
@@ -466,145 +442,137 @@ distclean-compile:
|
|
466
442
|
|
467
443
|
.cpp.o:
|
468
444
|
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
469
|
-
@am__fastdepCXX_TRUE@
|
445
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
470
446
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
471
447
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
472
448
|
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
473
449
|
|
474
450
|
.cpp.obj:
|
475
451
|
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
476
|
-
@am__fastdepCXX_TRUE@
|
452
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
477
453
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
478
454
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
479
455
|
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
480
456
|
|
481
457
|
check_ruby_type.o: detail/check_ruby_type.cpp
|
482
458
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.o -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
|
483
|
-
@am__fastdepCXX_TRUE@
|
459
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
|
484
460
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.o' libtool=no @AMDEPBACKSLASH@
|
485
461
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
486
462
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
|
487
463
|
|
488
464
|
check_ruby_type.obj: detail/check_ruby_type.cpp
|
489
465
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.obj -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
|
490
|
-
@am__fastdepCXX_TRUE@
|
466
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
|
491
467
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.obj' libtool=no @AMDEPBACKSLASH@
|
492
468
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
493
469
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
|
494
470
|
|
495
471
|
demangle.o: detail/demangle.cpp
|
496
472
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.o -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
|
497
|
-
@am__fastdepCXX_TRUE@
|
473
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
|
498
474
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.o' libtool=no @AMDEPBACKSLASH@
|
499
475
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
500
476
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
|
501
477
|
|
502
478
|
demangle.obj: detail/demangle.cpp
|
503
479
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.obj -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
|
504
|
-
@am__fastdepCXX_TRUE@
|
480
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
|
505
481
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.obj' libtool=no @AMDEPBACKSLASH@
|
506
482
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
507
483
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
|
508
484
|
|
509
485
|
method_data.o: detail/method_data.cpp
|
510
486
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.o -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
|
511
|
-
@am__fastdepCXX_TRUE@
|
487
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
|
512
488
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.o' libtool=no @AMDEPBACKSLASH@
|
513
489
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
514
490
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
|
515
491
|
|
516
492
|
method_data.obj: detail/method_data.cpp
|
517
493
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.obj -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
|
518
|
-
@am__fastdepCXX_TRUE@
|
494
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
|
519
495
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.obj' libtool=no @AMDEPBACKSLASH@
|
520
496
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
521
497
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
|
522
498
|
|
523
499
|
protect.o: detail/protect.cpp
|
524
500
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.o -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
|
525
|
-
@am__fastdepCXX_TRUE@
|
501
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
|
526
502
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.o' libtool=no @AMDEPBACKSLASH@
|
527
503
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
528
504
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
|
529
505
|
|
530
506
|
protect.obj: detail/protect.cpp
|
531
507
|
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.obj -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
|
532
|
-
@am__fastdepCXX_TRUE@
|
508
|
+
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
|
533
509
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.obj' libtool=no @AMDEPBACKSLASH@
|
534
510
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
535
511
|
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
|
536
512
|
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
537
513
|
@$(NORMAL_INSTALL)
|
538
514
|
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
539
|
-
|
540
|
-
$(
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
test "x$$dir" = x. || { \
|
546
|
-
echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
547
|
-
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
548
|
-
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
549
|
-
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
515
|
+
@$(am__vpath_adj_setup) \
|
516
|
+
list='$(nobase_include_HEADERS)'; for p in $$list; do \
|
517
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
518
|
+
$(am__vpath_adj) \
|
519
|
+
echo " $(nobase_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
|
520
|
+
$(nobase_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
|
550
521
|
done
|
551
522
|
|
552
523
|
uninstall-nobase_includeHEADERS:
|
553
524
|
@$(NORMAL_UNINSTALL)
|
554
|
-
|
555
|
-
$(
|
556
|
-
|
557
|
-
|
558
|
-
|
525
|
+
@$(am__vpath_adj_setup) \
|
526
|
+
list='$(nobase_include_HEADERS)'; for p in $$list; do \
|
527
|
+
$(am__vpath_adj) \
|
528
|
+
echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
|
529
|
+
rm -f "$(DESTDIR)$(includedir)/$$f"; \
|
530
|
+
done
|
559
531
|
|
560
532
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
561
533
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
562
534
|
unique=`for i in $$list; do \
|
563
535
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
564
536
|
done | \
|
565
|
-
$(AWK) '{ files[$$0] = 1;
|
566
|
-
|
537
|
+
$(AWK) ' { files[$$0] = 1; } \
|
538
|
+
END { for (i in files) print i; }'`; \
|
567
539
|
mkid -fID $$unique
|
568
540
|
tags: TAGS
|
569
541
|
|
570
542
|
TAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
|
571
543
|
$(TAGS_FILES) $(LISP)
|
572
|
-
|
544
|
+
tags=; \
|
573
545
|
here=`pwd`; \
|
574
546
|
list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
|
575
547
|
unique=`for i in $$list; do \
|
576
548
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
577
549
|
done | \
|
578
|
-
$(AWK) '{ files[$$0] = 1;
|
579
|
-
|
580
|
-
|
581
|
-
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
550
|
+
$(AWK) ' { files[$$0] = 1; } \
|
551
|
+
END { for (i in files) print i; }'`; \
|
552
|
+
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
582
553
|
test -n "$$unique" || unique=$$empty_fix; \
|
583
|
-
|
584
|
-
|
585
|
-
"$$@" $$unique; \
|
586
|
-
else \
|
587
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
588
|
-
$$unique; \
|
589
|
-
fi; \
|
554
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
555
|
+
$$tags $$unique; \
|
590
556
|
fi
|
591
557
|
ctags: CTAGS
|
592
558
|
CTAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
|
593
559
|
$(TAGS_FILES) $(LISP)
|
560
|
+
tags=; \
|
561
|
+
here=`pwd`; \
|
594
562
|
list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
|
595
563
|
unique=`for i in $$list; do \
|
596
564
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
597
565
|
done | \
|
598
|
-
$(AWK) '{ files[$$0] = 1;
|
599
|
-
|
600
|
-
test -z "$(CTAGS_ARGS)$$unique" \
|
566
|
+
$(AWK) ' { files[$$0] = 1; } \
|
567
|
+
END { for (i in files) print i; }'`; \
|
568
|
+
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
601
569
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
602
|
-
$$unique
|
570
|
+
$$tags $$unique
|
603
571
|
|
604
572
|
GTAGS:
|
605
573
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
606
|
-
&&
|
607
|
-
&& gtags -i $(GTAGS_ARGS)
|
574
|
+
&& cd $(top_srcdir) \
|
575
|
+
&& gtags -i $(GTAGS_ARGS) $$here
|
608
576
|
|
609
577
|
distclean-tags:
|
610
578
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
@@ -625,17 +593,13 @@ distdir: $(DISTFILES)
|
|
625
593
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
626
594
|
if test -d $$d/$$file; then \
|
627
595
|
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
628
|
-
if test -d "$(distdir)/$$file"; then \
|
629
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
630
|
-
fi; \
|
631
596
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
632
|
-
cp -
|
633
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
597
|
+
cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
|
634
598
|
fi; \
|
635
|
-
cp -
|
599
|
+
cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
|
636
600
|
else \
|
637
|
-
test -f "$(distdir)/$$file
|
638
|
-
|| cp -p $$d/$$file "$(distdir)/$$file
|
601
|
+
test -f "$(distdir)"/$$file \
|
602
|
+
|| cp -p $$d/$$file "$(distdir)"/$$file \
|
639
603
|
|| exit 1; \
|
640
604
|
fi; \
|
641
605
|
done
|
@@ -666,7 +630,6 @@ clean-generic:
|
|
666
630
|
|
667
631
|
distclean-generic:
|
668
632
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
669
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
670
633
|
|
671
634
|
maintainer-clean-generic:
|
672
635
|
@echo "This command is intended for maintainers to use"
|
@@ -687,8 +650,6 @@ dvi-am:
|
|
687
650
|
|
688
651
|
html: html-am
|
689
652
|
|
690
|
-
html-am:
|
691
|
-
|
692
653
|
info: info-am
|
693
654
|
|
694
655
|
info-am:
|
@@ -697,28 +658,18 @@ install-data-am: install-nobase_includeHEADERS
|
|
697
658
|
|
698
659
|
install-dvi: install-dvi-am
|
699
660
|
|
700
|
-
install-dvi-am:
|
701
|
-
|
702
661
|
install-exec-am: install-libLIBRARIES
|
703
662
|
|
704
663
|
install-html: install-html-am
|
705
664
|
|
706
|
-
install-html-am:
|
707
|
-
|
708
665
|
install-info: install-info-am
|
709
666
|
|
710
|
-
install-info-am:
|
711
|
-
|
712
667
|
install-man:
|
713
668
|
|
714
669
|
install-pdf: install-pdf-am
|
715
670
|
|
716
|
-
install-pdf-am:
|
717
|
-
|
718
671
|
install-ps: install-ps-am
|
719
672
|
|
720
|
-
install-ps-am:
|
721
|
-
|
722
673
|
installcheck-am:
|
723
674
|
|
724
675
|
maintainer-clean: maintainer-clean-am
|
@@ -740,7 +691,7 @@ ps-am:
|
|
740
691
|
|
741
692
|
uninstall-am: uninstall-libLIBRARIES uninstall-nobase_includeHEADERS
|
742
693
|
|
743
|
-
.MAKE:
|
694
|
+
.MAKE: install-am install-strip
|
744
695
|
|
745
696
|
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
746
697
|
clean-libLIBRARIES ctags distclean distclean-compile \
|
@@ -757,7 +708,6 @@ uninstall-am: uninstall-libLIBRARIES uninstall-nobase_includeHEADERS
|
|
757
708
|
uninstall-am uninstall-libLIBRARIES \
|
758
709
|
uninstall-nobase_includeHEADERS
|
759
710
|
|
760
|
-
|
761
711
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
762
712
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
763
713
|
.NOEXPORT:
|
data/rice/config.hpp
CHANGED
@@ -7,14 +7,11 @@
|
|
7
7
|
/* Define to 1 if you have the <node.h> header file. */
|
8
8
|
#define HAVE_NODE_H 1
|
9
9
|
|
10
|
-
/* Define this macro if rb_class_boot is defined */
|
11
|
-
#define HAVE_RB_CLASS_BOOT /**/
|
12
|
-
|
13
10
|
/* Define to 1 if you have the <ruby.h> header file. */
|
14
11
|
#define HAVE_RUBY_H 1
|
15
12
|
|
16
13
|
/* Define to 1 if you have the <ruby/node.h> header file. */
|
17
|
-
|
14
|
+
#define HAVE_RUBY_NODE_H 1
|
18
15
|
|
19
16
|
/* Define to 1 if you have the <version.h> header file. */
|
20
17
|
#define HAVE_VERSION_H 1
|
@@ -34,14 +31,11 @@
|
|
34
31
|
/* Define to the one symbol short name of this package. */
|
35
32
|
#define PACKAGE_TARNAME "rice"
|
36
33
|
|
37
|
-
/* Define to the home page for this package. */
|
38
|
-
#define PACKAGE_URL ""
|
39
|
-
|
40
34
|
/* Define to the version of this package. */
|
41
35
|
#define PACKAGE_VERSION "1.1"
|
42
36
|
|
43
37
|
/* Define this macro to use ruby/node.h */
|
44
|
-
|
38
|
+
#define REALLY_HAVE_RUBY_NODE_H
|
45
39
|
|
46
40
|
/* Version number of package */
|
47
41
|
#define VERSION "1.1"
|