home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March (DVD) / PCWorld_2008-03_DVD.iso / komunikace / mysql / mysql-essential-5.0.45-win32.msi / product.cab / fili310 < prev    next >
Encoding:
Text File  |  2007-07-06  |  833 b   |  30 lines

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3.  
  4. /* Version numbers for protocol & mysqld */
  5.  
  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        "5.0.45"
  13. #define MYSQL_BASE_VERSION        "mysqld-5.0"
  14. #define MYSQL_SERVER_SUFFIX_DEF        "-community-nt"
  15. #define FRM_VER                6
  16. #define MYSQL_VERSION_ID        50045
  17. #define MYSQL_PORT            3306
  18. #define MYSQL_UNIX_ADDR            "/tmp/mysql.sock"
  19. #define MYSQL_CONFIG_NAME        "my"
  20. #define MYSQL_COMPILATION_COMMENT    "MySQL Community Edition (GPL)"
  21.  
  22. /* mysqld compile time options */
  23. #endif /* _CUSTOMCONFIG_ */
  24.  
  25. #ifndef LICENSE
  26. #define LICENSE                GPL
  27. #endif /* LICENSE */
  28.  
  29. #endif /* _mysql_version_h */
  30.