summaryrefslogtreecommitdiff
path: root/ext/dbm/extconf.rb
blob: c499df97ad15e11ab5286ea5345751c05ea44d04 (plain)
1
2
3
4
5
6
7
8
9
require 'mkmf'
$LDFLAGS = "-L/usr/local/lib"
have_library("gdbm", "dbm_open") or
  have_library("db", "dbm_open") or
  have_library("dbm", "dbm_open")
if have_header("ndbm.h") and have_func("dbm_open")
  have_func("dbm_clearerr")
  create_makefile("dbm")
end