rice 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/install-sh CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
  # install - install a program, script, or datafile
3
3
 
4
- scriptversion=2006-10-14.15
4
+ scriptversion=2006-12-25.00
5
5
 
6
6
  # This originates from X11R5 (mit/util/scripts/install.sh), which was
7
7
  # later released in X11R6 (xc/config/util/install.sh) with the
@@ -48,7 +48,7 @@ IFS=" "" $nl"
48
48
  # set DOITPROG to echo to test this script
49
49
 
50
50
  # Don't use :- since 4.3BSD and earlier shells don't like it.
51
- doit="${DOITPROG-}"
51
+ doit=${DOITPROG-}
52
52
  if test -z "$doit"; then
53
53
  doit_exec=exec
54
54
  else
@@ -58,34 +58,49 @@ fi
58
58
  # Put in absolute file names if you don't have them in your path;
59
59
  # or use environment vars.
60
60
 
61
- mvprog="${MVPROG-mv}"
62
- cpprog="${CPPROG-cp}"
63
- chmodprog="${CHMODPROG-chmod}"
64
- chownprog="${CHOWNPROG-chown}"
65
- chgrpprog="${CHGRPPROG-chgrp}"
66
- stripprog="${STRIPPROG-strip}"
67
- rmprog="${RMPROG-rm}"
68
- mkdirprog="${MKDIRPROG-mkdir}"
61
+ chgrpprog=${CHGRPPROG-chgrp}
62
+ chmodprog=${CHMODPROG-chmod}
63
+ chownprog=${CHOWNPROG-chown}
64
+ cmpprog=${CMPPROG-cmp}
65
+ cpprog=${CPPROG-cp}
66
+ mkdirprog=${MKDIRPROG-mkdir}
67
+ mvprog=${MVPROG-mv}
68
+ rmprog=${RMPROG-rm}
69
+ stripprog=${STRIPPROG-strip}
70
+
71
+ posix_glob='?'
72
+ initialize_posix_glob='
73
+ test "$posix_glob" != "?" || {
74
+ if (set -f) 2>/dev/null; then
75
+ posix_glob=
76
+ else
77
+ posix_glob=:
78
+ fi
79
+ }
80
+ '
69
81
 
70
- posix_glob=
71
82
  posix_mkdir=
72
83
 
73
84
  # Desired mode of installed file.
74
85
  mode=0755
75
86
 
87
+ chgrpcmd=
76
88
  chmodcmd=$chmodprog
77
89
  chowncmd=
78
- chgrpcmd=
79
- stripcmd=
90
+ mvcmd=$mvprog
80
91
  rmcmd="$rmprog -f"
81
- mvcmd="$mvprog"
92
+ stripcmd=
93
+
82
94
  src=
83
95
  dst=
84
96
  dir_arg=
85
- dstarg=
97
+ dst_arg=
98
+
99
+ copy_on_change=false
86
100
  no_target_directory=
87
101
 
88
- usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
102
+ usage="\
103
+ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
89
104
  or: $0 [OPTION]... SRCFILES... DIRECTORY
90
105
  or: $0 [OPTION]... -t DIRECTORY SRCFILES...
91
106
  or: $0 [OPTION]... -d DIRECTORIES...
@@ -95,65 +110,55 @@ In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
95
110
  In the 4th, create DIRECTORIES.
96
111
 
97
112
  Options:
98
- -c (ignored)
99
- -d create directories instead of installing files.
100
- -g GROUP $chgrpprog installed files to GROUP.
101
- -m MODE $chmodprog installed files to MODE.
102
- -o USER $chownprog installed files to USER.
103
- -s $stripprog installed files.
104
- -t DIRECTORY install into DIRECTORY.
105
- -T report an error if DSTFILE is a directory.
106
- --help display this help and exit.
107
- --version display version info and exit.
113
+ --help display this help and exit.
114
+ --version display version info and exit.
115
+
116
+ -c (ignored)
117
+ -C install only if different (preserve the last data modification time)
118
+ -d create directories instead of installing files.
119
+ -g GROUP $chgrpprog installed files to GROUP.
120
+ -m MODE $chmodprog installed files to MODE.
121
+ -o USER $chownprog installed files to USER.
122
+ -s $stripprog installed files.
123
+ -t DIRECTORY install into DIRECTORY.
124
+ -T report an error if DSTFILE is a directory.
108
125
 
109
126
  Environment variables override the default commands:
110
- CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
127
+ CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
128
+ RMPROG STRIPPROG
111
129
  "
112
130
 
113
131
  while test $# -ne 0; do
114
132
  case $1 in
115
- -c) shift
116
- continue;;
133
+ -c) ;;
134
+
135
+ -C) copy_on_change=true;;
117
136
 
118
- -d) dir_arg=true
119
- shift
120
- continue;;
137
+ -d) dir_arg=true;;
121
138
 
122
139
  -g) chgrpcmd="$chgrpprog $2"
123
- shift
124
- shift
125
- continue;;
140
+ shift;;
126
141
 
127
142
  --help) echo "$usage"; exit $?;;
128
143
 
129
144
  -m) mode=$2
130
- shift
131
- shift
132
145
  case $mode in
133
146
  *' '* | *' '* | *'
134
147
  '* | *'*'* | *'?'* | *'['*)
135
148
  echo "$0: invalid mode: $mode" >&2
136
149
  exit 1;;
137
150
  esac
138
- continue;;
151
+ shift;;
139
152
 
140
153
  -o) chowncmd="$chownprog $2"
141
- shift
142
- shift
143
- continue;;
154
+ shift;;
144
155
 
145
- -s) stripcmd=$stripprog
146
- shift
147
- continue;;
156
+ -s) stripcmd=$stripprog;;
148
157
 
149
- -t) dstarg=$2
150
- shift
151
- shift
152
- continue;;
158
+ -t) dst_arg=$2
159
+ shift;;
153
160
 
154
- -T) no_target_directory=true
155
- shift
156
- continue;;
161
+ -T) no_target_directory=true;;
157
162
 
158
163
  --version) echo "$0 $scriptversion"; exit $?;;
159
164
 
@@ -165,21 +170,22 @@ while test $# -ne 0; do
165
170
 
166
171
  *) break;;
167
172
  esac
173
+ shift
168
174
  done
169
175
 
170
- if test $# -ne 0 && test -z "$dir_arg$dstarg"; then
176
+ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
171
177
  # When -d is used, all remaining arguments are directories to create.
172
178
  # When -t is used, the destination is already specified.
173
179
  # Otherwise, the last argument is the destination. Remove it from $@.
174
180
  for arg
175
181
  do
176
- if test -n "$dstarg"; then
182
+ if test -n "$dst_arg"; then
177
183
  # $@ is not empty: it contains at least $arg.
178
- set fnord "$@" "$dstarg"
184
+ set fnord "$@" "$dst_arg"
179
185
  shift # fnord
180
186
  fi
181
187
  shift # arg
182
- dstarg=$arg
188
+ dst_arg=$arg
183
189
  done
184
190
  fi
185
191
 
@@ -224,7 +230,7 @@ for src
224
230
  do
225
231
  # Protect names starting with `-'.
226
232
  case $src in
227
- -*) src=./$src ;;
233
+ -*) src=./$src;;
228
234
  esac
229
235
 
230
236
  if test -n "$dir_arg"; then
@@ -242,22 +248,22 @@ do
242
248
  exit 1
243
249
  fi
244
250
 
245
- if test -z "$dstarg"; then
251
+ if test -z "$dst_arg"; then
246
252
  echo "$0: no destination specified." >&2
247
253
  exit 1
248
254
  fi
249
255
 
250
- dst=$dstarg
256
+ dst=$dst_arg
251
257
  # Protect names starting with `-'.
252
258
  case $dst in
253
- -*) dst=./$dst ;;
259
+ -*) dst=./$dst;;
254
260
  esac
255
261
 
256
262
  # If destination is a directory, append the input filename; won't work
257
263
  # if double slashes aren't ignored.
258
264
  if test -d "$dst"; then
259
265
  if test -n "$no_target_directory"; then
260
- echo "$0: $dstarg: Is a directory" >&2
266
+ echo "$0: $dst_arg: Is a directory" >&2
261
267
  exit 1
262
268
  fi
263
269
  dstdir=$dst
@@ -378,26 +384,19 @@ do
378
384
  # directory the slow way, step by step, checking for races as we go.
379
385
 
380
386
  case $dstdir in
381
- /*) prefix=/ ;;
382
- -*) prefix=./ ;;
383
- *) prefix= ;;
387
+ /*) prefix='/';;
388
+ -*) prefix='./';;
389
+ *) prefix='';;
384
390
  esac
385
391
 
386
- case $posix_glob in
387
- '')
388
- if (set -f) 2>/dev/null; then
389
- posix_glob=true
390
- else
391
- posix_glob=false
392
- fi ;;
393
- esac
392
+ eval "$initialize_posix_glob"
394
393
 
395
394
  oIFS=$IFS
396
395
  IFS=/
397
- $posix_glob && set -f
396
+ $posix_glob set -f
398
397
  set fnord $dstdir
399
398
  shift
400
- $posix_glob && set +f
399
+ $posix_glob set +f
401
400
  IFS=$oIFS
402
401
 
403
402
  prefixes=
@@ -459,41 +458,54 @@ do
459
458
  # ignore errors from any of these, just make sure not to ignore
460
459
  # errors from the above "$doit $cpprog $src $dsttmp" command.
461
460
  #
462
- { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
463
- && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
464
- && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
465
- && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
466
-
467
- # Now rename the file to the real destination.
468
- { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \
469
- || {
470
- # The rename failed, perhaps because mv can't rename something else
471
- # to itself, or perhaps because mv is so ancient that it does not
472
- # support -f.
473
-
474
- # Now remove or move aside any old file at destination location.
475
- # We try this two ways since rm can't unlink itself on some
476
- # systems and the destination file might be busy for other
477
- # reasons. In this case, the final cleanup might fail but the new
478
- # file should still install successfully.
479
- {
480
- if test -f "$dst"; then
481
- $doit $rmcmd -f "$dst" 2>/dev/null \
482
- || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \
483
- && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\
484
- || {
485
- echo "$0: cannot unlink or rename $dst" >&2
486
- (exit 1); exit 1
487
- }
488
- else
489
- :
490
- fi
491
- } &&
492
-
493
- # Now rename the file to the real destination.
494
- $doit $mvcmd "$dsttmp" "$dst"
495
- }
496
- } || exit 1
461
+ { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
462
+ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
463
+ { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
464
+ { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
465
+
466
+ # If -C, don't bother to copy if it wouldn't change the file.
467
+ if $copy_on_change &&
468
+ old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
469
+ new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
470
+
471
+ eval "$initialize_posix_glob" &&
472
+ $posix_glob set -f &&
473
+ set X $old && old=:$2:$4:$5:$6 &&
474
+ set X $new && new=:$2:$4:$5:$6 &&
475
+ $posix_glob set +f &&
476
+
477
+ test "$old" = "$new" &&
478
+ $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
479
+ then
480
+ rm -f "$dsttmp"
481
+ else
482
+ # Rename the file to the real destination.
483
+ $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
484
+
485
+ # The rename failed, perhaps because mv can't rename something else
486
+ # to itself, or perhaps because mv is so ancient that it does not
487
+ # support -f.
488
+ {
489
+ # Now remove or move aside any old file at destination location.
490
+ # We try this two ways since rm can't unlink itself on some
491
+ # systems and the destination file might be busy for other
492
+ # reasons. In this case, the final cleanup might fail but the new
493
+ # file should still install successfully.
494
+ {
495
+ test ! -f "$dst" ||
496
+ $doit $rmcmd -f "$dst" 2>/dev/null ||
497
+ { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
498
+ { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
499
+ } ||
500
+ { echo "$0: cannot unlink or rename $dst" >&2
501
+ (exit 1); exit 1
502
+ }
503
+ } &&
504
+
505
+ # Now rename the file to the real destination.
506
+ $doit $mvcmd "$dsttmp" "$dst"
507
+ }
508
+ fi || exit 1
497
509
 
498
510
  trap '' 0
499
511
  fi
data/missing CHANGED
File without changes
data/rice/Class.ipp CHANGED
@@ -1,4 +1,6 @@
1
1
  #ifndef Rice__Class__ipp_
2
2
  #define Rice__Class__ipp_
3
3
 
4
+ #include "Module.ipp"
5
+
4
6
  #endif // Rice__Class__ipp_
data/rice/Data_Type.ipp CHANGED
@@ -7,6 +7,7 @@
7
7
  #include "detail/creation_funcs.hpp"
8
8
  #include "detail/method_data.hpp"
9
9
  #include "detail/Caster.hpp"
10
+ #include "detail/demangle.hpp"
10
11
 
11
12
  #include <stdexcept>
12
13
  #include <typeinfo>
@@ -87,6 +88,23 @@ inline Rice::Data_Type<T>::
87
88
  unbound_instances().erase(this);
88
89
  }
89
90
 
91
+ template<typename T>
92
+ Rice::Module
93
+ Rice::Data_Type<T>::
94
+ klass() {
95
+ if(is_bound())
96
+ {
97
+ return klass_;
98
+ }
99
+ else
100
+ {
101
+ std::string s;
102
+ s += detail::demangle(typeid(T *).name());
103
+ s += " is unbound";
104
+ throw std::runtime_error(s.c_str());
105
+ }
106
+ }
107
+
90
108
  template<typename T>
91
109
  Rice::Data_Type<T> & Rice::Data_Type<T>::
92
110
  operator=(Module const & klass)
@@ -122,7 +122,7 @@ public:
122
122
  //! Explictly return the Ruby type.
123
123
  /*! \return the ruby class to which the type is bound.
124
124
  */
125
- static Module klass() { return klass_; }
125
+ static Module klass();
126
126
 
127
127
  //! Assignment operator which takes a Module
128
128
  /*! \param klass must be the class to which this data type is already
data/rice/Enum.hpp CHANGED
@@ -1,7 +1,7 @@
1
1
  #ifndef Rice__Enum__hpp_
2
2
  #define Rice__Enum__hpp_
3
3
 
4
- #include "to_from_ruby.hpp"
4
+ #include "to_from_ruby_defn.hpp"
5
5
  #include "Address_Registration_Guard.hpp"
6
6
  #include "Array.hpp"
7
7
  #include "Hash.hpp"
data/rice/Enum.ipp CHANGED
@@ -158,7 +158,7 @@ inspect(Object self)
158
158
  {
159
159
  return String::format(
160
160
  "#<%s::%s>",
161
- String(self.class_of().mod_name()).c_str(),
161
+ String(self.class_of().name()).c_str(),
162
162
  String(to_s(self)).c_str());
163
163
  }
164
164
 
@@ -168,8 +168,8 @@ compare(Object lhs, Object rhs)
168
168
  {
169
169
  if(lhs.class_of() != rhs.class_of())
170
170
  {
171
- String lhs_name(lhs.class_of().mod_name());
172
- String rhs_name(rhs.class_of().mod_name());
171
+ String lhs_name(lhs.class_of().name());
172
+ String rhs_name(rhs.class_of().name());
173
173
  rb_raise(
174
174
  rb_eTypeError,
175
175
  "Cannot compare %s to %s",
data/rice/Hash.ipp CHANGED
@@ -3,7 +3,9 @@
3
3
 
4
4
  #include "protect.hpp"
5
5
  #include "to_from_ruby.hpp"
6
+ #include "Builtin_Object.hpp"
6
7
  #include "Exception.hpp"
8
+ #include "Builtin_Object.hpp"
7
9
  #include <algorithm>
8
10
 
9
11
  // TODO: Evil hack
data/rice/Makefile.am CHANGED
@@ -12,6 +12,7 @@ Struct.cpp \
12
12
  Symbol.cpp \
13
13
  VM.cpp \
14
14
  detail/check_ruby_type.cpp \
15
+ detail/demangle.cpp \
15
16
  detail/method_data.cpp \
16
17
  detail/protect.cpp
17
18
 
@@ -88,6 +89,7 @@ detail/default_allocation_func.hpp \
88
89
  detail/default_allocation_func.ipp \
89
90
  detail/define_method_and_auto_wrap.hpp \
90
91
  detail/define_method_and_auto_wrap.ipp \
92
+ detail/demangle.hpp \
91
93
  detail/env.hpp \
92
94
  detail/from_ruby.hpp \
93
95
  detail/from_ruby.ipp \
data/rice/Makefile.in CHANGED
@@ -1,8 +1,8 @@
1
- # Makefile.in generated by automake 1.10 from Makefile.am.
1
+ # Makefile.in generated by automake 1.10.1 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 Free Software Foundation, Inc.
5
+ # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
8
8
  # with or without modifications, as long as this notice is preserved.
@@ -61,7 +61,7 @@ am_librice_a_OBJECTS = Class.$(OBJEXT) Data_Type.$(OBJEXT) \
61
61
  Exception.$(OBJEXT) Identifier.$(OBJEXT) Module.$(OBJEXT) \
62
62
  Object.$(OBJEXT) String.$(OBJEXT) Struct.$(OBJEXT) \
63
63
  Symbol.$(OBJEXT) VM.$(OBJEXT) check_ruby_type.$(OBJEXT) \
64
- method_data.$(OBJEXT) protect.$(OBJEXT)
64
+ demangle.$(OBJEXT) method_data.$(OBJEXT) protect.$(OBJEXT)
65
65
  librice_a_OBJECTS = $(am_librice_a_OBJECTS)
66
66
  DEFAULT_INCLUDES = -I.@am__isrc@
67
67
  depcomp = $(SHELL) $(top_srcdir)/depcomp
@@ -218,6 +218,7 @@ Struct.cpp \
218
218
  Symbol.cpp \
219
219
  VM.cpp \
220
220
  detail/check_ruby_type.cpp \
221
+ detail/demangle.cpp \
221
222
  detail/method_data.cpp \
222
223
  detail/protect.cpp
223
224
 
@@ -294,6 +295,7 @@ detail/default_allocation_func.hpp \
294
295
  detail/default_allocation_func.ipp \
295
296
  detail/define_method_and_auto_wrap.hpp \
296
297
  detail/define_method_and_auto_wrap.ipp \
298
+ detail/demangle.hpp \
297
299
  detail/env.hpp \
298
300
  detail/from_ruby.hpp \
299
301
  detail/from_ruby.ipp \
@@ -416,6 +418,7 @@ distclean-compile:
416
418
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Symbol.Po@am__quote@
417
419
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VM.Po@am__quote@
418
420
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_ruby_type.Po@am__quote@
421
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/demangle.Po@am__quote@
419
422
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method_data.Po@am__quote@
420
423
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protect.Po@am__quote@
421
424
 
@@ -447,6 +450,20 @@ check_ruby_type.obj: detail/check_ruby_type.cpp
447
450
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
448
451
  @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`
449
452
 
453
+ demangle.o: detail/demangle.cpp
454
+ @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
455
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
456
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.o' libtool=no @AMDEPBACKSLASH@
457
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
458
+ @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
459
+
460
+ demangle.obj: detail/demangle.cpp
461
+ @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`
462
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
463
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.obj' libtool=no @AMDEPBACKSLASH@
464
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
465
+ @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`
466
+
450
467
  method_data.o: detail/method_data.cpp
451
468
  @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
452
469
  @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
@@ -499,8 +516,8 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
499
516
  unique=`for i in $$list; do \
500
517
  if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
501
518
  done | \
502
- $(AWK) ' { files[$$0] = 1; } \
503
- END { for (i in files) print i; }'`; \
519
+ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
520
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
504
521
  mkid -fID $$unique
505
522
  tags: TAGS
506
523
 
@@ -512,8 +529,8 @@ TAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
512
529
  unique=`for i in $$list; do \
513
530
  if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
514
531
  done | \
515
- $(AWK) ' { files[$$0] = 1; } \
516
- END { for (i in files) print i; }'`; \
532
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
533
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
517
534
  if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
518
535
  test -n "$$unique" || unique=$$empty_fix; \
519
536
  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
@@ -523,13 +540,12 @@ ctags: CTAGS
523
540
  CTAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
524
541
  $(TAGS_FILES) $(LISP)
525
542
  tags=; \
526
- here=`pwd`; \
527
543
  list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
528
544
  unique=`for i in $$list; do \
529
545
  if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
530
546
  done | \
531
- $(AWK) ' { files[$$0] = 1; } \
532
- END { for (i in files) print i; }'`; \
547
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
548
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
533
549
  test -z "$(CTAGS_ARGS)$$tags$$unique" \
534
550
  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
535
551
  $$tags $$unique
data/rice/Module.cpp CHANGED
@@ -1,5 +1,6 @@
1
1
  #include "Module.hpp"
2
2
  #include "Symbol.hpp"
3
+ #include "String.hpp"
3
4
  #include "Array.hpp"
4
5
  #include "Exception.hpp"
5
6
  #include "protect.hpp"
@@ -23,8 +24,8 @@ Module(VALUE v)
23
24
  }
24
25
  }
25
26
 
26
- Rice::Object Rice::Module::
27
- mod_name() const
27
+ Rice::String Rice::Module::
28
+ name() const
28
29
  {
29
30
  return rb_mod_name(*this);
30
31
  }
data/rice/Module_defn.hpp CHANGED
@@ -11,6 +11,7 @@ namespace Rice
11
11
 
12
12
  class Array;
13
13
  class Class;
14
+ class String;
14
15
 
15
16
  //! A helper for defining a Module and its methods.
16
17
  /*! This class provides a C++-style interface to ruby's Module class and
@@ -32,7 +33,7 @@ public:
32
33
  Module(VALUE v);
33
34
 
34
35
  //! Return the name of the module.
35
- Object mod_name() const;
36
+ String name() const;
36
37
 
37
38
  //! Swap with another Module.
38
39
  void swap(Module & other);
data/rice/String.cpp CHANGED
@@ -1,4 +1,5 @@
1
1
  #include "String.hpp"
2
+ #include "Builtin_Object.hpp"
2
3
  #include "protect.hpp"
3
4
  #include "detail/ruby.hpp"
4
5
 
data/rice/String.hpp CHANGED
@@ -2,7 +2,8 @@
2
2
  #define Rice__String__hpp_
3
3
 
4
4
  #include "Identifier.hpp"
5
- #include "Builtin_Object.hpp"
5
+ #include "Builtin_Object_defn.hpp"
6
+ #include "to_from_ruby_defn.hpp"
6
7
  #include "detail/ruby.hpp"
7
8
  #include <string>
8
9
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  template<typename T>
4
4
  VALUE Rice::detail::
5
- default_allocation_func(VALUE /* klass */)
5
+ default_allocation_func(VALUE klass)
6
6
  {
7
- Data_Object<T> m(static_cast<T*>(0));
7
+ Data_Object<T> m(static_cast<T*>(0), klass);
8
8
  return m.value();
9
9
  }
10
10