mysql_version.h 830 B

123456789101112131415161718192021222324252627282930
  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.45"
  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 50145
  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 */