summaryrefslogtreecommitdiffstats
path: root/ext/dbm
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-27 16:13:56 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-27 16:13:56 +0000
commit284e4bb1e1f4f228dec73b5f510b225dae942e55 (patch)
treec940f443624dac29eb1aae0c428df92d06e6cc3a /ext/dbm
parent6b0f698de1ab3e27252675509e22b51857cb5c1b (diff)
downloadruby-284e4bb1e1f4f228dec73b5f510b225dae942e55.tar.gz
ruby-284e4bb1e1f4f228dec73b5f510b225dae942e55.tar.xz
ruby-284e4bb1e1f4f228dec73b5f510b225dae942e55.zip
* {win32,bcc32}/Makefile.sub: remove `=' from --make-flags options.
nmake quotes args if included `=' in args. * instruby.rb: use getopts.rb. * ext/dbm/extconf.rb: substitute ' with ". * ext/gdbm/gdbm.c: add prototypes to avoid VC++ warnings. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dbm')
-rw-r--r--ext/dbm/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbm/extconf.rb b/ext/dbm/extconf.rb
index e67ede88f..7f59ebd21 100644
--- a/ext/dbm/extconf.rb
+++ b/ext/dbm/extconf.rb
@@ -32,7 +32,7 @@ def db_check(db)
if have_library(db, db_prefix("dbm_open")) || have_func(db_prefix("dbm_open"))
for hdr in $dbm_conf_headers.fetch(db, ["ndbm.h"])
if have_header(hdr.dup)
- $CFLAGS += " " + hsearch + "-DDBM_HDR='<"+hdr+">'"
+ $CFLAGS += " " + hsearch + '-DDBM_HDR="<'+hdr+'>"'
return true
end
end