99680f5c7d
From release announce: We are pleased to announce the release of Ruby 2.2.1. This is the first TEENY version release of the stable 2.2 series. This release includes the fix for ffi build failure and memory leak issue on Symbol GC (See Bug #10686). See ChangeLog for details.
15 lines
404 B
Ruby
15 lines
404 B
Ruby
$NetBSD: patch-ext_dbm_extconf.rb,v 1.1 2015/03/08 16:24:55 taca Exp $
|
|
|
|
Fix for Mac OS X 10.4 Tiger.
|
|
|
|
--- ext/dbm/extconf.rb.orig 2014-10-04 23:33:01.000000000 +0000
|
|
+++ ext/dbm/extconf.rb
|
|
@@ -136,7 +136,7 @@ def headers.db_check2(db, hdr)
|
|
have_library("gdbm") or return false
|
|
end
|
|
|
|
- if !have_type("DBM", hdr, hsearch)
|
|
+ if !have_type("DBM", ["db.h", hdr], hsearch)
|
|
return false
|
|
end
|
|
|