Updated documentation and added a message if libedit is not found.

This commit is contained in:
Markus Makela 2015-04-23 15:04:38 +03:00
parent 811c13fe32
commit 70cf7663d7
3 changed files with 14 additions and 3 deletions

View File

@ -13,8 +13,8 @@ A Google Group exists for MaxScale that can be used to discuss ideas, issues and
Send email to [maxscale@googlegroups.com](mailto:maxscale@googlegroups.com)
or use the [forum](http://groups.google.com/forum/#!forum/maxscale) interface
Bugs can be reported in the MariaDB Corporation bugs database
[bug.mariadb.com](http://bugs.mariadb.com)
Bugs can be reported in the MariaDB Jira
[https://mariadb.atlassian.net](https://mariadb.atlassian.net)
## Installing MaxScale
Information about installing MaxScale, either from a repository or by building from source code, is included in the guide [Getting Started with MaxScale](/Documentation/Getting-Started/Getting-Started-With-MaxScale.md).

View File

@ -2,6 +2,14 @@
These are the changes introduced in the next MaxScale version. This is not the official change log and the latest changelog can always be found in here: [MaxScale 1.1 Release Notes](Release-Notes/MaxScale-1.1-Release-Notes.md)
## MaxScale 1.1.1
* Schemarouter now also allows for an upper limit to session commans.
* Schemarouter correctly handles SHOW DATABASES responses that span multiple buffers.
* Logfiles have been renamed. The log names are now named error.log, messages.log, trace.log and debug.log.
## MaxScale 1.1
**NOTE:** MaxScale default installation directory has changed to `/usr/local/mariadb-maxscale` and the default password for MaxAdmin is now ´mariadb´.
* New modules added

View File

@ -1,7 +1,10 @@
add_executable(maxadmin maxadmin.c)
find_library(HIST edit)
if(HIST)
message(STATUS "Building MaxAdmin with editline: ${HIST}")
add_definitions(-DHISTORY)
target_link_libraries(maxadmin ${HIST})
else()
message(STATUS "Could not find editline library. MaxAdmin will be built without it.")
endif()
install(TARGETS maxadmin DESTINATION bin)
install(TARGETS maxadmin DESTINATION bin)