Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
580 B

  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. #ifdef _CUSTOMCONFIG_
  5. #include <custom_conf.h>
  6. #else
  7. #define PROTOCOL_VERSION 10
  8. #define MYSQL_SERVER_VERSION "3.23.54"
  9. #define MYSQL_SERVER_SUFFIX ""
  10. #define FRM_VER 6
  11. #define MYSQL_VERSION_ID 32354
  12. #define MYSQL_PORT 3306
  13. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  14. #define MYSQL_CONFIG_NAME "my"
  15. /* mysqld compile time options */
  16. #ifndef MYSQL_CHARSET
  17. #define MYSQL_CHARSET "latin1"
  18. #endif
  19. #endif