diff options
author | Chad MILLER <chad@mysql.com> | 2008-07-24 13:43:14 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2008-07-24 13:43:14 -0400 |
commit | 27699fac9c92dc7e3029a4037d6ab5cf02516f36 (patch) | |
tree | 48bf0c79ec676d48bb1fef9de3c2f68b2af91874 /configure.in | |
parent | cf586451dfa132edbddaa6c93215e10f4da049dc (diff) | |
download | mariadb-git-27699fac9c92dc7e3029a4037d6ab5cf02516f36.tar.gz |
Make community features (including profiling) on by default.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 08d21a23e81..56bdb4ba006 100644 --- a/configure.in +++ b/configure.in @@ -617,19 +617,19 @@ fi AC_MSG_CHECKING(whether features provided by the user community should be included.) AC_ARG_ENABLE(community-features, AC_HELP_STRING( - [--enable-community-features], - [Enable additional features provided by the user community.]), + [--disable-community-features], + [Disable additional features provided by the user community.]), [ ENABLE_COMMUNITY_FEATURES=$enableval ], - [ ENABLE_COMMUNITY_FEATURES=no ] + [ ENABLE_COMMUNITY_FEATURES=yes ] ) if test "$ENABLE_COMMUNITY_FEATURES" = "yes" then AC_DEFINE([COMMUNITY_SERVER], [1], [Whether features provided by the user community should be included]) - AC_MSG_RESULT([yes, community server]) + AC_MSG_RESULT([yes]) else - AC_MSG_RESULT([no, enterprise server]) + AC_MSG_RESULT([no]) fi AC_ARG_WITH(server-suffix, |