/mysql/include/mysql/mysql_version.h

http://ghostcb.googlecode.com/ · C++ Header · 30 lines · 21 code · 5 blank · 4 comment · 0 complexity · 4c9eb7d8ce3da88e96089e65d9ac1df5 MD5 · raw file

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2. This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Version numbers for protocol & mysqld */
  4. #ifndef _mysql_version_h
  5. #define _mysql_version_h
  6. #ifdef _CUSTOMCONFIG_
  7. #include <custom_conf.h>
  8. #else
  9. #define PROTOCOL_VERSION 10
  10. #define MYSQL_SERVER_VERSION "5.1.31"
  11. #define MYSQL_BASE_VERSION "mysqld-5.1"
  12. #define MYSQL_SERVER_SUFFIX_DEF "-community"
  13. #define FRM_VER 6
  14. #define MYSQL_VERSION_ID 50131
  15. #define MYSQL_PORT 3306
  16. #define MYSQL_PORT_DEFAULT 0
  17. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  18. #define MYSQL_CONFIG_NAME "my"
  19. #define MYSQL_COMPILATION_COMMENT "MySQL Community Server (GPL)"
  20. /* mysqld compile time options */
  21. #endif /* _CUSTOMCONFIG_ */
  22. #ifndef LICENSE
  23. #define LICENSE GPL
  24. #endif /* LICENSE */
  25. #endif /* _mysql_version_h */