mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (sitehdrdir, vendorhdrdir): fixed default values.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
754462d4f1
commit
f6ea31420e
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Nov 1 16:23:03 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (sitehdrdir, vendorhdrdir): fixed default values.
|
||||
|
||||
Sun Nov 1 13:31:16 2009 wanabe <s.wanabe@gmail.com>
|
||||
|
||||
* win32/win32.c (overlapped_socket_io, recvmsg, sendmsg): pass handle
|
||||
|
|
|
@ -16,7 +16,7 @@ dnl note that spaces after comma need to be quoted.
|
|||
dnl environment section {
|
||||
|
||||
AC_ARG_WITH(baseruby,
|
||||
AS_HELP_STRING([--with-baseruby=RUBY], [ use RUBY as baseruby; RUBY is the pathname of ruby]),
|
||||
AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby; RUBY is the pathname of ruby]),
|
||||
[
|
||||
case "$withval" in
|
||||
when(*ruby*)
|
||||
|
@ -2576,12 +2576,12 @@ AC_ARG_WITH(rubyhdrdir,
|
|||
[rubyhdrdir='${includedir}/${RUBY_BASE_NAME}-${ruby_version}'])
|
||||
|
||||
AC_ARG_WITH(sitehdrdir,
|
||||
AS_HELP_STRING([--with-sitehdrdir=DIR], [core site headers in DIR [RUBYHDRDIR/site_ruby]]),
|
||||
AS_HELP_STRING([--with-sitehdrdir=DIR], [core site headers in DIR [[RUBYHDRDIR/site_ruby]]]),
|
||||
[sitehdrdir=$withval],
|
||||
[sitehdrdir='${rubyhdrdir}/site_ruby'])
|
||||
|
||||
AC_ARG_WITH(vendorhdrdir,
|
||||
AS_HELP_STRING([--with-vendorhdrdir=DIR], [ core vendor headers in DIR [RUBYHDRDIR/vendor_ruby]]),
|
||||
AS_HELP_STRING([--with-vendorhdrdir=DIR], [core vendor headers in DIR [[RUBYHDRDIR/vendor_ruby]]]),
|
||||
[vendorhdrdir=$withval],
|
||||
[vendorhdrdir='${rubyhdrdir}/vendor_ruby'])
|
||||
|
||||
|
|
Loading…
Reference in a new issue