mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: set ac_cv_func__setjump to "no" on Cygwin.
* configure.in: set ac_cv_func_crypt to "no" on MinGW. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5738d62912
commit
35ef113acf
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Aug 21 16:14:26 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* configure.in: set ac_cv_func__setjump to "no" on Cygwin.
|
||||
|
||||
* configure.in: set ac_cv_func_crypt to "no" on MinGW.
|
||||
|
||||
Tue Aug 20 21:47 2002 KONISHI Hiromasa <konishih@fd6.so-net.ne.jp>
|
||||
|
||||
* io.c (rb_io_fread): remove case EPIPE on bcc32 .
|
||||
|
|
|
@ -208,7 +208,8 @@ darwin*) LIBS="-lobjc $LIBS";;
|
|||
human*) ac_cv_func_getpgrp_void=yes;;
|
||||
beos*) ;;
|
||||
cygwin*) rb_cv_have_daylight=no
|
||||
ac_cv_var_tzname=no;;
|
||||
ac_cv_var_tzname=no
|
||||
ac_cv_func__setjmp=no;;
|
||||
mingw*) LIBS="-lwsock32 -lmsvcrt $LIBS"
|
||||
ac_cv_header_a_out_h=no
|
||||
ac_cv_header_pwd_h=no
|
||||
|
@ -223,6 +224,7 @@ mingw*) LIBS="-lwsock32 -lmsvcrt $LIBS"
|
|||
ac_cv_func_vsnprintf=yes
|
||||
ac_cv_func_seekdir=yes
|
||||
ac_cv_func_telldir=yes
|
||||
ac_cv_func_crypt=no
|
||||
;;
|
||||
os2_emx*) LIBS="-lm $LIBS"
|
||||
ac_cv_lib_dir_opendir=no;;
|
||||
|
|
Loading…
Reference in a new issue