mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
* configure.in
- added a summary section at the bottom of the configure output
This commit is contained in:
parent
e401cf4592
commit
713bf114f0
1 changed files with 15 additions and 1 deletions
16
configure.in
16
configure.in
|
@ -362,7 +362,7 @@ export CC CXX CFLAGS LD LDFLAGS AR ARFLAGS
|
|||
if test "$GCC" = "yes"
|
||||
then
|
||||
# mysqld requires -fno-implicit-templates.
|
||||
# Disable exceptions as they seams to create problems with gcc and threads.
|
||||
# Disable exceptions as they seem to create problems with gcc and threads.
|
||||
# mysqld doesn't use run-time-type-checking, so we disable it.
|
||||
# We should use -Wno-invalid-offsetof flag to disable some warnings from gcc
|
||||
# regarding offset() usage in C++ which are done in a safe manner in the
|
||||
|
@ -2826,6 +2826,20 @@ echo "Remember to check the platform specific part of the reference manual for"
|
|||
echo "hints about installing MySQL on your platform. Also have a look at the"
|
||||
echo "files in the Docs directory."
|
||||
echo
|
||||
|
||||
echo "---"
|
||||
echo "Configuration summary for $PACKAGE_NAME version $VERSION"
|
||||
echo ""
|
||||
echo " * Installation prefix: $prefix"
|
||||
echo " * System type: $SYSTEM_TYPE"
|
||||
echo " * Host CPU: $host_cpu"
|
||||
echo " * C Compiler: $CC_VERSION"
|
||||
echo " * C++ Compiler: $CXX_VERSION"
|
||||
echo " * Debug enabled: $with_debug"
|
||||
echo " * Community Features: $ENABLE_COMMUNITY_FEATURES"
|
||||
echo ""
|
||||
echo "---"
|
||||
|
||||
# The following text is checked in ./Do-compile to verify that configure
|
||||
# ended sucessfully - don't remove it.
|
||||
echo "Thank you for choosing MySQL!"
|
||||
|
|
Loading…
Reference in a new issue