summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-21 15:25:54 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-21 15:25:54 +0000
commita719a5044de1e6c68df533367714fd396dbf6c74 (patch)
tree2a8838bf5993f4d6373d750e7509fd3aafc57c04
parent79a5d02e194a5eee47ce2456019cfe2d31565969 (diff)
2000-06-21
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure7
-rw-r--r--configure.in3
3 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index eeb1dd9847..472c21f051 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jun 21 22:20:34 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
+
+ * configure.in: support for gcc version 2.95.2 19991024 (release-2)
+ on cygwin 1.1.2 or later.
+
Tue Jun 20 15:07:39 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* lib/parsedate.rb: don't seek year too greedy.
diff --git a/configure b/configure
index 5e8d78d223..fe9be2281a 100644
--- a/configure
+++ b/configure
@@ -2579,7 +2579,7 @@ else
#include "confdefs.h"
#include <alloca.h>
int main() {
-void *p = alloca(2 * sizeof(int));
+char *p = alloca(2 * sizeof(int));
; return 0; }
EOF
if { (eval echo configure:2586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -3682,7 +3682,7 @@ else
int main() {
/* Ultrix mips cc rejects this. */
-typedef int charset[2]; const charset x = {0,0};
+typedef int charset[2]; const charset x;
/* SunOS 4.1.1 cc rejects this. */
char const *const *ccp;
char **p;
@@ -4673,7 +4673,8 @@ if test "$enable_shared" = 'yes'; then
LIBRUBY_SO='lib$(RUBY_INSTALL_NAME).a'
LIBRUBY_ALIASES=''
LIBRUBY_A='lib$(RUBY_INSTALL_NAME)s.a'
- LIBRUBYARG='-L. -l$(RUBY_INSTALL_NAME)'
+ LIBRUBYARG='-l$(RUBY_INSTALL_NAME)'
+ XLDFLAGS='-L.'
FIRSTMAKEFILE=GNUmakefile:cygwin/GNUmakefile.in
LIBOBJS="$LIBOBJS strftime.o"
CCDLFLAGS=-DUSEIMPORTLIB
diff --git a/configure.in b/configure.in
index 5a6ca2705b..b88e7b8b7c 100644
--- a/configure.in
+++ b/configure.in
@@ -746,7 +746,8 @@ if test "$enable_shared" = 'yes'; then
LIBRUBY_SO='lib$(RUBY_INSTALL_NAME).a'
LIBRUBY_ALIASES=''
LIBRUBY_A='lib$(RUBY_INSTALL_NAME)s.a'
- LIBRUBYARG='-L. -l$(RUBY_INSTALL_NAME)'
+ LIBRUBYARG='-l$(RUBY_INSTALL_NAME)'
+ XLDFLAGS='-L.'
FIRSTMAKEFILE=GNUmakefile:cygwin/GNUmakefile.in
LIBOBJS="$LIBOBJS strftime.o"
CCDLFLAGS=-DUSEIMPORTLIB