summaryrefslogtreecommitdiff
path: root/ext/dbm
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-01 02:25:28 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-01 02:25:28 +0000
commite8fb16c70fabe9a7a9eef8837d0811112d394de0 (patch)
treee87fbfa2a57591db20a1c19a5465a2c6104dafc6 /ext/dbm
parentac41cd68443ba522b48a09d8347a486df68a887e (diff)
* configure.in: use waitpid on mingw32.
* ext/dbm/extconf.rb: include <ndbm.h>, not <gdbm.h>. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1481 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 06556255ac..0e29eef0ce 100644
--- a/ext/dbm/extconf.rb
+++ b/ext/dbm/extconf.rb
@@ -9,7 +9,7 @@ $dbm_conf_headers = {
"db1" => ["db1/ndbm.h", "db1.h", "ndbm.h"],
"db2" => ["db2/db.h", "db2.h", "db.h"],
"dbm" => ["ndbm.h"],
- "gdbm" => ["gdbm-ndbm.h", "gdbm.h"],
+ "gdbm" => ["gdbm-ndbm.h", "ndbm.h"],
}
def db_check(db)