mysql_version.h 1008 B

12345678910111213141516171819202122232425262728293031323334353637
  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 "10.1.19-MariaDB"
  13. #define MYSQL_BASE_VERSION "mysqld-10.1"
  14. #define MARIADB_BASE_VERSION "mariadb-10.1"
  15. #define MYSQL_SERVER_SUFFIX_DEF ""
  16. #define FRM_VER 6
  17. #define MYSQL_VERSION_ID 100119
  18. #define MYSQL_PORT 3306
  19. #define MYSQL_PORT_DEFAULT 0
  20. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  21. #define MYSQL_CONFIG_NAME "my"
  22. #define MYSQL_COMPILATION_COMMENT "Source distribution"
  23. #ifdef WITH_WSREP
  24. #define WSREP_PATCH_VERSION "16"
  25. #endif
  26. /* mysqld compile time options */
  27. #endif /* _CUSTOMCONFIG_ */
  28. #ifndef LICENSE
  29. #define LICENSE GPL
  30. #endif /* LICENSE */
  31. #endif /* _mysql_version_h */