Skip to content

Commit d9e5857

Browse files
committed
merge revision(s) 15123:
* configure.in: Remove wrong assumptions about Cygwin. a patch from Corinna Vinschen in [ruby-Bugs-17018]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 27ce75e commit d9e5857

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed Jun 11 14:58:49 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* configure.in: Remove wrong assumptions about Cygwin. a patch from
4+
Corinna Vinschen in [ruby-Bugs-17018].
5+
16
Mon Jun 9 18:03:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* eval.c (eval): check if backtrace is empty. [ruby-core:15040]

configure.in

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,7 @@ human*) ac_cv_func_getpgrp_void=yes
336336
ac_cv_func_setitimer=no
337337
;;
338338
beos*) ac_cv_func_link=no;;
339-
cygwin*) rb_cv_have_daylight=no
340-
ac_cv_var_tzname=no
341-
ac_cv_func__setjmp=no
342-
ac_cv_func_setitimer=no
343-
;;
339+
cygwin*) ;;
344340
mingw*) if test "$with_winsock2" = yes; then
345341
LIBS="-lws2_32 $LIBS"
346342
else
@@ -1456,7 +1452,6 @@ case "$target_os" in
14561452
LIBRUBY_SO='cyg$(RUBY_SO_NAME)'${MAJOR}${MINOR}.dll
14571453
LIBRUBY='lib$(RUBY_SO_NAME).dll.a'
14581454
fi
1459-
AC_LIBOBJ([strftime])
14601455
;;
14611456
mingw*)
14621457
RUBY_SO_NAME=${rb_cv_msvcrt}-'$(RUBY_INSTALL_NAME)'${MAJOR}${MINOR}

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.8.5"
2-
#define RUBY_RELEASE_DATE "2008-06-09"
2+
#define RUBY_RELEASE_DATE "2008-06-11"
33
#define RUBY_VERSION_CODE 185
4-
#define RUBY_RELEASE_CODE 20080609
5-
#define RUBY_PATCHLEVEL 166
4+
#define RUBY_RELEASE_CODE 20080611
5+
#define RUBY_PATCHLEVEL 167
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8
99
#define RUBY_VERSION_TEENY 5
1010
#define RUBY_RELEASE_YEAR 2008
1111
#define RUBY_RELEASE_MONTH 6
12-
#define RUBY_RELEASE_DAY 9
12+
#define RUBY_RELEASE_DAY 11
1313

1414
#ifdef RUBY_EXTERN
1515
RUBY_EXTERN const char ruby_version[];

0 commit comments

Comments
 (0)