mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
correctly. Patch by Gabriele Giacone (1o5g4r8o@gmail.com). * test/fiddle/helper.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9bfee9e985
commit
1a0eb89cff
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Sat Sep 28 14:30:29 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
|
||||
correctly. Patch by Gabriele Giacone (1o5g4r8o@gmail.com).
|
||||
* test/fiddle/helper.rb: ditto.
|
||||
|
||||
Sat Sep 28 00:19:41 2013 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* ext/curses/extconf.rb: check the size of chtype.
|
||||
|
|
|
@ -33,6 +33,9 @@ when /darwin/
|
|||
when /kfreebsd/
|
||||
libc_so = "/lib/libc.so.0.1"
|
||||
libm_so = "/lib/libm.so.1"
|
||||
when /gnu/ #GNU/Hurd
|
||||
libc_so = "/lib/libc.so.0.3"
|
||||
libm_so = "/lib/libm.so.6"
|
||||
when /mirbsd/
|
||||
libc_so = "/usr/lib/libc.so.41.10"
|
||||
libm_so = "/usr/lib/libm.so.7.0"
|
||||
|
|
|
@ -34,6 +34,9 @@ when /darwin/
|
|||
when /kfreebsd/
|
||||
libc_so = "/lib/libc.so.0.1"
|
||||
libm_so = "/lib/libm.so.1"
|
||||
when /gnu/ #GNU/Hurd
|
||||
libc_so = "/lib/libc.so.0.3"
|
||||
libm_so = "/lib/libm.so.6"
|
||||
when /mirbsd/
|
||||
libc_so = "/usr/lib/libc.so.41.10"
|
||||
libm_so = "/usr/lib/libm.so.7.0"
|
||||
|
|
Loading…
Reference in a new issue