1#
2# Check if server has support for loading plugins
3#
4if (`SELECT @@have_dynamic_loading != 'YES'`) {
5  --skip UDF requires dynamic loading
6}
7
8#
9# Check if the variable UDF_EXAMPLE_LIB is set
10#
11if (!$UDF_EXAMPLE_SO) {
12  --skip Need udf example
13}
14
15