mysql_version.h 955 B

12345678910111213141516171819202122232425262728293031
  1. /* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB
  2. & Detron HB, 1996, 1999-2004, 2007 MySQL AB.
  3. This file is public domain and comes with NO WARRANTY of any kind
  4. */
  5. /* Version numbers for protocol & mysqld */
  6. #ifndef _mysql_version_h
  7. #define _mysql_version_h
  8. #ifdef _CUSTOMCONFIG_
  9. #include <custom_conf.h>
  10. #else
  11. #define PROTOCOL_VERSION 10
  12. #define MYSQL_SERVER_VERSION "5.7.16"
  13. #define MYSQL_VERSION_ID 50716
  14. #define MYSQL_PORT 3306
  15. #define MYSQL_PORT_DEFAULT 0
  16. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  17. #define MYSQL_CONFIG_NAME "my"
  18. #define MYSQL_COMPILATION_COMMENT "MySQL Connector/C (GPL)"
  19. #define LIBMYSQL_VERSION "6.1.9"
  20. #define LIBMYSQL_VERSION_ID 60109
  21. /* mysqld compile time options */
  22. #endif /* _CUSTOMCONFIG_ */
  23. #ifndef LICENSE
  24. #define LICENSE GPL
  25. #endif /* LICENSE */
  26. #endif /* _mysql_version_h */