diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-04 12:44:33 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-04 12:44:33 +0000 |
| commit | d8208a8abcd67420647f028c9b09237f29449622 (patch) | |
| tree | 4f8532d35146c1cd5baeb18f7c3c29bcd52c0aaa | |
| parent | 262b978f77dd96e3308b5fe700819f9946c035fa (diff) | |
| download | ruby-d8208a8abcd67420647f028c9b09237f29449622.tar.gz ruby-d8208a8abcd67420647f028c9b09237f29449622.tar.xz ruby-d8208a8abcd67420647f028c9b09237f29449622.zip | |
* ext/dbm/extconf.rb: create makefile according to the result of check
for dbm header. fixed: [ruby-dev:29445]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/dbm/extconf.rb | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +Mon Sep 4 21:43:57 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/dbm/extconf.rb: create makefile according to the result of check + for dbm header. fixed: [ruby-dev:29445] + Mon Sep 4 21:42:35 2006 Tadayoshi Funaba <tadf@dotrb.org> * lib/date.rb, lib/date/format.rb: updated based on date2 3.9. diff --git a/ext/dbm/extconf.rb b/ext/dbm/extconf.rb index 19bfc1f6d..52ec68895 100644 --- a/ext/dbm/extconf.rb +++ b/ext/dbm/extconf.rb @@ -46,16 +46,16 @@ def db_prefix(func) end if dblib - db_check(dblib) + dbm_hdr = db_check(dblib) else - for dblib in %w(db db2 db1 dbm gdbm gdbm_compat qdbm) - db_check(dblib) and break + dbm_hdr = %w(db db2 db1 dbm gdbm gdbm_compat qdbm).any? do |dblib| + db_check(dblib) end end have_header("cdefs.h") have_header("sys/cdefs.h") -if /DBM_HDR/ =~ $CFLAGS and have_func(db_prefix("dbm_open")) +if dbm_hdr and have_func(db_prefix("dbm_open")) have_func(db_prefix("dbm_clearerr")) unless $dbm_conf_have_gdbm create_makefile("dbm") end |
