Updated documentation and added a message if libedit is not found.
This commit is contained in:
@ -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)
|
Send email to [maxscale@googlegroups.com](mailto:maxscale@googlegroups.com)
|
||||||
or use the [forum](http://groups.google.com/forum/#!forum/maxscale) interface
|
or use the [forum](http://groups.google.com/forum/#!forum/maxscale) interface
|
||||||
|
|
||||||
Bugs can be reported in the MariaDB Corporation bugs database
|
Bugs can be reported in the MariaDB Jira
|
||||||
[bug.mariadb.com](http://bugs.mariadb.com)
|
[https://mariadb.atlassian.net](https://mariadb.atlassian.net)
|
||||||
|
|
||||||
## Installing MaxScale
|
## 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).
|
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).
|
||||||
|
@ -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)
|
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´.
|
**NOTE:** MaxScale default installation directory has changed to `/usr/local/mariadb-maxscale` and the default password for MaxAdmin is now ´mariadb´.
|
||||||
|
|
||||||
* New modules added
|
* New modules added
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
add_executable(maxadmin maxadmin.c)
|
add_executable(maxadmin maxadmin.c)
|
||||||
find_library(HIST edit)
|
find_library(HIST edit)
|
||||||
if(HIST)
|
if(HIST)
|
||||||
|
message(STATUS "Building MaxAdmin with editline: ${HIST}")
|
||||||
add_definitions(-DHISTORY)
|
add_definitions(-DHISTORY)
|
||||||
target_link_libraries(maxadmin ${HIST})
|
target_link_libraries(maxadmin ${HIST})
|
||||||
|
else()
|
||||||
|
message(STATUS "Could not find editline library. MaxAdmin will be built without it.")
|
||||||
endif()
|
endif()
|
||||||
install(TARGETS maxadmin DESTINATION bin)
|
install(TARGETS maxadmin DESTINATION bin)
|
||||||
|
Reference in New Issue
Block a user