mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
configure.in: summary
* configure.in: Add summary to end of configure output. [Fix GH-1277] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1a9bc87ab7
commit
7b91046b29
2 changed files with 43 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Feb 28 23:13:49 2016 C.J. Collier <cjcollier@linuxfoundation.org>
|
||||
|
||||
* configure.in: Add summary to end of configure output.
|
||||
[Fix GH-1277]
|
||||
|
||||
Sun Feb 28 20:23:36 2016 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||
|
||||
* lib/drb/drb.rb (error_print): Add verbose failure messages and
|
||||
|
|
38
configure.in
38
configure.in
|
@ -4531,3 +4531,41 @@ AC_CONFIG_FILES($ruby_pc:template/ruby.pc.in,
|
|||
AC_OUTPUT
|
||||
}
|
||||
}
|
||||
|
||||
echo "---"
|
||||
echo "Configuration summary for $RUBY_BASE_NAME version $RUBY_PROGRAM_VERSION"
|
||||
echo ""
|
||||
echo " * Installation prefix: $prefix"
|
||||
echo " * exec prefix: $exec_prefix"
|
||||
echo " * arch: $arch"
|
||||
echo " * site arch: $sitearch"
|
||||
echo " * RUBY_BASE_NAME: $RUBY_BASE_NAME"
|
||||
echo " * ruby lib prefix: $rubylibprefix"
|
||||
echo " * site libraries path: $rubysitearchprefix"
|
||||
echo " * vendor path: $vendordir"
|
||||
echo " * target OS: $target_os"
|
||||
echo " * compiler: $CC"
|
||||
echo " * with pthread: $enable_pthread"
|
||||
echo " * enable shared libs: $ENABLE_SHARED"
|
||||
echo " * dynamic library ext: $DLEXT"
|
||||
if test "$(eval echo $cflags)" != ""; then
|
||||
echo " * CFLAGS: $(eval echo $cflags)"
|
||||
fi
|
||||
if test "$(eval echo $cppflags)" != ""; then
|
||||
echo " * CPPFLAGS: $cppflags"
|
||||
fi
|
||||
echo " * LDFLAGS: $LDFLAGS"
|
||||
echo " * strip command: $STRIP"
|
||||
echo " * install doc: $install_doc"
|
||||
echo " * man page type: $MANTYPE"
|
||||
if test "$kcode" != ""; then
|
||||
echo " * kcode: $kcode"
|
||||
fi
|
||||
if test "$search_path" != ""; then
|
||||
echo " * search path: $search_path"
|
||||
fi
|
||||
if test -n "$EXTSTATIC"; then
|
||||
echo " * static-linked-ext: yes"
|
||||
fi
|
||||
echo ""
|
||||
echo "---"
|
||||
|
|
Loading…
Add table
Reference in a new issue