aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-28 14:14:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-28 14:14:42 +0000
commit48028fe13ea8fe8ef5dacf76552a0c17a5b6d909 (patch)
treecdbe887ce0fa559c690bc615da924421eedeecd8
parentd9d60098be5a75c60717126051c4b278fc12e669 (diff)
downloadruby-48028fe13ea8fe8ef5dacf76552a0c17a5b6d909.tar.gz
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
-rw-r--r--ChangeLog5
-rw-r--r--configure.in38
2 files changed, 43 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ec6a09bb9c..d52826bfc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure.in b/configure.in
index c9a2349379..a14b074201 100644
--- a/configure.in
+++ b/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 "---"