summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-22 00:05:34 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-22 00:05:34 +0000
commit215a7da2a6584295ff9bfaa5e0c4de051d831d2c (patch)
treef05cd31de98bd9de498c6330ff9c412615a6d7ef /configure.in
parent62d6fc31c7b8d55cdb690833d2cebda6f2e3c136 (diff)
* gc.c: fix build failure on FreeBSD introduced by r43763.
malloc_usable_size() is defined by malloc_np.h on FreeBSD. * configure.in: check malloc.h and malloc_np.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 923843fe6f..5d86e14bd0 100644
--- a/configure.in
+++ b/configure.in
@@ -1091,6 +1091,8 @@ AC_CHECK_HEADERS( \
process.h \
sys/prctl.h \
atomic.h \
+ malloc.h \
+ malloc_np.h \
setjmpex.h
)