aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 00:13:56 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 00:13:56 +0000
commit3596d49edfc61126cc2d3cd8634516d10fbcbe42 (patch)
tree54609bcf1b28213a48b60038c82496552665bdb3
parent9742dec279e8be6081a60a5a9bc6c0384e8f98b6 (diff)
downloadruby-3596d49edfc61126cc2d3cd8634516d10fbcbe42.tar.gz
* 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
-rw-r--r--ChangeLog6
-rw-r--r--configure.in5
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a56f3e747b..2b6a8ebe47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure.in b/configure.in
index 53f0a72da7..0bbc444201 100644
--- a/configure.in
+++ b/configure.in
@@ -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*], [ ],