diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-12 10:59:52 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-12 10:59:52 +0000 |
commit | b8f41d954a8dcbb48cd9ca0cfad07cbf757ddf37 (patch) | |
tree | 0a74d5b35c0974c6c1c38f9c700f02d91e3cb9ad | |
parent | fa53790e58fd2de334c1614e38965bf7b7559564 (diff) | |
download | ruby-b8f41d954a8dcbb48cd9ca0cfad07cbf757ddf37.tar.gz ruby-b8f41d954a8dcbb48cd9ca0cfad07cbf757ddf37.tar.xz ruby-b8f41d954a8dcbb48cd9ca0cfad07cbf757ddf37.zip |
* lib/mkmf.rb (have_type, check_sizeof): replace unusable characters.
[ruby-talk:99788]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6297 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | lib/mkmf.rb | 4 |
2 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Wed May 12 19:59:43 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/mkmf.rb (have_type, check_sizeof): replace unusable characters. + [ruby-talk:99788] + Wed May 12 17:41:42 2004 Tanaka Akira <akr@m17n.org> * lib/resolv.rb (Resolv::DNS::Config): make it configurable without @@ -10,8 +15,8 @@ Wed May 12 14:37:27 2004 GOTOU Yuuzou <gotoyuzo@notwork.org> Wed May 12 13:20:19 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> - * ext/tk/lib/tk/composite.rb: improve configure methods (based on - the proposal of [ruby-talk:99671]). + * ext/tk/lib/tk/composite.rb: improve configure methods (based on + the proposal of [ruby-talk:99671]). Wed May 12 11:51:08 2004 Dave Thomas <dave@pragprog.com> @@ -119,7 +124,7 @@ Thu May 6 14:22:29 2004 why the lucky stiff <why@ruby-lang.org> * lib/yaml/rubytypes.rb (to_yaml): added instance variable handling for Ranges, Strings, Structs, Regexps. - * lib/yaml/rubytypes.rb (to_yaml_fold): new method for setting a + * lib/yaml/rubytypes.rb (to_yaml_fold): new method for setting a String's flow style. * lib/yaml.rb (YAML::object_maker): now uses Object.allocate. diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 2b0612d77..ddcb53d52 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -585,7 +585,7 @@ SRC /*top*/ static #{type} *t; SRC - $defs.push(format("-DHAVE_TYPE_%s", type.upcase)) + $defs.push(format("-DHAVE_TYPE_%s", type.upcase.tr_s("^A-Z0-9_", "_"))) true else false @@ -599,7 +599,7 @@ def check_sizeof(type, header = nil, &b) message "%s", m Logging::message "check_sizeof: %s--------------------\n", m if size = try_constant(expr, header, &b) - $defs.push(format("-DSIZEOF_%s", type.upcase)) + $defs.push(format("-DSIZEOF_%s", type.upcase.tr_s("^A-Z0-9_", "_"))) end message(a = size ? "#{size}\n" : "failed\n") Logging::message "-------------------- %s\n", a |