mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: fix a build failure on GNU Hurd.
Patch by Samuel Thibault <sthibault at debian dot org>. Thank you! [Bug #5250] [ruby-core:39185] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9742dec279
commit
3596d49edf
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Aug 30 09:08:22 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* configure.in: fix a build failure on GNU Hurd.
|
||||
Patch by Samuel Thibault <sthibault at debian dot org>. Thank you!
|
||||
[Bug #5250] [ruby-core:39185]
|
||||
|
||||
Sun Aug 29 23:22:00 2011 Kenta Murata <mrkn@mrkn.jp>
|
||||
|
||||
* test/ruby/test_numeric.rb (test_num2long): modify a test agaist the
|
||||
|
|
|
@ -934,6 +934,11 @@ AS_CASE(["$target_os"],
|
|||
AC_DEFINE(SIZEOF_STRUCT_DIRENT_TOO_SMALL, 1)
|
||||
LIBS="-lm $LIBS"
|
||||
],
|
||||
# GNU Hurd
|
||||
[gnu*], [
|
||||
AC_DEFINE(SIZEOF_STRUCT_DIRENT_TOO_SMALL, 1)
|
||||
LIBS="-lm $LIBS"
|
||||
],
|
||||
[nextstep*], [ ],
|
||||
[openstep*], [ ],
|
||||
[rhapsody*], [ ],
|
||||
|
|
Loading…
Reference in a new issue