blob: 5571c345850bfc5a42cb7c1e245f15514f436e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# Check if server has support for loading plugins
#
if (`SELECT @@have_dynamic_loading != 'YES'`) {
--skip Example plugin requires dynamic loading
}
#
# Check if the variable EXAMPLE_PLUGIN is set
#
if (!$HA_EXAMPLE_SO) {
--skip Need example plugin
}
|