mysql_version.h 813 B

1234567891011121314151617181920212223242526272829
  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.0.20"
  11. #define MYSQL_BASE_VERSION "mysqld-5.0"
  12. #define MYSQL_SERVER_SUFFIX_DEF "-community-max-nt"
  13. #define FRM_VER 6
  14. #define MYSQL_VERSION_ID 50020
  15. #define MYSQL_PORT 3306
  16. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  17. #define MYSQL_CONFIG_NAME "my"
  18. #define MYSQL_COMPILATION_COMMENT "MySQL Community Edition - Max (GPL)"
  19. /* mysqld compile time options */
  20. #endif /* _CUSTOMCONFIG_ */
  21. #ifndef LICENSE
  22. #define LICENSE GPL
  23. #endif /* LICENSE */
  24. #endif /* _mysql_version_h */