summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 00:16:26 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 00:16:26 +0000
commitf1c8cdd12b99ec81442039587681c8780e848130 (patch)
treee0bac536ab4fa8274594bbfd338abe1943cc6983 /configure.in
parenta3e598f414a467aead3e0e3ec1d42fd0989514e6 (diff)
merge revision(s) 33114:
* 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/branches/ruby_1_9_3@33116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 83e5d7683e..66f7a9c4db 100644
--- a/configure.in
+++ b/configure.in
@@ -945,6 +945,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*], [ ],