diff --git a/ChangeLog b/ChangeLog index e394c33248..594207d1a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Nov 1 16:23:03 2009 Nobuyoshi Nakada + + * configure.in (sitehdrdir, vendorhdrdir): fixed default values. + Sun Nov 1 13:31:16 2009 wanabe * win32/win32.c (overlapped_socket_io, recvmsg, sendmsg): pass handle diff --git a/configure.in b/configure.in index b764b56cf6..d142bef041 100644 --- a/configure.in +++ b/configure.in @@ -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'])