diff options
author | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-13 12:11:29 -0300 |
---|---|---|
committer | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-13 12:11:29 -0300 |
commit | 215e967ace1c5cbcdcaf82d1b00b31bc9f132393 (patch) | |
tree | 0474850f6234405da1be770410019f50b4a96f32 /include/mysql/client_plugin.h | |
parent | e760a4d8ab820e5072149b2c1e86bb0a42f85171 (diff) | |
download | mariadb-git-215e967ace1c5cbcdcaf82d1b00b31bc9f132393.tar.gz |
Use a guard macro to prevent the inclusion of system headers
when checking the ABI with the C Preprocessor. Also, add the
new hearders to the cmake based ABI check.
cmake/abi_check.cmake:
Add headers which were added to the autotools ABI check.
Remove trailing spaces.
include/mysql/client_plugin.h:
Guard the inclusion of system headers.
Diffstat (limited to 'include/mysql/client_plugin.h')
-rw-r--r-- | include/mysql/client_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mysql/client_plugin.h b/include/mysql/client_plugin.h index ddd3b64ca56..d9c0dd02008 100644 --- a/include/mysql/client_plugin.h +++ b/include/mysql/client_plugin.h @@ -23,8 +23,10 @@ */ #define MYSQL_CLIENT_PLUGIN_INCLUDED +#ifndef MYSQL_ABI_CHECK #include <stdarg.h> #include <stdlib.h> +#endif /* known plugin types */ #define MYSQL_CLIENT_reserved1 0 |