mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
ac41cd6844
commit
e8fb16c70f
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Jun 1 11:21:04 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* configure.in: use waitpid on mingw32.
|
||||
|
||||
* ext/dbm/extconf.rb: include <ndbm.h>, not <gdbm.h>.
|
||||
|
||||
Thu May 31 13:30:25 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* mkconfig.rb, ext/configsub.rb: VERSION -> RUBY_VERSION.
|
||||
|
|
|
@ -204,7 +204,8 @@ mingw*) LIBS="-lwsock32 -lmsvcrt $LIBS"
|
|||
ac_cv_header_sys_resource_h=no
|
||||
ac_cv_header_sys_select_h=no
|
||||
ac_cv_header_sys_times_h=no
|
||||
ac_cv_func_times=yes;;
|
||||
ac_cv_func_times=yes
|
||||
ac_cv_func_waitpid=yes;;
|
||||
os2_emx*) LIBS="-lm $LIBS"
|
||||
ac_cv_lib_dir_opendir=no;;
|
||||
msdosdjgpp*) LIBS="-lm $LIBS"
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue