diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 07:17:55 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 07:17:55 +0000 |
| commit | de036f133e03b267996e0715af485851cfaa57c1 (patch) | |
| tree | d9de038aee7d84e830371bcb8a647ce955d72c11 | |
| parent | de006b905bf6670742d0acf99f228501c2181607 (diff) | |
| download | ruby-de036f133e03b267996e0715af485851cfaa57c1.tar.gz ruby-de036f133e03b267996e0715af485851cfaa57c1.tar.xz ruby-de036f133e03b267996e0715af485851cfaa57c1.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@2729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.in | 4 |
2 files changed, 9 insertions, 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 . diff --git a/configure.in b/configure.in index a711c9335..a457dba58 100644 --- a/configure.in +++ b/configure.in @@ -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;; |
