Updated documentation and set C99 mode as the default.

This commit is contained in:
Markus Makela
2015-07-01 19:38:45 +03:00
parent 8ea11c5018
commit 0621e33cb0
2 changed files with 9 additions and 1 deletions

View File

@ -98,6 +98,14 @@ A list of event names which cause the script to be executed. If this option is n
events=master_down,slave_down
```
### `mysql51_only`
Enable support for MySQL 5.1 replication monitoring. This is needed if a MySQL server older than 5.5 is used as a slave in replication.
```
mysql51_only=true
```
## Script events
Here is a table of all possible event types and their descriptions.

View File

@ -21,7 +21,7 @@ endmacro()
macro(set_variables)
# Use C99
set(USE_C99 FALSE CACHE BOOL "Use C99 standard")
set(USE_C99 TRUE CACHE BOOL "Use C99 standard")
# hostname or IP address of MaxScale's host
set(TEST_HOST "127.0.0.1" CACHE STRING "hostname or IP address of MaxScale's host")