Skip to content

Commit

Permalink
2000-06-21
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Jun 21, 2000
1 parent 79a5d02 commit a719a50
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions 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.
Expand Down
7 changes: 4 additions & 3 deletions configure
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion configure.in
Expand Up @@ -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
Expand Down

0 comments on commit a719a50

Please sign in to comment.