mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: OpenBSD needs to include sys/param.h before include
sys/mount.h. [ruby-dev:48167] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
719804b5df
commit
97cd982a3e
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu May 8 10:53:14 2014 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* configure.in: OpenBSD needs to include sys/param.h before include
|
||||
sys/mount.h. [ruby-dev:48167]
|
||||
|
||||
Thu May 8 10:17:04 2014 Karsten Sperling <karsten@sperling.co.nz>
|
||||
|
||||
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#run): stop
|
||||
|
|
|
@ -1121,7 +1121,6 @@ AC_CHECK_HEADERS( \
|
|||
sys/syscall.h \
|
||||
fcntl.h \
|
||||
sys/fcntl.h \
|
||||
sys/mount.h \
|
||||
sys/select.h \
|
||||
sys/time.h \
|
||||
sys/times.h \
|
||||
|
@ -1155,6 +1154,9 @@ AC_CHECK_HEADERS( \
|
|||
malloc/malloc.h \
|
||||
setjmpex.h
|
||||
)
|
||||
AC_CHECK_HEADERS(sys/mount.h, [], [], [@%:@ifdef HAVE_SYS_PARAM_H
|
||||
@%:@ include <sys/param.h>
|
||||
@%:@endif])
|
||||
|
||||
AC_ARG_WITH([gmp],
|
||||
[AS_HELP_STRING([--without-gmp],
|
||||
|
|
Loading…
Reference in a new issue